Site broken after deleting inactive themes [closed]

WP is trying to load the arch4 theme. which I believe to be a child theme of storefront but it doesn’t find the required init.php file because my guess is that you didn’t install storefront. Try to install storefront by going to appearance->Themes->Add New and then try reactivating your theme

Custom Theme, Editor won’t wrap text (i.e. change width)

This is normal behaviour. First, the class second_column of your site is set to max-width:100%. This means it has no fixed width. You won’t notice this on a pc screen, but if you reduce you browsers width to mobile size, you will see the text column becoming narrower. This is good, because it means that … Read more

Speed issues because of CSS & JavaScript

There are so many errors, image are not optimized and some links are returning 404. eg: http://julietloves.co.in/wp-content/uploads/2016/08/55-1.png http://julietloves.co.in/wp-content/uploads/2016/08/TAG-168×42.png I will recommend you to optimize all images using optimizilla.com and re-upload it. After that install “W3 Total Cache” it will help fix server response time issue. howlthemes.com/wordpress-caching-w3-total-cache-setup-guide/ Still there are lots of issue best solution is … Read more

How to show taxonomy in WordPress shortcode

First problem I see without testing anything is that your $post variable is not globalized. Try transforming your shortcode_for_genre() fuction to something like that: function shortcode_for_genre() { // only proceed if viewing a singular movie cpt. if ( ! is_singular( ‘movie’ ) ) return ”; global $post; ob_start(); the_terms( $post->ID, array( ‘taxonomy’ => ‘genre’,), ”, … Read more