• Resolved kgangulw

    (@kgangulw)


    Lovely plugin and does exactly what I want. Only thing is most of my posts are multi pages and I need to show the rating at the last page only. Eg. Say my post has 4 pages and I need to show the rating only on the 4th Page what do I need to do. thank you

Viewing 3 replies - 1 through 3 (of 3 total)
  • Plugin Author MyThemeShop

    (@mythemeshop)

    Hello,

    WP Review only adds the review box on the last page if the review position is set to “bottom”. However, if you would like the review box to only appear at the 4th page of your post, kindly add the following to your theme’s functions.php

    
    <?php
    
    // Remove default review box hook.
    function mts_after_setup_theme() {
    	remove_filter( 'the_content', 'wp_review_inject_data' );
    }
    add_action( 'after_setup_theme', 'mts_after_setup_theme' );
    
    function mts_the_content( $content ) {
    	global $multipage, $page;
    	if ( ! is_single() || ! $multipage || 4 !== $page ) return $content;
    	return $content . wp_review_get_review_box();
    }
    add_filter( 'the_content', 'mts_the_content' );
    

    Hope that helps.

    • This reply was modified 8 years, 1 month ago by MyThemeShop.
    Thread Starter kgangulw

    (@kgangulw)

    Thanks a lot. Appreciate the help. Love the plugin.

    Plugin Author MyThemeShop

    (@mythemeshop)

    Hello,

    It was a pleasure helping you. We are glad you found our help useful. If you have any other questions in future, do let us know. We are here to help you. Could you please leave us a review (if you haven’t already done that) on about your overall experience with MyThemeShop? This will help us serve you, our members, better. We appreciate your time and patience.

    Thank you.

Viewing 3 replies - 1 through 3 (of 3 total)
  • The topic ‘How to show only in last page on Mutipage post’ is closed to new replies.