Viewing 7 replies - 1 through 7 (of 7 total)
  • Plugin Author Gemini Labs

    (@geminilabs)

    1. You can disable the pagination urls in the settings.

    2. What version of Site Reviews are you using? The pagination URL’s are wrong, looks like a bug.

    Thread Starter lagas1337

    (@lagas1337)

    Im using Version 5.1.6

    Is there a way for the reviews to act like a slider?

    Karolis.

    Thread Starter lagas1337

    (@lagas1337)

    I have disabled the URL’s as you suggested and it worked like a charm. Thank you so much

    Karolis

    Thread Starter lagas1337

    (@lagas1337)

    One more question. Is there a way to make a reviews title text smaller?

    Karolis

    Plugin Author Gemini Labs

    (@geminilabs)

    Site Reviews does not provide a carousel feature.

    For a carousel, you will either need to use a carousel/slider plugin that can accept a shortcode as the slide text, or integrate it yourself using the Site Reviews helper functions.

    1. To use the shortcode with a slider plugin:

    Slide #1: [site_reviews display=1]
    Slide #2: [site_reviews display=1 offset=1]
    Slide #3: [site_reviews display=1 offset=2]
    Slide #4: [site_reviews display=1 offset=3]
    etc.

    2. To manually code the carousel yourself:

    // See the Site Reviews "Functions" documentation for more information
    $reviews = apply_filters('glsr_get_reviews', []);
    foreach ($reviews as $review) {
        // Use the $review object to build your slide html.
        // You can use the debug function to print the review object to the page like this:
        apply_filters('glsr_debug', null, $review);
    
        // You can render the star rating like this:
        $starsHtml = $review->rating();
    }
    Plugin Author Gemini Labs

    (@geminilabs)

    One more question. Is there a way to make a reviews title text smaller?

    The Review title uses a <h3> tag. The font size is determined by your theme, to change it you will need to use some custom CSS.

    Plugin Author Gemini Labs

    (@geminilabs)

    v5.2.0 will fix the pagination URLs bug that happens when using pagination on the Home page.

Viewing 7 replies - 1 through 7 (of 7 total)
  • The topic ‘Ajax pagination building up link’ is closed to new replies.