thisisbbc
Forum Replies Created
-
Forum: Plugins
In reply to: [Admin Menu Editor] Issue with autoloaded dataHey there,
Thanks for the response.
To be honest we’re pretty much only using your plugin to re-order the menus in admin, we don’t use any complex role permissions, custom colors, etc. We inject custom CSS in admin via our child-theme. Is it still expected under those conditions?
If we can safely disable autoload I’ll do that. I’d be curious to test the compression option but right now I can’t spend too much time on this.
Thanks again for your help and detailed reply!
All best,
BForum: Plugins
In reply to: [Plugin Organizer] Errors with latest WP version@pratham2003 thanks for your input. I meant that WPEngine did add the HTTP_HOST reference but apparently it did not fix the issue.
I assumed this was done in wp-config but it’s probably at the server level. To be honest I’m not sure, we were doing some verification and this came to our attention.
Forum: Plugins
In reply to: [Meta for WooCommerce] Few issues flagged by FacebookHey Julie,
Thanks for the follow-up.
I submitted a ticket directly on your website.
Waiting for your feedback!
All best,
BForum: Plugins
In reply to: [Meta for WooCommerce] Few issues flagged by FacebookHey Julie,
Thanks for the quick reply.
Correct, the sync is not working and that’s what I understand from the error Facebook is displaying. I have checked with WPEngine as well but they don’t see anything on their end that could cause this.
We are using WP 5.4.2, WC 4.2.0, FB4WC 1.11.4.
Regarding the images, we have not changed any of the settings at the product level. Here’s the configuration and screenshot of a certain product with this problem:
https://ibb.co/c1KZrWF
https://ibb.co/SXhqqH4
https://ibb.co/mFmcQj9Waiting for your feedback!
Thanks
Forum: Plugins
In reply to: [Meta for WooCommerce] Few issues flagged by FacebookAdding to the previous comment… Not only are pictures blurry, sometime the color is really off! Like they are desaturated and pale in color. Not sure what happened but these aren’t even picture we have hosted so it looks like there’s a brutal compression.
Hope we can fix this as this make really ugly pictures when browsed in the products list.
Forum: Plugins
In reply to: [Meta for WooCommerce] Few issues flagged by FacebookAlso another issue, the thumbnail images in the Facebook Page Shop are not HD.
When you click on the product, the main featured image is the full HD picture, but I’m not sure which image the Facebook Shop uses for the products thumbnail but they are blurry.
Any way to fix this?
Lazy load was the culprit!
I followed your instructions and excluded the page, works like a charm, thanks a bunch 😀
Have a wonderful day ahead 🙂
Forum: Plugins
In reply to: [Plugin Organizer] Incompatible with WooCommerce ShipstationHey Jeff,
Did some further tests…
It looks like this issue is related to the option “Ignore URL Arguments”.
When I turned this option to “OFF”, Shipstation started to pull orders with a custom status.
As I said previously, there are no rules, filters or anything that affect the WC Shipstation Integration, WC Order Status Manager or WooCommerce plugins.
Waiting for your feedback.
@foomagoo can you please add the rule priority list to the plugin description?
I often come back here to find this information and it’s a bit cumbersome to scavenge through the support threads for an answer.
I have a page override with the “Affect Children” option checked.
All children pages do not have any override. The only rule affecting those pages would be the Post Type rules for Pages.
Currently it looks like the Post Type rule takes precedence over a Post Override + Affect Children.
How can I make sure that the post override for children is triggered? (Let me know if you prefer that I open a new thread).
Thanks!
Forum: Plugins
In reply to: [Regenerate Thumbnails] Regenerate single thumbnail doesn’t workHey @cgastrell,
Thanks for the follow-up.
After digging some more I found that the culprit was another plugin we use, Plugin Organizer.
We sometime disable plugins globally when they are only needed on the back-end. This has the negative effect of causing issues with ajax requests, which is probably what happened here.
Instead of disabling the plugin globally I disabled it on all Posts, Pages and other CPTs.
Everything now works 😉
Thank you!
Forum: Plugins
In reply to: [TinyPNG - JPEG, PNG & WebP image compression] Compress original imageGotcha!
So when we optimize the original image, the multiple sizes created by WordPress are actually created before TinyPNG replaces the original with the compressed version, correct?
Forum: Plugins
In reply to: [TinyPNG - JPEG, PNG & WebP image compression] Compress original imageHey there,
Thank you for the quick reply.
You said that the quality of resized images would be less as we are resizing an already compressed image. Does that mean that resized images are optimized twice if the original image is compressed?
WP Upload -> TinyPNG Compress Original Image -> WP Resize -> TinyPNG Compress Resized Image
… does that sound about right?
If WP Resize happens after TinyPNG has compressed the original image I believe we should benefit from most of the optimization, although I understand what you said and I’ll have to run some tests to confirm.
@komal-maru @antonioriveras btw I added a condition to check if the price was actually different so that you don’t get the same price displayed twice.
This ensure that a discount is available to display a strikethrough price:
`<td class=”product-item-price”>
<?php
$pr_ori = wc_price( $product->get_price() );
$pr_dis = wcdn_get_formatted_item_price( $order, $item );
if($pr_ori != $pr_dis) : ?>
<span style=”text-decoration: line-through;”><?php echo $pr_ori; ?></span><br>
<?php endif; ?>
<span><?php echo $pr_dis; ?></span>
</td>`@komal-maru thank you very much for the snippet, worked like a charm! Just had the time to test it now.
@antonioriveras this is exactly what this solution does. The file “print-content.php” is located in “/woocommerce-delivery-notes/templates/print-order/”. If you can’t find this file here you might want to re-download the plugin.
Forum: Plugins
In reply to: [Plugin Organizer] Stripe can’t communicate over SSL with POGot it! The plugin search function is pretty useful. I was certain I had re-activated Stripe on the home page (although it should not really be needed) but I noticed it was deactivated.
So I enabled it and it works now. This is a bit weird as the option to affect children page (which could’ve affect ajax calls) was not checked.
Not sure why this happen but at least it’s fixed!
Thank you