avantwaves
Forum Replies Created
-
Forum: Plugins
In reply to: [ShipStation for WooCommerce] Route only certain orders to ShipstationThank you for your answer. I’ll try those options.
Ok I think that the problem is that function bp_is_page() is deprecated by Buddy Press. Try changing line 160 in the file members_page_only_for_logged_in_users.php from
if ( is_user_logged_in() == false && ( bp_is_activity_component() || bp_is_groups_component() || bp_is_forums_component() || bp_is_blogs_component() || bp_is_page( BP_MEMBERS_SLUG ) || strpos($current_url,'/profile/')==true || strpos($current_url,'/friends/')==true || strpos($current_url,'/following/')==true || strpos($current_url,'/followers/')==true))to
if ( is_user_logged_in() == false && ( bp_is_activity_component() || bp_is_groups_component() || bp_is_forums_component() || bp_is_blogs_component() || bp_is_current_component( BP_MEMBERS_SLUG ) || strpos($current_url,'/profile/')==true || strpos($current_url,'/friends/')==true || strpos($current_url,'/following/')==true || strpos($current_url,'/followers/')==true))Notice the use of bp_is_current_component instead of bp_is_page
- This reply was modified 9 years, 1 month ago by avantwaves.
Same problem here. Any solutions?
Forum: Plugins
In reply to: Photo print ordering pluginHi
Did you figure out this? I’m looking for the same thing.