deas0815
Forum Replies Created
-
Been asking myself the same with regards to
(invalid-json). πThis issue is out for a while and it appears nobody is stepping in.
There are alternative solutions for login, contact and comment forms, but I have not yet found another single plugin addressing all those three.
Suggestions are welcome.
I guess we have an issue in the theme.
In functions.php (lifestyle_banner), there is a condition:
if (( 'posts' == get_option( 'show_on_front' )) && (is_day() || is_month() || is_year() || is_tag() || is_category() || is_singular('post' ) || is_home())) { lifestyle_get_home_banner(); } elseif(/...So if we configure the blog (Settings->Reading) to display the latest post on the startpage, you will never see the post thumbnail rendered on a single post page. Unless of course, you directly add it to the content using the editor.
If the former is what you want, just remove
|| is_singular('post' ). Be aware though, that a theme update will likely reintroduce the issue. Hence, I’d appreciate if the functionality to choose would ship with the next update.That is exactly the place where I expected a control for the card type.
Forum: Plugins
In reply to: [Contact Form 7] No success message, ajax loader keeps spinningGot my issue fixed. The problem was that W3 Total Cache removed the standard wordpress entries from .htaccess.
Forum: Plugins
In reply to: [Contact Form 7] No success message, ajax loader keeps spinningI guess I see the same thing as yohann1b at http://www.contentreich.de/kontakt after upgrading a WordPress to 4.1 and a bunch of plugins (including Contact Form 7 which is not at 4.1). Tried disabling W3 Total Cache, but that showed no effect. The POST message looks correct, but the response seems unexpected.
Forum: Plugins
In reply to: [WordPress Social Login] Login w/o RegistrationFound the setting. Sorry for the noise.
Forum: Plugins
In reply to: [Debug Objects] WP 3.8 : Plugin installed and activated : No controlsSeems I messed up somehow. It 2.1.16 now works on a fresh 3.8 install, but:
The reason I got into this was that I had two other “non virgin” systems both exhibiting the privileges problem with debug objects. Seems there is some sort of a general permission issue http://www.codefetti.com/fix-wordpress-you-do-not-have-sufficient-permissions-to-access-this-page.
Anyways, I have now fixed the problem on the other two systems. Removing and reinstalling the plugin did the trick. Just deactivating/activating was not enough. I tried a few times.
Forum: Plugins
In reply to: [Debug Objects] WP 3.8 : Plugin installed and activated : No controlsMarking as solved.
Forum: Plugins
In reply to: [Debug Objects] WP 3.8 : Plugin installed and activated : No controlsThanks for the fast response. The version from github fixed it for me on WP 3.8.
Just to be clear: I tested fresh, virgin installs of wordpress – 3.7.1 and 3.8 with the current debug-objects release 2.1.16. It was the sole extension (plugin/theme). 3.7.1 worked fine, 3.8 had the permission problem.
Thanks again, Frank !
Forum: Plugins
In reply to: [Download Manager] Download manager free editon HTTP/1.1 response problem.As of version 2.5.93, the plugin unconditionally calls:
error_reporting(0);and
@header("HTTP/1.1 200 OK");This is very bad behaviour. Honestly, I would not even look at the “pro” version and I’ll get rid of it as soon as possible.
I am not a wordpress expert, but just bumping the jquery-ui version in
class-mf-timeline.phpdid the trick for me.Replaced
wp_register_script( 'jquery-ui', ("https://ajax.googleapis.com/ajax/libs/jqueryui/1.8.16/jquery-ui.min.js"), false, '1.8.16' )with
wp_register_script( 'jquery-ui', ("https://ajax.googleapis.com/ajax/libs/jqueryui/1.9.2/jquery-ui.min.js"), false, '1.9.2' )and that was it.