Which wordpress theme is this ?

hardik9099

Regular Member
Joined
Oct 10, 2017
Messages
387
Reaction score
84
[mod edit: URL removed due to site owner request] which wordpress theme is this website using? wordpress theme detector was not showing any results , but the blog is on wordpress.
 
Last edited by a moderator:
Customized theme because we will design to change the colour, font, etc.
 
We've had a request from the site owner to remove the url, so I've edited the top post. But in answer to your question, the theme's been customised by the site owner but it's from this: https://justgoodthemes.com/

The reason you couldn't get it with a wordpress theme detector is because the site used a minify plugin (autoptimize) which concatenates and compresses css and js scripts. The headers of these scripts (well, the css ones anyway) declare the theme name, so that's what the theme detectors pick up on but if they've been minified, they can't see the name declaration.

So, basically, if you want to look at the script for the theme name, you need to tell the site to serve a non-optimized version. For example, if a site's been minified with autoptimize, you should append this string to the end of the url:
Code:
 /?ao_noptimize=1

The url should look like this: https://www.domainhere.com/?ao_noptimize=1

and then you can use your wordpress theme detector successfully, or you can look at the css files yourself.

hth :)
 
Back
Top