Replies
- Tosin on April 25, 2022 at 8:09 am in reply to: [Resolved] Redirect user to custom page on account activation #44567
Opps! so obvious
Awesome Brajesh
Hope to see this feature soon
Ok thanks
Which is better for buddypress single server or multiple servers. Ive heard its better to have 2 servers 1 for database and one for files. Whats your opinion
- Tosin on April 24, 2022 at 9:06 pm in reply to: [Resolved] Buddypress confirm action on registration #44554
Also is it advisable to noindex buddypress registration page.
Hello Ravi,
Your code worked perfectly!
Thanks a lot
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
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]' ); } );
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
Now the excerpt is missing
add_filter( 'the_excerpt', function ( $excerpt ) { if ( ! function_exists( 'Post_Views_Counter' ) ) { return $excerpt; } echo do_shortcode( '[post-views]' ); } );