Replies
- Tosin on May 10, 2019 at 10:20 am in reply to: [Resolved] Buddycommerce missing tabs for membership and subscription #22929
Awesome work!
I have updated the plugin and it works perfectly
Thank you very much
- Tosin on May 8, 2019 at 11:53 am in reply to: [Resolved] Buddycommerce missing tabs for membership and subscription #22884
Please don’t forget about the email synchronization
Thanks
- Tosin on May 8, 2019 at 11:41 am in reply to: [Resolved] Buddycommerce missing tabs for membership and subscription #22883This reply has been marked as private.
- Tosin on May 7, 2019 at 3:29 pm in reply to: [Resolved] Buddycommerce missing tabs for membership and subscription #22866
Awesome will be expecting your update
Thanks
I tried this but did not work in bp-custom.php
add_filter( 'bp_email_set_reply_to', function( $retval ) { return new BP_Email_Recipient( 'noreply@nigerpress.com' ); } );
- Tosin on April 24, 2019 at 11:07 am in reply to: [Resolved] Activity confirm action support for confirm bp action plugin #22557
Hello,
It is working now I tried to re-save the bp-confirm-actions settings page twice and now it’s working perfectly, also i’m not so sure but I think caching was part of the problem.
Thank you so much for your patience and assistance, i’m very grateful
- Tosin on April 24, 2019 at 10:57 am in reply to: [Resolved] Activity confirm action support for confirm bp action plugin #22553
This is the code im my bp-custom.php file
function bpdelete_remove_activity_delete_text(){ $url = bp_get_activity_delete_url(); $class = 'delete-activity'; $link = '<a href="' . esc_url( $url ) . '" class="button item-button bp-secondary-action delete-activity confirm no-ajaxy fas fa-trash-alt" rel="nofollow">' . __( '', 'buddypress' ) . '</a>'; return $link; } add_filter('bp_get_activity_delete_link', 'bpdelete_remove_activity_delete_text', 9 );
- Tosin on April 24, 2019 at 8:30 am in reply to: [Resolved] Activity confirm action support for confirm bp action plugin #22546This reply has been marked as private.
- Tosin on April 23, 2019 at 3:48 pm in reply to: [Resolved] Activity confirm action support for confirm bp action plugin #22542
Hello
I just tried the code but it did not work.
- Tosin on April 23, 2019 at 11:03 am in reply to: [Resolved] Activity confirm action support for confirm bp action plugin #22531
Hello,
I just found out why it’s not working, I am using a custom code in my bp-custom.php file
function bpdelete_remove_activity_delete_text(){ $url = bp_get_activity_delete_url(); $class = 'delete-activity'; $link = '<a href="' . esc_url( $url ) . '" class="button item-button bp-secondary-action delete-activity confirm no-ajaxy fas fa-trash-alt" rel="nofollow">' . __( '', 'buddypress' ) . '</a>'; return $link; } add_filter('bp_get_activity_delete_link', 'bpdelete_remove_activity_delete_text' );
How can I make it work while using this code
Thanks