Replies
Hello Axel,
Thank you for posting. I am not sure I understand your question. There are no edit link per user. Edit links are per gallery. Will you like to show the edit link on gallery list page( next to view/upload/delete )
Thank You
Ravi- Ravi on May 18, 2018 at 7:32 pm in reply to: [Resolved] Need to delete a textline in BuddyBlog plugin #15180
Hello Daniel,
Are you using your link inside '' this string. For example.
$subnav['new-post']['link'] = 'https://google.com';
Please check and let me know.
Thank you
Ravi - Ravi on May 17, 2018 at 11:42 am in reply to: [Resolved] Member to enable/disable to get indexed from Search Engines #15143
Hello Daniel,
Thank you for the acknowledgement.
Regards
Ravi - Ravi on May 17, 2018 at 10:30 am in reply to: [Resolved] Member to enable/disable to get indexed from Search Engines #15140
Hello Daniel,
Thank you for the acknowledgement. I have updated the code. Please replace old code with new one.
Thank You
Ravi Hello Axel,
Thank you for the acknowledgement. I am glad that I could help.
Thank You
RaviHello Madhavi,
There is a paid plugin available with name “ADD MULTIPLE PRODUCTS TO CART WITH CUSTOM VARIANT IN WOOCOMMERCE”. I think it will meet your requirements. Please refer the following URL
https://www.softprodigy.com/store/woocommerce/woocommerce/add-multiple-products-to-cart-with-custom-variant-in-woocommeceThank You
RaviHello Axel,
Thank you for posting. Try this following code in your active theme “functions.php” file.
function buddydev_modify_mpp_featured_content_permission( $can ) { return is_super_admin(); } add_filter( 'mppftc_user_can_mark_item_featured', 'buddydev_modify_mpp_featured_content_permission' );
and let me know if it works or not.
Thank You
RAviHello Sujee,
Thank you for posting. Do you want to redirect user based on his role to certain tab and when it will happen after login or activation account. Please let me know it can be done easily.
Thank You
Ravi- Ravi on May 17, 2018 at 9:12 am in reply to: [Resolved] Need to delete a textline in BuddyBlog plugin #15131
Hello Daniel,
Try the following code in your “bp-cutom.php” file.
/** * Modify New Post tab link * * @param array $subnav Subnav item array. * * @return mixed */ function buddydev_modify_new_post_tab_link( $subnav ) { $subnav['new-post']['link'] = 'https://google.com'; // Replace URL with yours return $subnav; } add_filter( 'buddyblog_setup_sub_nav', 'buddydev_modify_new_post_tab_link' );
Thank You
Ravi - Ravi on May 17, 2018 at 8:49 am in reply to: [Resolved] Member to enable/disable to get indexed from Search Engines #15130
Hello Daniel,
No, There is no need to create a new file. Just place the code in “bp-custom.php” file. It will work.
Thanks
Ravi