Replies
- Tosin on March 18, 2022 at 12:48 pm in reply to: BuddyPress Friendship Restrictions support for follow #43897
Hello Brajesh,
Questions
1. Please what is the progress update on the relationship api and when will it be added to the core maybe bp 11.0 .
2. You mentioned that you were gonna release some plugins around monetization how is it coming along.Thanks
- Tosin on March 14, 2022 at 8:36 am in reply to: [Resolved] How To Disable New User Notifications in WordPress admins #43812
Thank you Ravi
- Tosin on March 14, 2022 at 7:44 am in reply to: [Resolved] How To Disable New User Notifications in WordPress admins #43808
Hello Ravi,
I am not referring to activation emails but this https://ibb.co/J2yHfVJ I think its wordpress that sends this by default. I am not using any custom code or plugin. My inbox is becoming flooded especially when spam bots register.
Thanks
- Tosin on March 12, 2022 at 3:36 pm in reply to: [Resolved] Pay Per Post by selling access with WooCommerce #43789
Hello Ravi,
I have a suggestion for the pay per post addon.
Can you add a submission type dropdown field to enable users select submission type
1. If user select option (Free Post) then the post should be published immediately
2. If user select option (Sponsored Post) then the user should be redirected to cart or checkout page to make payment.See example image https://ibb.co/THSjJXQ
Thanks
Gentle Reminder sir
- Tosin on March 3, 2022 at 11:01 am in reply to: [Resolved] Pay Per Post by selling access with WooCommerce #43672
Thanks Ravi
Your code worked perfectly
- Tosin on March 3, 2022 at 9:00 am in reply to: [Resolved] Pay Per Post by selling access with WooCommerce #43666
or this
function wp_set_post_categories( $post_id, $post_categories, $append = true ) { if ( $post->post_type != 'post' ) return; // add a category $categories = wp_get_post_categories( $post_id ); $newcat = get_term_by( 'name', 'Sponsored posts', 'category' ); array_push( $categories, $newcat->term_id ); wp_set_post_categories( $post_id, $categories ); } do_action( 'bblpro_ppp_post_published', $post_id, $form_id ); - Tosin on March 2, 2022 at 7:49 pm in reply to: [Resolved] Pay Per Post by selling access with WooCommerce #43663
Hello Ravi,
Please can you take a look at this rough work
function wp_set_post_category( $post_id, $post_categories, $append ) { if ( $parent = wp_is_post_revision( $post_id ) ) $post_id = $parent; $post = get_post( $post_id ); if ( $post->post_type != 'post' ) return; // add a category $categories = wp_get_post_category( $post_id ); $newcat = get_term_by( 'name', 'Sponsored posts', 'category' ); array_push( $categories, $newcat->term_id ); wp_set_post_category( $post_id, $categories ); } do_action( 'bblpro_ppp_post_published', $post_id, $form_id );Thanks
- This reply was modified 3 years, 9 months ago by
Tosin.
- This reply was modified 3 years, 9 months ago by
- Tosin on March 1, 2022 at 12:48 pm in reply to: BuddyPress Friendship Restrictions support for follow #43648
ok thanks