Forum Replies Created

Viewing 15 replies - 16 through 30 (of 69 total)
  • Thread Starter tinyCoder

    (@tinycoder)

    I will try that now.

    Thread Starter tinyCoder

    (@tinycoder)

    But I have no other Facebook plugin on the sites, i tried that on many WordPress websites. The plugin just stopped working on all of them at the same time.

    Hi, same problem here!

    Latest version of wordpress.

    Thread Starter tinyCoder

    (@tinycoder)

    AMAZING!! thank you very much, cleaning the browser cache showed them up!
    One small suggestion I have in mind for future, instead of using “Filter Categories” for all terms, I suggest taking the term name, like “Filter Categories”, “Filter Actors”, “Filter Cities” as in my case…

    Thanks again, I appreciate your great job, I hope that this plugin become an original feature in WordPress!

    Best regards.

    Thread Starter tinyCoder

    (@tinycoder)

    Hi! I have just updated to latest version 1.4 but still can’t see the filter input in quick edit!

    Thread Starter tinyCoder

    (@tinycoder)

    Please please please add this feature, it is pain to us to edit posts then search categories to change them.

    Thread Starter tinyCoder

    (@tinycoder)

    Oh! yes please, thank you.

    Anyone came up with a solution for this yet? I want all my posts available in all languages and only translate the categories.

    Thread Starter tinyCoder

    (@tinycoder)

    Thanks man, there is another serious issue i’m having in many websites with this plugin, I will report it to you in a new thread after I get sure about collecting some useful details about the issue.

    Thanks again.

    I saw it it the fixed bugs on the changelog page, that’s why I asked.

    Fix - Hidden groups are not displaying in group meta box on course edit page

    Thank you, looking forward to testing more features and updates.

    Thread Starter tinyCoder

    (@tinycoder)

    You are welcome man, I love you. This plugin is really very very healpful.

    Keep updating please.

    Thanks.

    Hello!

    This problem is back after I upgraded to the latest version few minutes ago!

    I had to re-fix the code manually and add 'show_hidden' => true to the loop array!

    Thanks.

    Thread Starter tinyCoder

    (@tinycoder)

    Hi Brajesh, actually the theme developer has nothing to do with this, he is not hooking the action anywhere in his theme, but I found that I am using a plugin called “BuddyPress for LearnDash” and it is the responsible about that, after some search I found this:

    public function bp_learndash_register_member_types() {
                bp_register_member_type( 'student', array(
                    'labels' => array(
                        'name'          => __( 'Students', 'buddypress-learndash' ),
                        'singular_name' => __( 'Student', 'buddypress-learndash' ),
                    ),
                ) );
                bp_register_member_type( 'group_leader', array(
                    'labels' => array(
                        'name'          => __( 'Group Leaders', 'buddypress-learndash' ),
                        'singular_name' => __( 'Group Leader', 'buddypress-learndash' ),
                    ),
                ) );
            }
    
            public function bp_learndash_members_directory(){
                ?>
                <li id="members-group_leader"><a href="<?php site_url(); ?>bpe-group_leader"><?php printf( __( 'Group Leaders <span>%s</span>', 'buddypress-learndash' ), bp_learndash_members_count_by_type('group_leader') ); ?></a></li>
                <li id="members-student"><a href="<?php site_url(); ?>bpe-student"><?php printf( __( 'Students <span>%s</span>', 'buddypress-learndash' ), bp_learndash_members_count_by_type('student') ); ?></a></li>
            <?php
            }

    As you can see, the plugin add the types in a hard static way, it doesn’t load the member types dynamically.

    Do you think I can modify the code to do this? or I need to add the types manually?

    Thread Starter tinyCoder

    (@tinycoder)

    Hi, here is the members index template:

    <?php
    
    /**
     * Fires at the top of the members directory template file.
     *
     * @since BuddyPress (1.5.0)
     */
    do_action( 'bp_before_directory_members_page' ); ?>
    
    <div id="buddypress">
    
    	<?php
    
    	/**
    	 * Fires before the display of the members.
    	 *
    	 * @since BuddyPress (1.1.0)
    	 */
    	do_action( 'bp_before_directory_members' ); ?>
    
    	<?php
    
    	/**
    	 * Fires before the display of the members content.
    	 *
    	 * @since BuddyPress (1.1.0)
    	 */
    	do_action( 'bp_before_directory_members_content' ); ?>
    
    	<div id="members-dir-search" class="dir-search" role="search">
    
    		<?php bp_directory_members_search_form(); ?>
    		
    	</div><!-- #members-dir-search -->
    
    	<?php
    
    	/**
    	 * Fires before the display of the members list tabs.
    	 *
    	 * @since BuddyPress (1.8.0)
    	 */
    	do_action( 'bp_before_directory_members_tabs' ); ?>
    
    	<form action="" method="post" id="members-directory-form" class="dir-form">
    
    		<div class="item-list-tabs" role="navigation">
    			<ul>
    				<li class="selected" id="members-all"><a href="<?php bp_members_directory_permalink(); ?>"><?php printf( __( 'All Members <span>%s</span>', 'thrive' ), bp_get_total_member_count() ); ?></a></li>
    
    				<?php if ( is_user_logged_in() && bp_is_active( 'friends' ) && bp_get_total_friend_count( bp_loggedin_user_id() ) ) : ?>
    					<li id="members-personal"><a href="<?php echo bp_loggedin_user_domain() . bp_get_friends_slug() . '/my-friends/'; ?>"><?php printf( __( 'My Friends <span>%s</span>', 'thrive' ), bp_get_total_friend_count( bp_loggedin_user_id() ) ); ?></a></li>
    				<?php endif; ?>
    
    				<?php
    
    				/**
    				 * Fires inside the members directory member types.
    				 *
    				 * @since BuddyPress (1.2.0)
    				 */
    				do_action( 'bp_members_directory_member_types' ); ?>
    
    			</ul>
    		</div><!-- .item-list-tabs -->
    
    		<div class="item-list-tabs" id="subnav" role="navigation">
    			<ul>
    				<?php
    
    				/**
    				 * Fires inside the members directory member sub-types.
    				 *
    				 * @since BuddyPress (1.5.0)
    				 */
    				do_action( 'bp_members_directory_member_sub_types' ); ?>
    
    				<li id="members-order-select" class="last filter">
    					<label for="members-order-by"><?php _e( 'Order By:', 'thrive' ); ?></label>
    					<select id="members-order-by">
    						<option value="active"><?php _e( 'Last Active', 'thrive' ); ?></option>
    						<option value="newest"><?php _e( 'Newest Registered', 'thrive' ); ?></option>
    
    						<?php if ( bp_is_active( 'xprofile' ) ) : ?>
    							<option value="alphabetical"><?php _e( 'Alphabetical', 'thrive' ); ?></option>
    						<?php endif; ?>
    
    						<?php
    
    						/**
    						 * Fires inside the members directory member order options.
    						 *
    						 * @since BuddyPress (1.2.0)
    						 */
    						do_action( 'bp_members_directory_order_options' ); ?>
    					</select>
    				</li>
    			</ul>
    		</div>
    
    		<div id="members-dir-list" class="members dir-list">
    			<?php bp_get_template_part( 'members/members-loop' ); ?>
    		</div><!-- #members-dir-list -->
    
    		<?php
    
    		/**
     		 * Fires and displays the members content.
     		 *
     		 * @since BuddyPress (1.1.0)
     		 */
    		do_action( 'bp_directory_members_content' ); ?>
    
    		<?php wp_nonce_field( 'directory_members', '_wpnonce-member-filter' ); ?>
    
    		<?php
    
    		/**
    		 * Fires after the display of the members content.
    		 *
    		 * @since BuddyPress (1.1.0)
    		 */
    		do_action( 'bp_after_directory_members_content' ); ?>
    
    	</form><!-- #members-directory-form -->
    
    	<?php
    
    	/**
    	 * Fires after the display of the members.
    	 *
    	 * @since BuddyPress (1.1.0)
    	 */
    	do_action( 'bp_after_directory_members' ); ?>
    
    </div><!-- #buddypress -->
    
    <?php
    
    /**
     * Fires at the bottom of the members directory template file.
     *
     * @since BuddyPress (1.5.0)
     */
    do_action( 'bp_after_directory_members_page' );

    If it is not what you need, please tell me what do you need me to share.

    Thanks.

    Thread Starter tinyCoder

    (@tinycoder)

    Theme already have bp_members_directory_member_types action called in place also.

    https://thrive-demo.dunhakdis.me/

Viewing 15 replies - 16 through 30 (of 69 total)