darrencss
Forum Replies Created
-
Thank you Gerard, working as normal now.
I hav ethe same problem, failed connection every time. Direct support have gone missing in action too.
shortpixel.min.js?ver=4.21.1:1 Empty queue 15088->15088
Thanks Gerard but I have cleared the browser cache and it still spins for ever.
So what file can I clear in the cloudflare and kinsta caches to fix this?
Tried:…/wp-content/plugins/shortpixel-image-optimiser/res/css/short-pixel-bar.min.css
No effect?- This reply was modified 5 years, 7 months ago by darrencss.
Not fixed for me!!
Thank you Danny, that has certainly worked and the plug-in is now operating as expected.
Much appreciate your support.Hi Danny
No, WP Cron as standard.I have a custom functions plugin where the default image file is specified:
//* Move Uploads Folder define( 'UPLOADS', ''.'media' );Commenting this out did seem to fix the problem initially but after visiting the site from a clean browser it didn’t seem like any new stats were being recorded?
Obviously, setting the image file back to default breaks the site visually so it wouldn’t be a satisfactory fix anyways. It does give some clue to the source of the issue though?
Hi Danny
The tables are present but all empty.
No http errors in console either.pageviews.php is in /wp-content/uploads/
File has 80 lines which is more like a minute rather than the 30 hours or so since the plug-in was activated?
No errors
Hi Danny
That loads ok with 200 but with a long delay.I should point out that the default uploads file for this site is /media/…
Cloudflare is the CDN with rocket loader and argo enabledCan’t think of anything else relevant?
I have installed the plug-in on another site with a standard install and that works fine.
Thanks
Forum: Plugins
In reply to: [SEO Slider] Disable scripts and css on other pagesThanks for the response, however, I have found excluding the code causes problems with other plugins.
As a consequence I have simply removed the slider. It looks like the most ‘seo-friendly’ slider is actually no slider at all.
Forum: Plugins
In reply to: [SEO Slider] Disable scripts and css on other pagesI have this which woks, but would appreciate an ‘official’ alternative.
// Dequeue the Slider stylesheet, except front page add_action( 'wp_print_styles', function() { // if we are on front page, abort. if ( is_front_page() ) { return; } wp_dequeue_style( 'seo-slider' ); }, 100 );and;
// Dequeue the Slider script, except front page add_action( 'wp_print_scripts', function() { // if we are on front page, abort. if ( is_front_page() ) { return; } wp_dequeue_script( 'seo-slider' ); }, 100 );Forum: Plugins
In reply to: [VS Contact Form] Merge Style.cssHi
It looks like latest update has broken this solution?Forum: Plugins
In reply to: [VS Contact Form] Merge Style.cssOK, I have now have it working; I am just using the standard [contact] shortcode to keep things simple.
I think disabling the style sheet for when a widget is not present is probably overkill. If anyone wants to use this function I think they will be not too worried about it?
For me, because I only have one contact form on a site with over 300 pages, it made sense to reduce the load where possible.
Thanks again for your support.
Forum: Plugins
In reply to: [VS Contact Form] Merge Style.cssActually, I have tested this on a live site and seems to have gone wrong – adding extra input boxes.
So I have reverted back to the original for now.
On one site it worked fine though, maybe because the default shortcode [contact] was in use?
The site that went wrong had the modified code [contact email_to=”xxx” hide_subject=”true”]
- This reply was modified 8 years, 10 months ago by darrencss.