• Resolved Mesknot

    (@mesknot)


    i can’t add a description to the About and Contact pages, not even in cuztomize, how can i add a description to those pages?

    The page I need help with: [log in to see the link]

Viewing 2 replies - 1 through 2 (of 2 total)
  • If by “description” you mean a field where you can add your own custom text, you’ll have to edit the template. I did that with the ABOUT US template, by trial and error (I’m not a coding expert) and found that it’s fairly easy to add some code to the template which will allow you to add content to the page in the regular WP backend page editor. I decided I don’t need the “Features” module at the bottom of the about us page, so I replaced it with this:

    <!– Features start –>
    <?php
    $shop_isle_content_aboutus = ”;
    if ( have_posts() ) {
    while ( have_posts() ) {
    the_post();
    $shop_isle_content_aboutus = get_the_content();
    }
    }

    if ( trim( $shop_isle_content_aboutus ) != ” ) {
    echo ‘<section class=”module”>’;
    echo ‘<div class=”container”>’;
    echo ‘<div class=”row”>’;
    echo ‘<div class=”col-sm-12″>’;
    the_content();
    echo ‘</div>’;
    echo ‘</div>’;
    echo ‘</div>’;
    echo ‘</section>’;
    }
    ?>
    <!– Features end –>

    Hello,

    Thanks for contacting us.

    Please go through this document http://docs.themeisle.com/article/211-shopisle-customizing-the-contact-and-about-us-page

    Let me know if you still require any help.

    Thanks

Viewing 2 replies - 1 through 2 (of 2 total)
  • The topic ‘No Description on About and Contact pages’ is closed to new replies.