Output Buffering issue
-
Hey,
I am the developer of Themify https://themify.me/. I found a bug in your plugin which is breaking our themes and I am sure not only our.
You are calling this code https://prntscr.com/vfq0o2 in smart-slider-3\Nextend\WordPress\OutputBuffer.php ,which is breaking our themes.
In the loop you should call ob_end_flush ONLY for Your ob_start. but you are calling it for all buffers , it means ANY plugin/theme which are using hook shutdown can’t get the content, after your hook(shutdown) call?
Here is the pattern of issue.
1. ob_start – Our code
2. ob_start – Your code
….
…
3. ob_end_flush – your code. Loop from screenshot which is breaking our ob_start in #1
4. ob_get_content – our code. The data it’s empty, because your code removed it in #3.
Similiar issue here
https://www.ads-software.com/support/topic/conflict-with-smart-slider-3-output-buffering/
Thanks Arman.
- The topic ‘Output Buffering issue’ is closed to new replies.