nemovich
Forum Replies Created
-
Forum: Plugins
In reply to: [Preload LCP Image] Works on desktop but not mobileHi Rhys, I fixed it by pasting the image url instead of the upload button on desktop only and leaving the mobile empty. Thank you!
So after much testing and plugin conflict detection, I narrowed it down to lscache (5.7.0.1) and Woocommerce (8.2.1) both on latest version. If I disable one of them, the website becomes snappy.
I disabled object cache (memcached) but it had very little effect compared to disabling one of the two plugins.One more issue, when I activate the lscache plugin my website becomes slower when logged in as admin (backend and front). If I deactivate the plugin the website becomes much faster. all of this while logged in as admin.
What could be the issue ?
Thank you for your helpThat did it ! now starting to see green hits and the cache is working properly, although the crawling is slow (understandable) but working nonetheless.
Thank you.
I just talk to hosting support and the IP address
45.xx.xxx.109
is correct.The issue is I’m using the preview domain they gave me to setup my website and these domains have CDN enabled by default and cannot be disabled or pointed elsewhere. That’s why you see a different IP every time you do a DNS lookup.
They told me that this issue will be fixed when I put my actual domain.
So my question is if I remove the IP in plugin settings, will it be able to crawl normally ?Thanks
Yes, it’ll be the same. No need to complicate things.
Thank you, that’s very helpful. I will try to find a way to implement it and report back if successful.
Thank you for your reply.
Yes I know that I can do that with other form plugins but none of them offers VAT validation which is a deal breaker for me. I searched for hours but I couldn’t find one with VIES validation. So I’m kinda stuck right now ??
Forum: Plugins
In reply to: [WP Search with Algolia] WPML integrationForum: Plugins
In reply to: [WP Search with Algolia] WPML integrationI made sure I followed the instructions correctly and I clicked on “push setting” and “Re-index” multiple times in the plugin’s settings but it didn’t work. I sent an email to Algolia support but I haven’t heard back from them.
I checked the other links for label translation but I need to get it to work first.
Unfortunately I already switched to another plugin that worked for me.
Thank you very much for your time.
Forum: Plugins
In reply to: [WooCommerce] Adding custom fields to customer noteI got help from another samaritan, here’s the code :
add_action( 'woocommerce_new_order', 'add_engraving_notes' ); function add_engraving_notes( $order_id ) { //because I already have the ID from the hook I am using. $order = wc_get_order( $order_id ); // The text for the note $delivery_date = get_post_meta( $order_id, 'delivery_date', true ); $time_slot_from = get_post_meta( $order_id, 'time_slot_from', true ); $time_slot_to = get_post_meta( $order_id, 'time_slot_to', true ); $note = "Deliver Date:$delivery_date Time Slot From: $time_slot_from Time Slot To: $time_slot_to"; // Add the note $order->add_order_note( $note ); // Save the data $order->save(); }
Perfect ! Thanks a lot for your help
So I figured it out and it’s not WPML or SportsPress, it was…me
I setup WPML to copy almost everything to the second language AND I bulk duplicated clubs and games with translation management. this last one was the problem as it created “double duplicates” and WPML didn’t know which directive to follow!
I deleted duplicated content and it fixed everything.
One last question : how to mark a game as canceled or postponed ?
Hey @corrinarusso
Have you ever translated SportsPress with WPML ?
I just can’t figure out why league tables are not in sync between the two languages and somehow fixtures/results become inverted in second language ( home/away > away/home )
Thanks for your help
It’s a “fake” work-around because I have to manually create hundreds of games for 4 teams AND update them manually in both languages. No thanks ??
but using WPML, I just bulk duplicate clubs and games and tell the plugin to sync results for the second language which apparently is not working in my case.
I hope someone from Themeboy will be able to help me.