BuddyDev

Search

Replies

  • Participant
    Level: Guru
    Posts: 885
    Tosin on in reply to: [Resolved] Buddypress confirm action on registration #44554

    Also is it advisable to noindex buddypress registration page.

  • Participant
    Level: Guru
    Posts: 885
  • Participant
    Level: Guru
    Posts: 885
    Tosin on in reply to: [Resolved] Buddyblog post views counter #44485

    Hello Ravi,

    Your code worked perfectly!

    Thanks a lot

  • Participant
    Level: Guru
    Posts: 885
    Tosin on in reply to: [Resolved] Buddyblog post views counter #44479

    Hello Ravi,

    This is not resolved, like I stated in the last thread that the code did not work for me.

    The counter did not display in buddyblog at all.

    Thanks

  • Participant
    Level: Guru
    Posts: 885
    Tosin on in reply to: [Resolved] Buddyblog post views counter #44372

    Hello the code did not work for me

    The counter did not display in buddyblog at all

    
    /* Display post views counter plugin in buddyblog post management */
    add_filter( 'pvc_display_views_count', function( $display ) {
    	if ( ! function_exists( 'buddyblog_pro' ) ) {
    		return $display;
    	}
    	$pvc = Post_Views_Counter();
    	if ( empty( $pvc->options['display'] ) || empty( $pvc->options['display']['post_types_display'] ) ) {
    		return $display;
    	}
    	$current_post_type = bblpro_get_current_post_type();
    	if ( ! $display && $current_post_type && in_array( $current_post_type, (array) $pvc->options['display']['post_types_display'] ) ) {
    		$display = true;
    	}
    	return $display;
    } );
    
    add_filter( 'the_excerpt', function ( $excerpt ) {
    	if ( ! function_exists( 'Post_Views_Counter' ) ) {
    		return $excerpt;
    	}
    	$alter = false;
    	if ( function_exists( 'bp_is_buddyblog_component' ) && bp_is_buddyblog_component() ) {
    		$alter = true;
    	} elseif ( function_exists( 'bblpro_get_queried_post_id' ) && bblpro_get_queried_post_id() ) {
    		$alter = true;
    	}
    	if ( ! $alter ) {
    		return $excerpt;
    	}
    	return $excerpt . do_shortcode( '[post-views]' );
    } );
    
  • Participant
    Level: Guru
    Posts: 885
    Tosin on in reply to: [Resolved] Buddyblog post views counter #44347

    The code worked but caused another issue in my blog archive pages.
    I have already added the post views shortcode into my content.php file but now your code adds another counter to the excerpt in my archive page.

    Your code should only display in buddyblog excerpt

    see screenshot https://ibb.co/5vmtTbZ

    Thanks Ravi

  • Participant
    Level: Guru
    Posts: 885
    Tosin on in reply to: [Resolved] Buddyblog post views counter #44342

    Now the excerpt is missing

     add_filter( 'the_excerpt', function ( $excerpt ) {
    	if ( ! function_exists( 'Post_Views_Counter' ) ) {
    		return $excerpt;
    	}
    	echo do_shortcode( '[post-views]' );
    } ); 
  • Participant
    Level: Guru
    Posts: 885
    Tosin on in reply to: [Resolved] Buddyblog post views counter #44318

    Hello,

    The issue came from > Display > Position= Manual. When I changed it to either After Content or Before Content the count displayed.

    The problem now I want to use the Manual position because I added the post views code (<?php echo pvc_post_views(); ?>) directly into my theme’s content-single.php file.

    Can you make the code to work for manual position

    Thanks

  • Participant
    Level: Guru
    Posts: 885
    Tosin on in reply to: [Resolved] Buddyblog post views counter #44300

    Hello Ravi,

    I added the code to functions.php file but it does not display the count like this https://ibb.co/f9KxjjR

    The count does not display at all in users page.

    Thanks

  • Participant
    Level: Guru
    Posts: 885
    Tosin on in reply to: [Resolved] Buddyblog post views counter #44261

    The plugin works fine in single post pages as seen here https://imgur.com/a/MMlNhhu

    But displaying it in the post management section is the issue (A setting option to enable the display would be awesome when buddyblog detects the installation of the post views counter plugin)