BuddyDev

Search

Replies

  • Keymaster
    Level: Yogi
    (BuddyDev Team)
    Posts: 3115
    Ravi on in reply to: Mediapress Manage Settings Page #15226

    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

  • Keymaster
    Level: Yogi
    (BuddyDev Team)
    Posts: 3115

    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

    • This reply was modified 6 years, 12 months ago by Ravi.
    • This reply was modified 6 years, 12 months ago by Ravi.
  • Keymaster
    Level: Yogi
    (BuddyDev Team)
    Posts: 3115

    Hello Daniel,

    Thank you for the acknowledgement.

    Regards
    Ravi

  • Keymaster
    Level: Yogi
    (BuddyDev Team)
    Posts: 3115

    Hello Daniel,

    Thank you for the acknowledgement. I have updated the code. Please replace old code with new one.

    Thank You
    Ravi

  • Keymaster
    Level: Yogi
    (BuddyDev Team)
    Posts: 3115
    Ravi on in reply to: [Resolved] MediaPress Featured Content #15139

    Hello Axel,

    Thank you for the acknowledgement. I am glad that I could help.

    Thank You
    Ravi

  • Keymaster
    Level: Yogi
    (BuddyDev Team)
    Posts: 3115
    Ravi on in reply to: Woo commerce select multiple items #15138

    Hello 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-woocommece

    Thank You
    Ravi

  • Keymaster
    Level: Yogi
    (BuddyDev Team)
    Posts: 3115
    Ravi on in reply to: [Resolved] MediaPress Featured Content #15135

    Hello 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
    RAvi

  • Keymaster
    Level: Yogi
    (BuddyDev Team)
    Posts: 3115
    Ravi on in reply to: [Resolved] Redirect Page based on Member Type #15132

    Hello 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

  • Keymaster
    Level: Yogi
    (BuddyDev Team)
    Posts: 3115

    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

  • Keymaster
    Level: Yogi
    (BuddyDev Team)
    Posts: 3115

    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