Forum Replies Created

Viewing 2 replies - 1 through 2 (of 2 total)
  • What you want to do is repeat the function multiple times in your template.

    <table border="0" style="padding:4px;" width="100%" cellspacing="0" cellpadding="0">
      <tr>
        <td class="featured-box" style="padding:0;">
    <?php if (function_exists('rps_show')) echo rps_show($category_ids="4", $total_posts="1", $post_include_ids, $post_exclude_ids); ?>
        </td>
        <td class="featured-box" style="padding:0;">
    <?php if (function_exists('rps_show')) echo rps_show($category_ids="5", $total_posts="1", $post_include_ids, $post_exclude_ids); ?>
        </td>
        <td class="featured-box" style="padding:0;">
    <?php if (function_exists('rps_show')) echo rps_show($category_ids="2", $total_posts="1", $post_include_ids, $post_exclude_ids); ?>
        </td>
      </tr>
    </table>

    Something like the above will give you 3 sliders, though the current settings are pulling from only one category ID.

    If you want the top slider to show multiple posts, change the number of posts (to 3, 5, or whatever) and if you want it to pull from multiple categories, just add $category_ids="2, 3, 5" or whatever you want to do.

    As far as changing the styling for each one, do that in CSS. Just put each box in a different div, or create a div #RPS and then multiple classes .box1, .box2 et cetera, and style everything that way.

    Hello there,

    I am trying to use the same images for multiple galleries on multiple pages, but want that image to link to a unique URL for each image on every gallery page.

    For example, I want to have a gallery of Author pics, and to have each picture link to each Bio, all under an “About Authors” page.

    At the same time, I want to use the same pictures on a separate page called “stories,” and have the images under the “stories” page link to the Author’s stories.

    The problem I am having is that when I change the Gallery Link URL for an image on one gallery, it updates that URL for every instance of the picture. So every picture, no matter which gallery on which page, links to the same page.

    Is there a way to use the same picture and have a unique link URL in different galleries? Hopefully this made sense.

    Thanks!

    https://www.slagdrop.com

Viewing 2 replies - 1 through 2 (of 2 total)