• Resolved Sinisa Bajic – bajs

    (@bajsolinowich)


    Hello!

    Great plugin, thank you.

    I am building website with rating included and I as wondering if you could assist me with something.

    Inside carousel slider I am able to insert Custom Post Types and metas, so far I have this:
    <h3>{{author_name}}</h3>
    <h3>{{content}}</h3>
    <h3>{{meta:rating}}</h3>
    Which is ok but displays number five.

    Is it possible to have it display stars?

    Thanks!

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

    (@geminilabs)

    The HTML for the star rating is generated by the plugin. If you can use raw PHP then you can use the following code to generate it:

    
    $rating = 5; // get the rating meta_value here using "get_post_meta" or similar
    if( function_exists( 'glsr_resolve' )) {
        echo glsr_resolve( 'Html' )->renderPartial( 'star-rating', ['rating' => $rating] );
    }
    
    Thread Starter Sinisa Bajic – bajs

    (@bajsolinowich)

    Thank you!

Viewing 2 replies - 1 through 2 (of 2 total)
  • The topic ‘Display Rating in Slider Carousel’ is closed to new replies.