Thank you for you reply, we made it functional
Thank you for you reply, we made it functional
And I found the solution.
I had imported a template “Minimal Fashion” https://xstore.8theme.com/elementor/demos/minimal-fashion/
I just delete it an all is fine
Hi Luca, thank you for your answer, unfortunately from my hoster side there is nothing to do as they said to me. They do not see anything wrong.
Yesterday I was troubleshooting by deactivating and activating plugins so I found that when I activate both xstore core and elementor the problem appears, when I leave on of two the problem disappears.
I also downgraded the core plugin also the theme and woocommerce but no luck
Thank you for your reply, unfortunately my host is VPS with command line and you have to create an ssh key for you to have access, so I send you all the logs I have from my server to see them
I contact hoster and there is nothing there to do or see, can you please send me an older version of the plugin so to test it? Thank you
Hi there I still have a problem, now when I activate the core plugin the front end gets a 502 bad gateway error, when I deactivate all is fine
Here is a temporary login
Thank you Rose Tyler indeed the warnings are gone, so I keep the php at 8.1 for now right?
Done
Hi Here is the temporary login, also I have enabled the debug log and display
This 500 errors are the result of the incompatibility between the theme and the woocommerce plugin, I have tried several times to replicate the issue of the 500 errors but there was no such error to my side. Only when I try to open elementor with the theme and the woocommerce enabled the elementor does not load.
Hello and thank you for your answer, it seems like the combination of the theme and the woocommerce causes the problem, What I have done is to deactivate all the plugins and left only elementor managewp xstore core and woocommerce, when I deactivate woocommerce elementor is loading properly, then I activated again woocommerce and elementor was not loading, then I activated the 2024 theme and elementor was loading properly. You can test it also, I also have enabled the debug log and debug display if that helps you. Thank you
Also please procced to make any changes or deactivations you need, I have already backup the website for this
As I already wrote you the procedure of deactivating plugins was done, nothing was fixed, the only think that was working is when I activated the default theme 2024 of wordpress
FTP Access will be difficult due to VPS Server, please create a SSH Key and send it to me to give you access
Here are some instructions
https://ploi.io/documentation/ssh
Thank you for your help, I also tried to run it with php vesion 8.0 but still the same from my side, also I have the latest version of the theme and the core plugin, but you can check it out also from your side, you have still the login link
Also the website is not on cloudflare or having any caching from server or plugin
Hi again it seems that was a problem of php version I downgraded to 7.4 and works fine, the strange thing is that it’s working only in this version not even on 8.0, and that was from your latest theme update, I believe that you should go with at least 8.0 combability, thank you for your help
Hi and thank you for your response,
I followed all your instructions but there was no luck it still doing the same
please you can login vis this link
check the private area
Thank you for your reply, I followed the steps and deactivated the wp rocket plugin among with the Refresh Cart Fragments Cache plugin and also went on theme settings>speed optimization and the Always Load “Wc-Cart-Fragments” was already activated so I made no moves there. But it seems the problem not resolved and you can check it also from your side with these settings that I mentioned.
Thank you
Never mind, the only widget that I use is the form of elementor so I will find something else to work with, thank you for your help
Yes Indeed I deactivate elementor pro and all is good now, is there a way to activate it and the mini cart to work?
So for explanation I have an attribute called delivery and has 2 terms inside, Greece and Only Kalamata, every product has 1 terms of these 2, so I want to display the attribute value on the products archive (shop, category etc) before the title. I have used this code but it doesn’t work
add_action( ‘woocommerce_shop_loop_item_title’, ‘ecommercehints_show_product_attributes_on_arhive_loop_item’, 1, 0 );
function ecommercehints_show_product_attributes_on_arhive_loop_item() {
global $product;
$product = wc_get_product( get_the_id() );
$product_attributes = $product->get_attributes();
$color_id = $product_attributes[‘pa_delivery’][‘options’][‘0’]; // returns the ID of the term. You will need to change ‘pa_color’ to your taxonomy attribute ID.
$color_name = get_term( $color_id )->name;
$class= $color_id == 228 ? “greekcolor” : “deliverypa”;
echo ‘‘ . $color_name . ‘‘;
};