• Resolved defdas2

    (@defdas2)


    Hi! Is it possible to show only a brief summary of each service (approximately 50 characters) instead of service full content on the archive services page?

    Thnaks !!

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

Viewing 2 replies - 1 through 2 (of 2 total)
  • Hi @defdas2,

    Edit your theme’s archive-services.php file (that is located in wp-content/themes/sydney). Find this line:

    <?php the_content(); ?>

    and replace it with:

    <?php 
    $excerpt = get_the_excerpt();
    $display_short_content = substr($excerpt, 0, strrpos(substr($excerpt, 0, 50), ' '));
    echo $display_short_content;	
    ?>

    Please note that this theme file’s change will be wiped out once the theme is updated. So you will need to redo this change again.

    Thread Starter defdas2

    (@defdas2)

    Perfect !! Works !!

    Thank U!!

Viewing 2 replies - 1 through 2 (of 2 total)
  • The topic ‘Service Summary’ is closed to new replies.