jackfuture
Forum Replies Created
-
Obviously you guys have jQuery 1.11.0. Downgrading to jQuery 1.10.2 did the trick for me. Now it works fine with Collapse-O-Matic 1.5.7 ??
Forum: Plugins
In reply to: [TablePress - Tables in WordPress made easy] Disable site-wide css loadingHi Tobias,
wow, thanks for your amazingly fast support!
I’ve just noticed that it stopped working because right now there is an excerpt of a post on my homepage which contains the ‘table’ shortcode ??
As soon as this excerpt disappears everything should work fine again.
I’d take your alternative code, but after I put this into my functions.php my entire site doesn’t load (just a white page shows up). Anyway, don’t worry about that! Since I figured out what’s the reason, I’m happy now ??
Jakob
I did this already in ticket #623667. There you can find the login data ??
There are no error messages. When I try to post manually it loads forever, so I cancel it.
After following these instructions, auto-posting doesn’t work at all, so I reverted the changes.
Anyway, I doubt that it it has something to do with the Cronjob issue. Facebook auto-posting does never work for me, even if I click on “Repost to Facebook”. So I assume it has different reasons.
Btw: I’m not always getting a “duplicate” message in the logs. Mostly it only shows:
[2013-12-17 19:47:56] – [Scheduled] [Facebook (Facebook)] – for 2013-12-17 19:48:09 | PostID:(38861)
and no success or error messages afterwards.
No, unfortunately not ??
It’s ticket #623667. As I said, SNAP doesn’t auto-post to Facebook at all, even though I enabled that.
Forum: Plugins
In reply to: [Collapse-O-Matic] How to tell plugin not to load on every page of the siteThe function “has_shortcode” is very useful for this. Here is my script to only load it on posts that use the [expand] shortcode:
function disable_sitewide_expand() { global $post; if( !has_shortcode( $post->post_content, 'expand') ) { wp_deregister_script( 'collapseomatic-js' ); wp_deregister_style('collapseomatic-css'); } } add_action( 'wp_enqueue_scripts', 'disable_sitewide_expand', 100 );
Forum: Hacks
In reply to: Remove image if identical with featured imageUnfortunately, I have no SQL skills. I also couldn’t find any websites on which the process is described for laymen.
So I’d really appreciate it if you (or somebody else) could give me the code for this :))
Forum: Hacks
In reply to: Remove image if identical with featured imageHi bcworkz,
thanks for your reply!
I don’t understand the first complication. Images are always inserted from the media library, aren’t they?
The sizes are the same, so the file names always match. Captions are not used.
I’d really appreciate your further help.
Thanks,
JakobForum: Fixing WordPress
In reply to: Permalink change – 301 redirectJust tried, it didn’t work unfortunately.
Forum: Plugins
In reply to: [jQuery Image Lazy Load WP] Images aren't loading after updateI’ve fixed the issue. It was because I had these lines in functions.php:
wp_deregister_script('jquery'); wp_register_script('jquery', 'https://ajax.googleapis.com/ajax/libs/jquery/1.9.1/jquery.min.js');
Now everything works fine. No problems with wptouch here.
Same issue here. Please fix this asap!
I’d be also grateful for a workaround to avoid this annoying bug ??
Forum: Plugins
In reply to: [EWWW Image Optimizer] Optipng is not workingOkay, thanks! ??
Forum: Plugins
In reply to: [EWWW Image Optimizer] Optipng is not workingAh, I’ve just tried the latest dev version and it works ??
Am I going to receive the next updates even though I installed the dev version?