• Resolved calle81

    (@calle81)


    I am using this snippet to display the list of forms submitted by the current user.

    <?php
    global $current_user;
    get_currentuserinfo();
    $shortcount = '[acf7db form_id="124" search="'.$current_user->user_email.'" display="count"]';
    echo do_shortcode($shortcount);
    			?> 

    This displays a maximum of 20 results, how can I set it to 100 results?

    Thanks.

Viewing 7 replies - 1 through 7 (of 7 total)
  • Thread Starter calle81

    (@calle81)

    Solved:

    <?php
    global $current_user;
    get_currentuserinfo();
    $shortcount = '[acf7db form_id="124" max_entries="100" search="'.$current_user->user_email.'" display="count"]';
    echo do_shortcode($shortcount);
    			?> 

    Thanks.

    Hi, can you tell me where to put this snippet? preferably without additional plug-ins, thanks!

    ok footer.. ??

    Como voce conseguiu colocar sem puglin?

    Where to put this code exactly ?

    Thread Starter calle81

    (@calle81)

    @raedzidan you just need to create a shortcode with the above code. created the shortcode insert it in the function.php page of your theme and then go to insert your shortcode in any page or post of your wordpress site.

    @calle81 thank you for quick response , just to make sure i am in the right thread , i have advance contact form 7 and i do have in some form over 500 record when i try to export these records it allows to show only 10 records per page while i need to show all records in one page , my theme not have the function of short coding , any help please

    thanks in advance

Viewing 7 replies - 1 through 7 (of 7 total)
  • The topic ‘Display 100 results instead of 20 in the frontend shortcode. It’s possible?’ is closed to new replies.