cannobbio
Forum Replies Created
-
Hi @ryancysupport ,
Thanks for the quick response and fix!
I’ve updated to the latest version and can confirm the issue is completely resolved in v3.0.9. The inline styles are no longer being applied.
Thanks again!
Thank you @jarnovos for your reply.
I can confirm version 9.5.0.1 fixes the issue.
Best regards,
MarceloThis feature is deleting/overwriting my entire htaccess file.
ΒΏCan anyone confirm this?Hi,
The new version (2.25.24) fixes the issue.Thank you!
Hi. PHP 7.4 and WP 6.3. Thank you.
Thanx @franku
Same here. Custom taxonomy terms in breadcrumb are in wrong order.
Rolling back to 13.5 fixes the issue.Forum: Plugins
In reply to: [Crop-Thumbnails] v1.2 – strange effects when Yoast SEO is runningSame here. v1.2 with wp v4.9.8
Console errors on some admin pages.
Uncaught TypeError: Cannot read property 'addFilter' of undefined
The error is on handleFeaturedImagePanel() function where wp.hooks is undefined.Rolling back to 1.1.3
Thank you!
Forum: Fixing WordPress
In reply to: WordPress hanging Hostgator support can't find the solution@tomdkat, no I haven’t. I’ve just started to take action.
16.4 in 16 cpus. is that high?. I’s 1.025 per cpu is it?
I just read about server load somewhere else and thought it was ok.=)
Forum: Fixing WordPress
In reply to: WordPress hanging Hostgator support can't find the solutionHi, I’m adding myself to the thread…
I have constant random “Glaciar” performance of WordPress 3.2.1 (back from 3.1.4 maybe). Sometimes pages (front and admin) load quickly, but seconds later the server response time drops to zero.
I’m a Hostgator Reseller. I have many sites with several plugin configurations, all slow as a turtle. My server load indicates 16.4 with 16cpus. I have never expirienced this kind of performance with WordPress. I’ve been at Hostgator for 3 years and admin like 20 sites, and only 3.2 setups are lagging. WP 3.1 sites work fine, also handcoded sites.
I just hope to hear good news soon…
Forum: Fixing WordPress
In reply to: Media Library not displaying media@mediacellar I saw your previous post and installed the Hotfix with no hope at all but it turned out it worked for me.
If I have any further problem I’ll post it here.
cya
Forum: Fixing WordPress
In reply to: Media Library not displaying mediaHotfix 0.5 resolved the Media Library issue.
I’m using WP 3.1.3 and WP e-Commerce 3.8.4 and now I can see my media list including product images.Thank you.
Forum: Plugins
In reply to: [jQuery Image Lazy Load WP] jQuery Image Lazy Load WP not work with 3.1.2I think it’s this:
$jq_url = ‘https://ajax.googleapis.com/ajax/libs/jquery/1.6.1/jquery.min.js’;It works with the previous 1.4.2
Forum: Plugins
In reply to: [Meteor Slides] [Plugin: Meteor Slides] jquery conflictThank you @danmichel it works!
although this one’s simpler:// Custom Lazyload function custom_jquery_lazy_load_ready() { $placeholdergif = plugins_url('jquery-image-lazy-loading/images/grey.gif'); echo <<<EOF <script type="text/javascript"> jQuery(document).ready(function($){ if (navigator.platform == "iPad") return; jQuery("img:not('.attachment-featured-slide')").lazyload({ effect:"fadeIn", placeholder: "$placeholdergif" }); }); </script> EOF; } remove_action('wp_head', 'jquery_lazy_load_ready', 12); add_action('wp_head', 'custom_jquery_lazy_load_ready', 12);Could not have done it without your sample.
If you want to exclude multiple classes, coma separate them:
// Custom Lazyload function custom_jquery_lazy_load_ready() { $placeholdergif = plugins_url('jquery-image-lazy-loading/images/grey.gif'); echo <<<EOF <script type="text/javascript"> jQuery(document).ready(function($){ if (navigator.platform == "iPad") return; jQuery("img:not('.attachment-featured-slide','.my-class','#my-id')").lazyload({ effect:"fadeIn", placeholder: "$placeholdergif" }); }); </script> EOF; } remove_action('wp_head', 'jquery_lazy_load_ready', 12); add_action('wp_head', 'custom_jquery_lazy_load_ready', 12);Forum: Plugins
In reply to: [Meteor Slides] [Plugin: Meteor Slides] jquery conflictThank you JLeuze. π
Forum: Plugins
In reply to: [Meteor Slides] [Plugin: Meteor Slides] jquery conflictHi, I’m using Thematic theme framework wich has some filters and hooks.
I wanted a Meteor Slideshow called “main” on my Front Page so I used this function:// Meteor Slideshow in Front Page function home_slideshow() { if ( is_front_page() && function_exists( 'meteor_slideshow' ) ) { meteor_slideshow("main"); } } add_action('thematic_abovecontent', 'home_slideshow');Notice that I put it “Above the Content DIV” with thematic_abovecontent() hook.
Then I stepped with the Lazyload problem, so I override the plugin’s function with this one (you have to put this on your theme’s functions.php):
// Custom Lazyload function custom_jquery_lazy_load_ready() { $placeholdergif = plugins_url('images/grey.gif', __FILE__); echo <<<EOF <script type="text/javascript"> jQuery(document).ready(function($){ if (navigator.platform == "iPad") return; jQuery("#header,#content,#primary,#secondary,#footer").find("img").lazyload({ effect:"fadeIn", placeholder: "$placeholdergif" }); }); </script> EOF; } remove_action('wp_head', 'jquery_lazy_load_ready', 12); add_action('wp_head', 'custom_jquery_lazy_load_ready', 12);It works because my slideshow is not in the content. It would be better if I could just exclude the containers I want with “.not(this)” but I don’t know how to (I suck at javascript). Any clue?
Thanks!