Download WordPress.com theme: how?

For custom installation you should search for the theme on wordpress.org site. The WordPress.com hosts themes that are available for use only on wordpress.com blogs and they do not provide download link there. – See @markratledge’s answer below. Here’s the link to download that theme – http://www.wpexplorer.com/fresh-clean-wordpress-theme-by-wpexplorer

Cannot find the code for “Edit This” link in posts in a specific theme

This should be located in the entry-meta.php file of the parent theme (kuorinka). Here is the code: <?php if ( ‘post’ == get_post_type() ) : ?> <div class=”entry-meta”> <!– Date & Author name–> <?php kuorinka_posted_on(); ?> <!– Comments count –> <?php if ( ! post_password_required() && ( comments_open() || ‘0’ != get_comments_number() ) ) : … Read more

Why wp_enqueue_style() not working?

Are you sure you theme is active? If you see your style.css code it should not have only the CSS code but also the Theme defination at header of your style.css. Please make sure if your theme is active. The above code for loading CSS file looks good and should work if your theme is … Read more

During theme installation theme upload failed

The key part from the error is: The theme is missing the style.css stylesheet. WordPress docs on Main Stylesheet says: In order for WordPress to recognize the set of theme template files as a valid theme, the style.css file needs to be located in the root directory of your theme, not a subdirectory. I would … Read more