Jacob Schweitzer
Forum Replies Created
-
Forum: Plugins
In reply to: [Stream] Fatal PHP error@tnolte No problem, a few people have reported that this fix worked for them. If you want to download it you can go here – https://github.com/xwp/stream/tree/issue-875 and click on the green “Clone or download” button then click “Download ZIP” then upload to your site.
Forum: Plugins
In reply to: [Stream] Update WP page not working when Stream plugin is enableThanks for the verifying that it works for you @jhorneck!
Forum: Plugins
In reply to: [Stream] 3.0.7 Error 500@nathansmonk Do you have Yoast SEO? Are you using WordPress multisite? There is an issue with Stream when network enabled and Yoast SEO not network enabled that gives a 500 error. There is a possible fix for that situation if that is your case otherwise could you let us know what plugins you are using?
Forum: Plugins
In reply to: [Stream] Fatal PHP errorAwesome, good to hear that it is up and running for you again @sokratesagogo . Let me know if you run into any other issues. In the meantime this will be looked over closer to ensure this is the best solution and can be merged in.
Forum: Plugins
In reply to: [Stream] Keep records option missing in MultisiteHi @castoruk, I’ve added a pull request to bring this back. Really it never left, it was just hidden and I’ll still need to figure out exactly why to ensure we don’t have issues when bringing it back. I did some testing and when saving the option it’ll remove records older than x days so that part works still. Hopefully we can revive it soon for you, I’ll update you as soon as I learn more.
Here is the pull request that shows the option and saves it properly again if you’d like to have a look or test it out:
https://github.com/xwp/stream/pull/877- This reply was modified 8 years, 2 months ago by Jacob Schweitzer.
Forum: Plugins
In reply to: [Stream] Update WP page not working when Stream plugin is enableHi @thisismyway. I was able to reproduce the issue with Stream network enabled and Yoast SEO not network enabled. I’ve created a pull request for a fix but it has to be checked to see if it creates any un-intended issues. You can see that here –
https://github.com/xwp/stream/pull/879If you’re able to test please let me know. Thanks.
Forum: Plugins
In reply to: [Stream] Fatal PHP errorThank you @sokratesagogo. I was able to reproduce the issue with Stream network enabled and Yoast SEO not network enabled. I’ve created a pull request for a fix but it has to be checked to see if it creates any un-intended issues. You can see that here –
https://github.com/xwp/stream/pull/879If you’re able to test please let me know. Thanks.
Forum: Plugins
In reply to: [Stream] Update WP page not working when Stream plugin is enableHi, sorry to hear you are having issues.
I’ve installed the latest version of Stream (3.0.7), Yoast SEO (3.5), and WordPress 4.6.1 multisite but have not been able to reproduce this issue yet. Is there any other specific actions that trigger the error? Could you list any other plugins you’re using to help us diagnose the problem?
Forum: Plugins
In reply to: [Stream] Fatal PHP errorHi guys sorry to hear you are having issues.
@sokratesagogo can you give me a link to this WP Networks plugin?
I’ve installed the latest version of Stream (3.0.7), Yoast SEO (3.5), and WordPress 4.6.1 multisite but have not been able to reproduce this issue yet. Is there any other specific actions that trigger the error? Could you guys list any other plugins you’re using to help us diagnose the problem?
- This reply was modified 8 years, 2 months ago by Jacob Schweitzer.
Forum: Plugins
In reply to: [BuddyPress Profile Tabs] Issue with new version 1.6Since I did not receive feedback about the issue I’ll assume it is resolved since nobody else reported it.
The edit profile page is not included in the functionality of this plugin, it is built entirely different than the view profile page. It would be a bit of work and could have some adverse affects that would require a lot of testing. I’d also be wary of breaking functionality with other BuddyPress plugins. So this is something that I’d thought about but had not implemented due to its complexity. Thank you for your feedback though, I will think more about this and if there is a way to implement it without getting too complicated I’ll do it.
Forum: Plugins
In reply to: [BuddyPress Profile Tabs] No tabs are showingGreat, thank you for the feedback!
I’d look at using the bp_before_has_profile_parse_args filter like I how I use it in the plugin:
add_filter( 'bp_before_has_profile_parse_args', array( $this, 'filter_tabs' ), 10, 1 ); /** * Filter the tabs to show on the member page * * @param array $args Tabs arguments. * * @return mixed */ function filter_tabs( $args ) { if ( isset( $args['exclude_groups'] ) ) { $args['exclude_groups'] .= $this->tabs_to_filter; } else { $args['exclude_groups'] = $this->tabs_to_filter; } return $args; }
In this case I am excluding tabs but perhaps there is a way to include new ones, it is not something I’ve looked into before.
Forum: Plugins
In reply to: [BuddyPress Profile Tabs] Fatal error when BP is deactivated before BPTSorry for the delay, have been busy with a new job and some personal things. I have included this in version 1.6.1. Thank you for your contribution!
Forum: Plugins
In reply to: [BuddyPress Profile Tabs] Hide empty field groupsHi carson7634,
Thank you for the contribution, however I’m sorry I wasn’t able to get this in the latest version. I will look at it for a future version, reason being I don’t want to add another database call in there if it is not necessary so probably the best way would be to add an option that says “Do not show empty tabs” which is not enabled by default to keep the plugin fast. If the option is enabled then it would use code similar to something you provided here to look for empty tabs then not include them. What do you think?