How to display full content instead of the excerpt on Post Archive page in ShopIsle Lite?

When you visit the Archive page on ShopIsle it shows the excerpt. You can display the full content of the post easily with the following steps:

  1. Create a child theme for ShopIsle.
  2. Copy Archive.php from ShopIsle parent theme to the child theme.
  3. Find following code at around line number 87 in this file:
    if ( $shop_isleismore ) :
    the_content();
    else :
    the_excerpt();
    endif;
    	
  4. Replace the above code snippet with a single line of code:
    the_content();
    	

You can edit/copy files on your server by using FTP / cPanel.

Did this answer your question? Thanks for the feedback There was a problem submitting your feedback. Please try again later.

Still need help? Contact Us Contact Us