tony
Support threads created in the last 30 days: 0
Favorite Forum Topics
This user has no favorite topics.
Forum Topics Created
Status | Topic | Supporter | Voices | Posts | Freshness |
---|---|---|---|---|---|
How to include the wordpress post attributes for 0rder in a Cred form
Started by: tony in: Toolset Professional Support |
|
3 | 10 | 2 years, 5 months ago | |
Views -Select posts in a relationship that are related to any of multiple values
Started by: tony in: Toolset Professional Support |
|
2 | 5 | 5 years, 1 month ago | |
functions php on line 4609
Started by: tony
in: Toolset Professional Support
Problem: Solution: The user was able to fix it following this article https://www.kevinleary.net/wordpress-ob_end_flush-error-fix/ By adding the following code to theme's functions.php /** * Proper ob_end_flush() for all levels * * This replaces the WordPress `wp_ob_end_flush_all()` function * with a replacement that doesn't cause PHP notices. */ remove_action( 'shutdown', 'wp_ob_end_flush_all', 1 ); add_action( 'shutdown', function() { while ( @ob_end_flush() ); } ); |
|
2 | 6 | 5 years, 2 months ago |