robaczek1
Forum Replies Created
-
Forum: Plugins
In reply to: [NSFW] [Leaflet Map] Map doesn’t show on certain addressesI found and updated the relevant piece of code in class.geocoder.php and cleared the cache as suggested, and it now works just as it used to, thanks for pointing out the solution!
- This reply was modified 2 months, 3 weeks ago by robaczek1.
Thank you for your answer
Forum: Plugins
In reply to: [Theme My Login] No email is sent when lost email form is usedThank you all for reading and for sending all your thoughts my way; I’m happy to say they all helped (since I couldn’t count on the support to assist in any way…) For those who may struggle with a similar issue, I used the built-in solution provided by WooCommerce. I changed the URL within the plugin options for resetting passwords to use the WooCommerce one, and voila! Everything is working as it is supposed to. The login page now features a link to an operational page that sends the email without fail each and every time. The link provides a token, and again, everything works each time, so the problem is solved. I did add the URLs to the whitelist in the caching plugin to make sure they are never cached, and so far, it’s working fine. I hope someone will find that helpful, as I still don’t know why the plugin struggles with sending emails, that otherwise WooCommerce has no problems sending, but whatever.
- This reply was modified 1 year, 5 months ago by robaczek1.
Forum: Plugins
In reply to: [WooCommerce] How to remove items from the mini cart seen on checkout pageThank you for your reply. Actually I found a very simple workaround, by replacing the block template “checkout” with a Legacy Order Confirmation Template. It added the ability to remove items from the Order Summary I was after, so my problem is resolved. If anyone is interested, here are the steps: https://woocommerce.com/document/woocommerce-store-editing/customizing-order-confirmation-page/#using-the-legacy-order-confirmation-template
The only difference is, instead of looking for “Order Confirmation Block” to replace the block template “Checkout”, look for “Classic Checkout” instead. Sorted 😉Forum: Plugins
In reply to: [WPC Name Your Price for WooCommerce] How to amend the priceThank you for clarifying.
Forum: Plugins
In reply to: [WooCommerce] How to remove items from the mini cart seen on checkout pageThank you for getting back to me. I didn’t mark this thread as NSFW, so I would prefer not to share the URL here. Any other way you can guide me?
Forum: Plugins
In reply to: [WPC Name Your Price for WooCommerce] how to switch off Rounding featureWell, at least it doesn’t affect all users, only affects multi-site installations and installations where unfiltered_html has been disabled.
Forum: Plugins
In reply to: [WebP Express] Does your plugin works for background url images in a css filePretty sure the plugin doesn’t change the css entries, but I may be mistaken..
Forum: Plugins
In reply to: [WebP Express] Error not compatible with php 8.xI assume this is from the code added by Webp Express? The error messages reference functions.php, so could you paste the exact code they are referencing to confirm it comes from webp express?
As I mentioned before, instead of turning off Webp Express try turning off Jetpack instead and see how things look then.
In situations like this best to switch off plugins one at a time and see if there is a difference. From the code I can see this refers to the section starting with this div:
class=”tiled-gallery__gallery” data-jetpack-block-initialized=”true”
And from the code it seems like Webp express didn’t actually make any changes to this part of the code. For starters see if you are using this option at the bottom of the settings page:
The complete page (using output buffering)
If not, try it and see if there is a difference. If not, perhaps this gallery is added after webp had a chance to go over the source of the page and make replacements? Perhaps Jetpack is messing around here as well? Try switching it off and see if there is a difference and if there is, then it is not a Webp Express issue, you need to either try chasing the other developers or decide what is more important, using Jetpack or having less errors.
Forum: Plugins
In reply to: [WebP Express] Image replacement does not work when WP Rocket is enabledyou are probably using:
- Replace image URLs?
- Only do the replacements in webp enabled browsers
Try instead using
- Replace <img> tags with <picture> tags, adding the webp to srcset.?
- Dynamically load picturefill.js on older browsers
This is the only option you can use safely with caching plugins as per info provided next to the 1st option you are probably using: Does not work with page caching – unless you are using the Cache Enabler plugin
Hope that helps.
PS
If after activating the <picture> option your website looks broken, than I’m afraid it needs your developer attention, as again, as per info provided: Beware that this structural change may break styling!
So if that’s the case, your developer will need to resolve this issue as the current styling is not compatible with the change you just activated. Alternatively you can choose to pay for a CDN that will deliver webp images without any change to the page structure. It can cost as little as $3 per 100GB per month so its dirt cheap.
- This reply was modified 2 years, 9 months ago by robaczek1.
Forum: Plugins
In reply to: [WebP Express] Repeating logoActually the wrong code is present in all resolutions. Hard to check what might be causing this issue when Webp Express is Active and without access to your backend, I cannot switch it off to compare. So instead of using:
- Replace <img> tags with <picture> tags, adding the webp to srcset.?
- Dynamically load picturefill.js on older browsers?
Try selecting the next option instead:
- Replace image URLs?
- Only do the replacements in webp enabled browsers
And experiment with
- Use content filtering hooks (the_content, the_excerpt, etc)
- The complete page (using output buffering)
To see which option works for you. This should hopefully help resolve the issue. Also, no way to know if you are using any caching mechanism and what options might be active there but if you do make sure at the very top of the settings page of Webp Express you use
Operation mode: CDN Friendly
Hopefully that helps!
Forum: Plugins
In reply to: [WebP Express] 50% IMAGES ARE GONE IN MY WEBSITEThis error has nothing to do with the plugin, this error means your server doesn’t support a solution that is required to display either webp images or as a fall back original jpg images on browsers that do not support webp format. If this solution is not supported and say you also use caching on your website, it means that after clearing the cache, the first visitor to your site will initiate caching based on his browser so if it supported webp, the cached version will only server webp images to ALL visitors from that point. And even if you do not use caching, the website won’t be able to switch on the fly between served versions of the file and users with browsers not supporting webp might still end up being served such images resulting in missing images on the page. This really is something you have to take up with your hosting provider, Webp Express won’t work correctly without it, simple as that.