Replies
- Brajesh Singh on June 15, 2017 at 12:17 pm in reply to: Non-static method ::get_limit() should not be called statically #9522
Thank you for posting.
I am looking at it and will have an update of the Limit Friendship request plugin in next 24 hours.
I will post an update here again.Thank you
Brajesh - Brajesh Singh on June 15, 2017 at 6:22 am in reply to: AJAX SEARCH is asking for the "Custom field containing the image" what is it? #9521
Hi,
I am sorry but I am unable to understand your question.
MediaPress media is normal WordPress attachment, so that should be treated as attachment.Regards
Brajesh - Brajesh Singh on June 15, 2017 at 6:19 am in reply to: [Resolved] Mediapress woocommerce Error #9519
Closing it in favour of
https://buddydev.com/support/forums/topic/woocommerce-error/
Please continue the discussion there. Hi,
I tried it now I am sorry but I could not reproduce it. It can see the problem. The product object is not getting initialized and is causing issue.Can you please help me in reproducing it. Please let me know the steps to create it on a WordPress, WooCommerce & BuddyPress install.
Thank you
Brajesh- Brajesh Singh on June 13, 2017 at 12:51 am in reply to: Buddyblog – Is this possible and if so how difficult? #9508
Currently it is not possible to completely remove the component. We can disable the crate form though. We have been rewriting the BuddyBlog and the next major version will have this functionality as well as some workflow management too.
For specific membership type, Please see
https://github.com/skyverge/wc-plugins-snippets/blob/master/woocommerce-memberships/frontend/product-restricted-notice.php#L18 - Brajesh Singh on June 13, 2017 at 12:31 am in reply to: BuddyPress Activity Shortcode : Bug/Issue #9506
Hi Jerome,
Thank you for the post and reporting. I will test and provide an update today.Thank you
Brajesh Hi Ndungu,
That is vvery strange. Please allow me to look at one of the sites using MediaPress/WooCommerce and see if I can reproduce it. I will report back.- Brajesh Singh on June 13, 2017 at 12:19 am in reply to: Buddypress Recent Profile Vistors – Total Views Time Range #9504
Thank you. We will be publishing it today or latest by tomorrow.
- Brajesh Singh on June 13, 2017 at 12:06 am in reply to: [Resolved] Gallery Created But Not Showing Up #9502
Hi Mario,
Welcome back.Most probably it is ‘Wpnw_Pro_Public’. Can you disable it for a moment and check it that makes the plugin work or not?
- Brajesh Singh on June 13, 2017 at 12:03 am in reply to: Buddyblog – Is this possible and if so how difficult? #9501
Hi J,
Please put this in your bp-custom.php
/** * Do not allow members without active plans to pusblish post. * * @param boolean $can * @param int $user_id * * @return bool */ function buddydev_filter_publishing_permission( $can, $user_id ) { if ( function_exists( 'wc_memberships_get_user_active_memberships' ) && ! wc_memberships_get_user_active_memberships( $user_id ) ) { $can = false; } return $can; } add_filter( 'buddyblog_user_can_publish', 'buddydev_filter_publishing_permission', 10, 2 );This should work.