Viewing 6 replies - 1 through 6 (of 6 total)
  • Plugin Author websupporter

    (@websupporter)

    Hi Saurabhj91,
    thank you for using my plugin ??

    I am not quite sure, what the problem is.

    What do you mean exactly with “is not showing all the results and pagination is coming”?

    What results are missing, or do they show up on the second page, but you want all of them on the first page?

    Do you have a link, where I can see the problem?

    Thank you,
    David.

    Thread Starter Saurabh Jain

    (@saurabhj91)

    Hi David,

    The shortcode is not showing all the results on the same page.

    Here is the link https://www.bycollage.com

    Please let me know.

    Thanks.

    • This reply was modified 8 years, 2 months ago by Saurabh Jain.
    Plugin Author websupporter

    (@websupporter)

    Hi Saurabhj91,
    try to add the following code into your child themes functions.php:

    add_filter( 'sf-filter-args', 'show_all_posts' );
    function show_all_posts( $args ) {
    	$args['posts_per_page'] = -1;
    	return $args;
    }
    Plugin Author websupporter

    (@websupporter)

    I hope this helped. Will mark this topic as resolved.

    Thread Starter Saurabh Jain

    (@saurabhj91)

    Hi David,

    Thanks a lot, It worked properly.

    Regards,
    Saurabh Jain

    Plugin Author websupporter

    (@websupporter)

    Glad to hear ??

Viewing 6 replies - 1 through 6 (of 6 total)
  • The topic ‘Shortcode not working’ is closed to new replies.