Steph
Forum Replies Created
-
Forum: Plugins
In reply to: [Search Exclude] Translation Loading Warnings@jmatiasmastro I noticed an update and have installed it. That seems to have fixed the issue – thanks.
I’d normally try to help out by providing a solution but I’m a bit snowed under at the moment.
Thanks again and have a great day.Forum: Plugins
In reply to: [Search Exclude] Translation Loading Warnings@jmatiasmastro Hi. Plugin version 2.4.8 and PHP version 8.3.20. Thanks.
@madalinaruzsa Fantastic. Thankyou for the fix. We’ll update our version.
@madalinaruzsa Thankyou.
Fantastic. Thanks for that.
Forum: Plugins
In reply to: [LiteSpeed Cache] Ver 5.1 breaks quic.cloud CDNAs a follow up, it seems the “Server IP” setting in quic.cloud had changed to an incorrect address after updating. Hope that helps.
Forum: Plugins
In reply to: [ECS - Ele Custom Skin for Elementor] Extremely Slow Load Times@turanligil No I didn’t. I think the speed issue is related to what @dudaster mentioned,
Elementor generates the Loop Template for each item
In the situation I saw a big performance issue (around 2.5 seconds extra load time which tripled the load time) the client wanted all 42 posts shown. As I decrease the amount of posts shown the performance increases. For example showing 3 posts is much faster than 42.
- This reply was modified 5 years, 11 months ago by Steph.
Forum: Plugins
In reply to: [ECS - Ele Custom Skin for Elementor] Extremely Slow Load TimesI haven’t looked into your plugins architecture but I get that it basically grabs a template for every item. It’s just really slow. Unfortunately it’s unusably slow to be honest.
Thanks again.
Forum: Plugins
In reply to: [Google Maps Plugin by Intergeo] No longer workingHey I’m having the same issue both on the front end and backend. I get a javascript error “Cannot use ‘in’ operator to search for ‘length’ in false”. Page: http://www.primemotiontraining.com.au/training/fitness-test/practice-fitness-test/
Forum: Plugins
In reply to: [Comprehensive Google Map Plugin] Map object inserted above opening HTML tagNot exactly the same scenario as you but I’m seeing <object> tags in the <head> as well. I found the problem to be a conflict with the Yoast WordPress SEO plugin. If I deactivate it, no <object> tags in the <head>.
HTH.
Forum: Plugins
In reply to: [Fotorama] Any way to use description instead of caption?The fotorama WordPress plugin uses the output of the
gallery_shortcode()function which is the handler for the[gallery]shortcode. That function has a filterpost_gallerywhich allows you to override the entire output. I think this about the only way to make any customisations of that sort as fotorama uses the output of that function, once each for the thumbnails and main images.You can copy the entire function from
\wp-includes\media.php, rename it and hook it to that filter. Make sure you take out the following code in your copied function which is on line 783-786:// Allow plugins/themes to override the default gallery template. $output = apply_filters('post_gallery', '', $attr); if ( $output != '' ) return $output;I haven’t got time to write your solution however a quick look tells me that on line 879, the caption uses
$attachment->post_excerpt. You could change this to whatever you like. That should do it.Forum: Plugins
In reply to: [BackWPup – WordPress Backup & Restore Plugin] Warning errorsHey,
I’m having the same issue on one server. Upload to S3 timing out due to 5 minutes of inactivity then the following warnings:
[05-May-2013 03:40:48] STRICT NOTICE: Declaration of OpenCloud\DNS\PtrRecord::Create() should be compatible with that of OpenCloud\DNS\DnsObject::Create() [05-May-2013 03:40:48] STRICT NOTICE: Declaration of OpenCloud\DNS\PtrRecord::Update() should be compatible with that of OpenCloud\DNS\DnsObject::Update() [05-May-2013 03:40:48] STRICT NOTICE: Declaration of OpenCloud\DNS\PtrRecord::Delete() should be compatible with that of OpenCloud\DNS\DnsObject::Delete() [05-May-2013 03:40:48] STRICT NOTICE: Declaration of OpenCloud\DNS\PtrRecord::UpdateJson() should be compatible with that of OpenCloud\DNS\DnsObject::UpdateJson()I’m only seeing this error on 1 server. I don’t know if this is related but it’s the only server I’m running
FORCE_SSL_ADMIN.Forum: Fixing WordPress
In reply to: Help Needed With Filter FunctionI use this CSS:
.widget_extended-categories .avhec-widget-line { display: block !important; position: relative; top: 0; } .widget_extended-categories .avhec-widget-count { position: absolute; right: 10px; top: 6px; } .widget_extended-categories ul li li .avhec-widget-count { top: 4px; }You will have to adjust the positions as required.
Forum: Plugins
In reply to: [Plugin: Wp-e-commerce] Get category name & urlOoops, wrong thread. Soz.
Forum: Requests and Feedback
In reply to: HTTPS, SSL, WP_CONTENT_URLHey ac33,
a. A plugin to do what exactly?
b. What do you mean by “ssl url”?The URL of a page in WordPress can be changed on a page basis by modifying the permalink. So you can manipulate the URL like that. Then my code from above will switch on HTTPS for that page.
NP.