tbvdg
Forum Replies Created
-
Forum: Plugins
In reply to: [Offload, AI & Optimize with Cloudflare Images] 1.9.0 Not loading all imagesOkay found these changes/function related to the issue. If I comment out the add_filter or change the return from $image_src[0] to $url the images load fine from Cloudflare. Maybe a conflict with wpbakery or the theme.
/public_html/wp-content/plugins/cf-images/app/modules/class-cloudflare-images.php
// Support for various Gutenberg blocks. add_filter( 'wp_get_attachment_url', array( $this, 'get_attachment_url' ), 10, 2 );
/** * Filters the attachment URL. * * @since 1.9.0 * * @param string $url URL for the given attachment. * @param int $attachment_id Attachment post ID. * * @return string */ public function get_attachment_url( string $url, int $attachment_id ): string { if ( is_admin() ) { return $url; } $image_src = $this->get_attachment_image_src( array( $url ), $attachment_id, null ); return $image_src[0]; }
}
Forum: Plugins
In reply to: [Offload, AI & Optimize with Cloudflare Images] 1.9.0 Not loading all imagesI still had the same issue with the beta version after bulk remove and re-offloading. I’ll compare 1.8.0 to 1.9.0 in winmerge and see if I can find the change that causes the issue and let you know.
Thanks
Forum: Plugins
In reply to: [Offload, AI & Optimize with Cloudflare Images] 1.9.0 Not loading all imagesYes the theme is using WPBakery Page builder. I only updated to 1.9.0 and then some images weren’t loading. Otherwise nothing else had changed on the site.
I uploaded the beta files for testing again, but it created a duplicate of the plugin and a fatal error. Removed them and tried again. However the settings reset and it no longer loads the images from Cloudflare. I’ll remove them from Cloudflare and have them offload again with the beta plugin. I’ll let you know if anything changes afterward.Thanks,
TobyForum: Plugins
In reply to: [Offload, AI & Optimize with Cloudflare Images] 1.9.0 Not loading all imagesHi @vanyukov,
This version appears to still have the same issue. Tried with
Disable WordPress Image Sizes
disabled/enabled. I’ve rolled it back to 1.8.0 for now.Thanks,
TobyForum: Plugins
In reply to: [Offload, AI & Optimize with Cloudflare Images] 1.9.0 Not loading all imagesForum: Plugins
In reply to: [Offload, AI & Optimize with Cloudflare Images] 1.9.0 Not loading all imagesWith that setting disabled on 1.9.0 the images are broken. 1.8.0 with that setting enabled or disabled the images load without issue. I also regenerated thumbnails for all the images in case that was required.
Forum: Plugins
In reply to: [Offload, AI & Optimize with Cloudflare Images] 1.9.0 Not loading all imagesAuto Offload – Enabled
Custom Domain – https://www.cars-n-credit.com
Keep Media Structure – Enabled
Parse Page – Auto Resize on frontend
Disable WordPress Image Sizes – EnabledForum: Plugins
In reply to: [Offload, AI & Optimize with Cloudflare Images] 1.9.0 Not loading all imagesIt’s currently downgraded to version 1.8.0. I’ll temporarily upgrade it to 1.9.0. let me know when you’re done checking it out so I can downgrade the plugin again.
Thanks
Forum: Plugins
In reply to: [Additional Custom Emails for WooCommerce] Attachment ErrorHi @algoritmika,
This latest release appears to have resolved the error. Thanks for the quick resolution.
@haseeb0001 Thank you, that appears to resolve the issues. Appreciate the help.
Thanks the CC field appears to be working as expected now with the beta.
We noticed one other thing since the switch from the Sendgrid sdk. If there are multiple addresses in the TO field it send emails individually, one for each address. It use to send an email with all of them at once. Besides the fact that it will use up more monthly emails, some plugins don’t offer CC fields so this can cause some issues for reply all.
Thanks,
Toby
Forum: Plugins
In reply to: [Modern Events Calendar Lite] Monthly Shortcode – Simple Style – Next StallHi @webnus,
Thanks for checking we had another site with MEC on it running on the same server without issues. I put some more thought and noticed some diamond question mark symbols in an events description except. I’m guessing whoever added the event copied text from something like Word and carried over extra format data that WordPress didn’t sanitize.
Thanks,
TobyQuick hack fix:
recent-posts-widget-extended/includes/form.php – Line 96 get_available_post_statuses() undefined function <– Liar!! It exists in /wp-admin/includes/post.php but apparently Avada must have some sketchy code in this last update.
I pulled out the contents of the function since it’s just there to pretty up another core wordpress function. That’s what fashion gets you I guess? ??
Current:
<?php foreach ( get_available_post_statuses() as $status_value => $status_label ) { ?>Hack:
<?php foreach ( array_keys( get_object_vars( wp_count_posts( ‘post’ ))) as $status_value => $status_label ) { ?>Good Luck Folks!