DBZEROONE
Forum Replies Created
-
I’ve had this exact same problem on 3 sites now. The only reliable solution I’ve found thus far is to deactivate Breeze.
Forum: Reviews
In reply to: [Flamingo] Spam Magnet – DO NOT PUT YOURSELF THROUGH THISIf I could give it zero stars, I would.
So instead you gave it 5 stars?
Turns out CF7 was marking outgoing emails as spam, which stopped them from sending. This is indicated by the CF7 error message with an orange border.
To remedy the issue, add this code to functions.php://STOPS CF7 FROM FLAGGING EMAIL WITH LINKS AS SPAM add_filter('wpcf7_spam', '__return_false');
Edit: Further investigation revealed that the blocked keyword list (settings – discussion – Disallowed Comment Keys) included
https://
which instantly blocked any outgoing message with a URL.I just emailed the site info. Thank you.
Forum: Plugins
In reply to: [Awesome Weather Widget] Change m/s to mph using shortcodesThis bug is showing the correct number, but the wrong units. Hopefully the developer will fix this in the next release, but until then if anyone else is having trouble with this bug, add the following code to your functions.php file. This will replace m/s with mph.
// CHANGE OUTPUT OF WIND SPEED UNITS FROM m/s TO mph // function dbz_awesome_weather_wind_speed_text() { return $wind_speed_text[] = "mph"; } add_filter('awesome_weather_wind_speed_text', 'dbz_awesome_weather_wind_speed_text');
Forum: Plugins
In reply to: [Discontinued: Srizon Social Album :Do Not Install] Gallery Album IssuesI fixed it. In my theme’s includes/js there was a file called bootstrap-wp.js. In that file the very first line of code was:
document.write("<style>body{display:none;}</style>");
I think this was intended to hide the site until the entire page loaded, then something else fades it in. Stupid theme tricks. I commented out that line and now it works as intended. Thank you!
- This reply was modified 6 years ago by DBZEROONE. Reason: clarity
Forum: Plugins
In reply to: [Discontinued: Srizon Social Album :Do Not Install] Gallery Album IssuesIt does work with a default theme. Turning off all the plugins doesn’t change anythin. It’s definitely a problem with the theme, however I deregistered jQuery and enqueued various different versions up to 3.3.0 with no luck.
Any suggestions or suggested reading about tracking down and fixing conflicts?
Forum: Plugins
In reply to: [Discontinued: Srizon Social Album :Do Not Install] Gallery Album IssuesI’m having the same problem… the thumbnails do not show until the browser window is resized or scrolled (on mobile).
Forum: Plugins
In reply to: [Zoho Mail for WordPress] Contact Form 7 Reply-To not working properly@zmintegration This is NOT a workaround to OP’s problem.
The problem (which I am also struggling with) is that when a user fills out a contact form, the reply-to address that is set in the Contact Form 7 form is not working. It should be the address of the user who filled out the form. The solution you provide above is for something completely different.
Do you have a workaround for this specific issue?
Forum: Plugins
In reply to: [Mivhak Syntax Highlighter] Can't get plugin to work, throws JS errorNo luck. I tried with the standard WP themes and saved the settings as well with no difference.
Forum: Plugins
In reply to: [WP Fastest Cache] Front page not cachingI’m sorry for being unclear. Yes, I meant home page.
RC3 works perfectly for me. Thank you!!
I’m having the same problem, so I’m following these threads instead of starting a new topic. I hope that’s ok…
I deleted/re-installed version 1.2.0rc2, but the problem is persisting.
OS X 10.8.5
PHP: 5.5.9-1ubuntu4.5I will continue to watch these threads for the solution. Thank you!
Forum: Reviews
In reply to: [Yet Another Photoblog] Neat Photo BloggingThe demo appears to be a dead link…
Forum: Plugins
In reply to: [Akeeba Backup CORE for WordPress] Excluding directories gives AJAX errorEven though I know better, magic_quotes was on. I disabled it in php config editor on my server and that fixed the problem! Now I can exclude directories! Thank you nikosdion!