Hi giocol62,
It seems like you’ve inserted the ticker shortcode within a post loop, which is causing it to display under every post in the grid. To address this issue, you have to place the ticker shortcode outside of the post loop so that it appears only once on the page.
Here’s a basic example:
- Locate the file or section of your theme where the page template is defined.
- Look for the loop that displays the posts in the grid.
- Place the ticker shortcode outside of this loop.
For instance, if your current code looks something like this:
<?php
// Start the loop
while (have_posts()) : the_post();
// Display post content
the_content();
endwhile;
?>
You should rearrange it like this:
<?php
// Display the ticker shortcode
echo do_shortcode('[t4b-ticker]');
// Start the loop
while (have_posts()) : the_post();
// Display post content
the_content();
endwhile;
?>
Let me know if this helps or if you need further assistance!
Best regards,
Iftekhar Alam
Realwebcare
-
This reply was modified 11 months, 3 weeks ago by Realwebcare.