Forum Replies Created

Viewing 2 replies - 1 through 2 (of 2 total)
  • Thread Starter ctor

    (@ctor)

    Hi,

    1. On the edit profile form under -> Make this profile form role-specific is checked as Member. There is only one user profile form. There is no need for more.

    2. I downloaded the Terms and Conditions from the plugin website, now i saw that there was one for v2 of the plugin. Thanks!

    3. Yes, i have Visual Composer installed with Impreza theme, all updated. In the pages where the form shortcode is, the visual composer is deactivated.

    The file upload field would show only in edit mode no matter what, some tweaks had to be made in the theme functions in order to show it. The rest of the extra fields are showing.

    ctor

    (@ctor)

    I think this should do it:

    <ol class="commentlist">
    		<?php
    		//Gather comments for a specific page/post
                    $id = get_the_ID();
    		$comments = get_comments(array(
    			'post_id' => $id,
    			'status' => 'approve' //Change this to the type of comments to be displayed
    		));
    
    		//Display the list of comments
    		wp_list_comments(array(
    			'per_page' => 10, //Allow comment pagination
    			'reverse_top_level' => false //Show the latest comments at the top of the list
    		), $comments);
    		?>
Viewing 2 replies - 1 through 2 (of 2 total)