krazykatz911
Forum Replies Created
-
Forum: Plugins
In reply to: [Contact Form 7] Problem SendingNo solution?
Hi, Aparently CSF blocks it. Do you know how I can set CSF to allow it?
Ok, I researched this more and more, and found that this setting:
Enable iFrame ProtectionWhen enabled causes this repeated error. With it disabled, errors stop.
Forum: Plugins
In reply to: [WP Customer Reviews] Disable CSS Load if no shortcode is present on the pageSince the plugin developer hasn’t provided an answer yet, I found a way using this plugin:
Asset CleanUp: Page Speed Booster
Works great! Hopefully the developer can make an option to turn it on or off per page.
Forum: Plugins
In reply to: [WP Customer Reviews] Disable CSS Load if no shortcode is present on the pageYes, I would like this answer as well. It loads on every page regardless if shortcode is present.
I disabled all plugins on my sites, with just All in one running and error was happening. I just removed it from all my sites. I really don’t have time to start making test sites, etc.
17 items with no issues detected. All ok
Its all on the same server. 8 cores, 6gig memory.
Forum: Fixing WordPress
In reply to: PHP Warning: Cannot modify header informationYou were right. It was All In One WP Security & Firewall plugin causing the issue.
I have 10 sites, different themes. They were all experiencing this until I deactivated this plug in.
- This reply was modified 4 years, 11 months ago by krazykatz911.
Forum: Fixing WordPress
In reply to: PHP Warning: Cannot modify header informationI am working on that suggestion now. Will let ya know. Thank you.
Forum: Fixing WordPress
In reply to: PHP Warning: Cannot modify header informationLine 28 in wp-cron is
fastcgi_finish_request();
I checked and didn’t see any whitespace, or anything obvious.
Forum: Plugins
In reply to: [WP Customer Reviews] Image code missing for Schema.orgI too am on the latest version and get the image error and also warning because price range is not available either. Can you please add both of these?
@ctutter. How did you resolve this? Your site looks great. I am running into the same issue with the header image. Especially on my other pages. Header image is cut very slim
Forum: Themes and Templates
In reply to: [Twenty Eleven] Sidebar drops underneath page contentPlace in functions:
/** Fix for 4.5 update overlapping */ function wp36510_remove_singular_class( $classes ) { $index = array_search( 'singular', $classes ); if ( false !== $index ) { unset( $classes[ $index ] ); } return $classes; } add_filter( 'body_class', 'wp36510_remove_singular_class' ); /** End of Fix for 4.5 Update overlapping */