Shape the future of Social networking with WordPress: Join Project Midnight Sun! The next generation platform for community building with WordPress!

BuddyDev

Search

Replies

  • Keymaster
    (BuddyDev Team)
    Posts: 25383
    Brajesh Singh on in reply to: Buddyblog confirm action for publishing #40376

    Hi Tosin,
    we are hoping to release it in next 2 weeks.

    Regards
    Brajesh

  • Keymaster
    (BuddyDev Team)
    Posts: 25383

    Hi,
    Thank you for the question.

    The feature is not available currently. We will add it in our next release for admins to enable/disable it.

    Regards
    Brajesh

  • Keymaster
    (BuddyDev Team)
    Posts: 25383

    Hi,
    Thank you for using BuddyBlog Pro.

    It may be a conflict as we too load the WordPress media uploader script. Please provide me guest account on your site(preferably staging site) where both the plugins are active.

    I can quickly check and add compatibility if any change is needed on our end.

    Regards
    Brajesh

  • Keymaster
    (BuddyDev Team)
    Posts: 25383
    Brajesh Singh on in reply to: [Resolved] User tab pro not showing slug option #40365

    You are welcome.

    Regards
    Brajesh

  • Keymaster
    (BuddyDev Team)
    Posts: 25383
    Brajesh Singh on in reply to: BuddyPress Simple Front End Post and pods fields #40364

    Hi Valerio,

    I am sorry, I do not use pods and won’t be able to assist with what you need to do with it.

    You can use the following examples(put the code in your theme’s functions.php) to add custom fields. I am assuming that if you keep the keys same as that of pods, they should work.

    https://buddydev.com/support/forums/topic/custom-fields-on-user-post/#post-709

    Instead of ‘buddyblog_post_form_settings’, please use ‘bcg_form_args’

    Regards
    Brajesh

  • Keymaster
    (BuddyDev Team)
    Posts: 25383
    Brajesh Singh on in reply to: Woocommerce – My Account Short Code in Sub Tab #40363

    Hi Isaac,
    Thank you.

    There is no our of the box solution to have the WooCommerce tabs to display on the user profile without custom code. You may show the initial state using the shortcode but unless you have someone develop it for you, there will be 2 issues:-

    1. All the links will point to original woocommerce my account page. It can be filtered via code
    2. The form handling(saving card etc), needs to be re-done. Displaying information is a bit easy.

    We faced these issues while creating BuddyCommerce, so noting down.

    Regards
    Brajesh

  • Keymaster
    (BuddyDev Team)
    Posts: 25383
    Brajesh Singh on in reply to: BuddyPress Simple Front End Post and pods fields #40355

    Hi Valerio,
    Thank you for the question.

    The plugin is not aware of any custom fields plugin, so it doe not know what kind of field you have added.

    You may register the custom fields(again) via code to BP Simple Front end post and then it will handle showing them in the form. I do not see any other solution.

    Regards
    Brajesh

  • Keymaster
    (BuddyDev Team)
    Posts: 25383
    Brajesh Singh on in reply to: Woocommerce – My Account Short Code in Sub Tab #40354

    Hi Isaac,

    Welcome to BuddyDev support forums.

    The problem is WooCommerce uses the end point urls relative to your “myaccount” page permalink.

    It does not matter where you put this shortcode, the end point urls are always related to the default WooCommerce my account page. This is due to the way the ‘wc_get_account_endpoint_url’ works. It takes the permalink of ‘myaccount’ page(which is set in your WooCommerce settings) and prepares end point urls relative to them.

    You can check it by putting the shortcode in a normal page or post instead of the profile tab.

    The solution is to filter the specific end point urls to force it point to current page/relative to current page. Profile tabs does not know what kind of content is being used and can not filter this.

    In other words, even if you use the shortcode inside the tab, Profile tab will not be able to change the url for WooCommerec links as they are handles by woo.

    We have a specific plugin to solve this. you can use BuddyCommerce. The plugin is aware of WooCommerec and the related urls and knows how to filter them.

    Please use
    https://wordpress.org/plugins/buddycommerce/

    Regards
    Brajesh

  • Keymaster
    (BuddyDev Team)
    Posts: 25383
    Brajesh Singh on in reply to: [Resolved] User tab pro not showing slug option #40352

    Hi Derek,
    Welcome to BuddyDev forums.

    It may happen some time. You can enable it by following the below steps.

    https://buddydev.com/docs/buddypress-user-profile-tabs-creator-pro/enable-slug-option-profile-tabs-editing/

    Regards
    Brajesh

  • Keymaster
    (BuddyDev Team)
    Posts: 25383
    Brajesh Singh on in reply to: Make Custom Profile Tab specific to specific Profile? #40349

    Hi La,
    Thank you.

    For the approach 2, the token replacement is done by the Profile Tabs Creator Pro. all you need to do is to tell it using the above token where you need actual user id.

    So, if the formidable form provide you with a shortcode which accepts the user id, instead of passing actual user id in that shortcode, pass the value as ‘#displayed_user_id#’

    That will make sure the actual user id of the currently displayed user is passed.

    Regards
    Brajesh