jbx
Forum Replies Created
-
Forum: Plugins
In reply to: [Facebook Comments] Also post on Facebook – checkboxHi Alex,
What I meant is that reverting back to the old version is a temporary measure and this issue will return again the moment the old API version is phased out.
I don’t know why they didn’t include this as an option like the rest instead of deciding to change it for everyone.
Forum: Plugins
In reply to: [Facebook Comments] Also post on Facebook – checkboxNote that the older version of the API will stop working on June 23rd 2015.
https://developers.facebook.com/docs/plugins/comments#deprecationForum: Plugins
In reply to: [W3 Total Cache] Fragmented cache stopped workingFinally I found what was the problem! HTML minify screws the
mfuncsnippets. If you addmfuncto the Ignored Comment Stems section then it works.Would have been better if this was documented somewhere!
Forum: Plugins
In reply to: [W3 Total Cache] Page fragment caching still broken!I seem to be having the same problem. I’ve got
mfuncsegments defined in my theme and I’ve includedW3TC_DYNAMIC_SECURITYinwp_config.php, together with the page caching set to Disk:Basic and Late Init enabled.However the dynamic parts are also becoming static when I enable page caching. I also have the same issue with Adrotate.
Did you find any solution?
Forum: Plugins
In reply to: [W3 Total Cache] Fragmented cache stopped workingBump! Any ideas how to determine why fragmented caching stopped working?
I tried switching off and on various settings and unless I disable page caching the dynamic parts in the
mfuncsegments become static.Forum: Plugins
In reply to: [AdRotate Banner Manager] W3 Total Cache blocking ads to rotateWherever you have your PHP code which is displaying your advert, such as
adrotate_group(1)you should have instead:<!--mfunc <?php echo W3TC_DYNAMIC_SECURITY; ?> echo adrotate_group(1);--><?php echo adrotate_group(1); ?><!--/mfunc <?php echo W3TC_DYNAMIC_SECURITY; ?> -->Assuming of course you added
W3TC_DYNAMIC_SECURITYas adefineinwp_config.php.That might solve your issue.
Forum: Plugins
In reply to: [AdRotate Banner Manager] W3 Total Cache blocking ads to rotateNot sure about the shortcodes, but for the ones in PHP code to rotate you have to enclose them in the
<!-- mfunc >tags yourself in PHP.Forum: Plugins
In reply to: [AdRotate Banner Manager] W3 Total Cache blocking ads to rotateHow are your ads being included in your theme? Via the widget or via php code directly?
Forum: Plugins
In reply to: [Facebook] How can I stop this plugin from adding meta tags?For those looking for a quick fix for this, you can edit
facebook.phpand comment out this line 465:// add_action( 'wp_head', array( 'Facebook_Open_Graph_Protocol', 'add_og_protocol' ) );Obviously the moment you update the plugin this will come back, so you have to keep an eye on that, given that they didn’t give us the option to disable it from admin.
Yes now its working that way. My mistake was that my thumbnails were slightly larger (120 by 80, I use the same ones for a couple of other places), so
#_EVENTIMAGE{110,72}wasn’t picking up the 120 by 80 one, but the original one which could be anything the user uploads.A slight issue I have is that
#_EVENTIMAGE{120,80}generates an<img>tag that haswidth="120" height="80". I overrode them in CSS now to 110 by 72, but ideally I would have used#_EVENTIMAGEURLinstead, but I can’t specify the width and height with that then (to select the right thumbnail), it doesnt have the same options like#_EVENTIMAGE.Thanks. The reason was actually that the thumbnails I had were 120 by 80, resized slightly for Events Manager, I didn’t realise it was previously generating them using TimThumb.
Small suggestion, given this major change. You might want to consider adding a parameter to:
#_EVENTIMAGEURL(or even#_EVENTIMAGE) so that we are able to specify which thumbnail we want to use, because we have different thumbnails for different areas, and the one used for the Event Manager widget is not necessarily the default one.That way we can just generate the thumbnail through wordpress in
functions.phpusing an extra:add_image_size('event-thumb', 110, 72, true);And in the widget we just put something like:
<img src="#_EVENTIMAGEURL{event-thumb}" width="110" height="72" />In my case we also use the Crop Thumbnails plugin so the author/editor actually crops each of the thumbnails correctly. It would be good to have a specific thumbnail for events manager widget in this way.
Forum: Plugins
In reply to: [WP Popular Posts] Wrong custom HTML after updateWorked perfectly.
Cheers!
Forum: Plugins
In reply to: [WP Popular Posts] Wrong custom HTML after updateHi Hector,
No worries, I will wait for your update.
The production site is running fine with the older version.Thanks.
Forum: Plugins
In reply to: [WP Popular Posts] Getting a paginated list of popular postsHi Hector!
Thanks for your quick reply. I had a look at those posts, and if I understood correctly what is happening in that case is a
JOINwith thepopularpostsdatawhen the URL has a specific GET parameter.In my case I want to override the query, maybe using
WP_Query()because it is only on a specific page that I want this, without GET parameters.What I am not understanding however is where is it saying that the views should be over the last 24 hours, over the last 7 days, over the last 30 days or all time. Because I want the results to match the widget, otherwise it will be confusing for the user.
I could have a look at what you’re doing in your widget and replicate that if its easy to understand. Where can I find that?
Thanks.
Forum: Plugins
In reply to: [WP Popular Posts] Thumbnail content tag without linkNice cheers!