File execution order

The problem is this: <script src=”http://w.sharethis.com/button/buttons.js”></script> Try to add this to the body or footer of your site and then remove the link to w.sharethis.com. Because this not a local js it will not be cached and this will show as a js / css error in pagespeed. You could save this as a local … Read more

Why does WP theme not look like promoted? [closed]

You need to use the same content and settings the author used to take the thumbnail, theme authors have no control over the content used in the theme preview on .org so the preview rarely shows what the theme is fully capable of. If the difference is more extreme and it’s not possible to install … Read more

Wrong theme being activated

Fixing the base I’m pretty sure that you’ve actually checked the base yourself and I don’t have to ask … »Have you tried turning it off and on again?« Anyway, you need to run through the following chart again, just to be sure: If this doesn’t work, leave all plugins activated, try to switch back … Read more

My theme is not translated

Make sure you put your function inside after_setup_theme action hook add_action( ‘after_setup_theme’, ‘load_translation’ ); function load_translation() { if( is_dir( get_stylesheet_directory() . ‘/languages’ ) ) { load_theme_textdomain(‘adifier’, get_stylesheet_directory() . ‘/languages’); } else { load_theme_textdomain(‘adifier’, get_template_directory() . ‘/languages’); } Also, you have to make sure your theme domain is matched with the translated file. For an easier … Read more