Home Forums Search Search Results for 'empty cart issue'

Viewing 30 results - 91 through 120 (of 123 total)
  • Author
    Search Results
  • estaguilars
    Participant
    #488047

    Hi!
    This is a dev site for testing, as you can see in the next video, the Cart Widget in the Cart Page works with the storefront theme, but with Woodmart Theme doesn’t:
    https://www.loom.com/share/8e124a9d3c1b4813801056965126ca59?sid=4842cd60-d5a7-4a11-ba00-84303cf542f4

    Additionally, I found another issue, when the last item is removed, the cart doesn’t show the expected empty message, but show a blank page (you can see it too in the video)

    Thanks for your support

    Attachments:
    You must be logged in to view attached files.
    dreaminvesthome
    Participant
    #487725

    hello, I would please ask your help for the following issues:

    1. The issue is that the tax is calculated and shown 2 times …. please see attached screenshot. This is a very serious issue and don’t know how to solve it

    2. Where to disable the right sidebar on the checkout and cart page. I have a custom template but not able to disable the right sidebar even if the widgets are empty
    thank you

    Attachments:
    You must be logged in to view attached files.
    metuza
    Participant
    #481913

    Hello,

    If you add to cart these 2 products:
    https://www.arctic-fritid.no/produkt/videreforedling/marinader-og-urter/seilaksfarge-10g/
    https://www.arctic-fritid.no/produkt/videreforedling/kaldroyking/roykeklosser-av-or-matroyk/

    Then you should find that the woodmart shipping progressbar dissapear and a message appear with text “Frakt tilkommer da ordren mÃ¥ leveres fra lokal- og sekundærlager” in english (Shipping is added as the order must be delivered from local and secondary warehouses).

    But the above does no longer happend.

    Also by empty cart again and adding 3 pcs of this product:
    https://www.arctic-fritid.no/produkt/friluftsliv/telt-og-lavvo/telt/coleman-darwin-3-telt/

    Then you should find that the woodmart shipping progressbar dissapear and a message appear with text “Frakt tilkommer da din nÃ¥værende ordre har en totalvekt pÃ¥ over 10 kg.” in english (Shipping is added as your current order has a total weight of more than 10 kg).

    But also this happend anymore.

    I will guess that it is everything betwwen 2-4 months since last time i tested the above and all working ok. Wierd is that it now has dissapeared on 3 of my sites.

    I have tested today with all plugins deactivated and using storefront theme but with no luck, issue is the same. It seems like the filter is not active as i can force in fatal errors in code which normally would have caused some issues with loading in cart page, but whatever i do no problems in cart.

    Message placeholder is in place and working – div.aws-free-shipping

    This is the code i have been using for 4-5 years:

    // Add shipping messages to cart page

    function afas_woocommerce_shipping_fragment( $fragments ) {
    
         $postkasse = false;
         $pakke_hentested = false;
         $unstocked = false;
         $price = false;
         $extra = false;
    
         foreach( WC()->cart->get_cart_contents() as $key => $values ):
    
    	$product = $values[ 'data' ];
    
    	if ( $values[ 'data' ]->get_shipping_class_id() == 716 ) // Pakke i postkassen
    		$postkasse = true;
    
    	if ( $values[ 'data' ]->get_shipping_class_id() == 717 ) // Pakke til hentested
    		$pakke_hentested = true;
    
    	if ( $values[ 'data' ]->get_shipping_class_id() == 715 ) { // Unstocked
    		$unstocked = true;
    	} else {
    		$quantity = $values[ 'quantity' ];
    		$item_price = wc_get_price_including_tax( $product );
    		$price += ($item_price * $quantity);
    	}
    
         endforeach;
    
            if ( $unstocked && ( $postkasse || $pakke_hentested ) ) $extra = true;
    
    	ob_start();
    
    	$cart_total = is_object( WC()->cart ) ? WC()->cart->subtotal : '';
    	$cart_total_weight = is_object( WC()->cart ) ? WC()->cart->get_cart_contents_weight() : '';
    
    	if ( $extra || ( $cart_total_weight >= 10 && $cart_total_weight < 99 && $cart_total ) ) {
    
    	afas_shipping_popup( $cart_total_weight, $extra, $price );
    
    	} else if ( $cart_total_weight >= 99 ) {
    
    	afas_shipping_popup( $cart_total_weight, $extra, $price );
    
    	} else {
    
    	afas_shipping_popup_placeholder();
    
    	}
    
    	$content = ob_get_clean();
    
    	$fragments['div.aws-free-shipping'] = $content;
    	return $fragments;
    
    }
    add_filter( 'woocommerce_add_to_cart_fragments', 'afas_woocommerce_shipping_fragment' );
    
    function afas_shipping_popup( $cart_total_weight, $extra, $price ) {
    
    	if ( $extra && $price < 1499 ) {
    	echo '<style>.wd-free-progress-bar {display:none;visibility:hidden;}</style>';
    	echo wc_print_notice( 'Frakt tilkommer da ordren må leveres fra lokal- og sekundærlager.<br/><small style="margin-left: 0;">Alle Matrøyk-produkter sendes direkte fra fabrikken på Nøtterøy.</small>', 'notice' );
    	}
    	
    	if ( $cart_total_weight >= 10 && $cart_total_weight <= 99 ) {
    	echo '<style>.wd-free-progress-bar {display:none;visibility:hidden;}</style>';
    	echo wc_print_notice( 'Frakt tilkommer da din nåværende ordre har en totalvekt på over 10 kg.', 'notice' );
    	} else if ( $cart_total_weight > 99 ) {
    	echo '<style>.wd-free-progress-bar {display:none;visibility:hidden;}</style>';
    	echo wc_print_notice( 'Vi kan dessverre ikke levere din ordre da vi har en vektbegrensning på ca. 100 kg.', 'notice' );
    	}
    
    }
    
    function afas_shipping_popup_placeholder() {
    
    	echo '<div class="aws-free-shipping"></div>';
    
    }
    add_action( 'woocommerce_before_cart_table', 'afas_shipping_popup_placeholder', 10 );

    I have also tried with priority on the filter from -1 to 999 but no luck. And also simplified the above code to not use any conditionals / values etc. just hardcoded message, but seems to be totally dead.

    Code is added to a included file in functions.php in child theme. Also tried to move it into woodmart theme functions.php

    So any idea on what could be wrong has been great 🙂

    I will activate a staging site for further testing.

    Brgds
    Rune

    #481860

    Hello,

    The empty cart shows WoodMart design now: https://gyazo.com/4ebc979dd5db2c88776a99fabfa2b385

    As for other style issues, ]deactivate all the plugins except these ones:

    Slider Revolution
    WPBakery Page Builder or Elementor
    Woodmart Core
    Contact Form 7
    MailChimp for WordPress
    WooCommerce
    Safe SVG

    If the problem has gone, activate the plugins one by one, checking the issue to detect which one causes the problem.

    Best Regards

    Serg Sokhatskyi
    Keymaster
    #470706

    Hi,

    1. Quantity buttons missing styles. Optimize CSS delivery option in WP Rocket settings (https://prnt.sc/MVogBFFUwEwK) is still active on your site. To fix the issue with missing styles of quantity buttons, you need to disable this option in WP Rocket settings. The following option will cause issues in styles that are loading after the page is fully loaded, such as popup content and content that is added after AJAX and quantity buttons in product quick view is one of them. WP Rocket has its own alert that shows that the following options may cause style issues (https://prnt.sc/oCf8opWkf9zE).

    2. Quantity buttons, broken styles. To fix the issue you need to remove or leave empty ALL Elementor global style settings for forms (https://prnt.sc/CqxM8n0ul26O) and buttons (https://prnt.sc/oFRWEHCrFLHg) which was suggested in previous reply. After checking your site, we still can see that your buttons (screenshot https://prnt.sc/8b2hcZCedCbt) and forms (screenshot https://prnt.sc/DnVsmaHFF1Y-) are affected by Elementor global site settings which need to be disabled.

    3. Mini-cart dropdown layout. By default, our theme mini-cart looks like it showed in the following screenshot (https://prnt.sc/Spe3Dejs4sHz). Here is the link to the following demo page (https://woodmart.xtemos.com/demo-fashion/demo/fashion/). A third-party plugin that is changing the mini-cart layout was not disabled. To restore the default mini-cart layout, the following plugin needs to be disabled, since its button styles can’t be changed via our theme setting.

    Before May 23 you were in contacting support staff, after that, you are contacting with theme developer. I am responsible for theme frontend styles. To fix the following issues, you need to do each changes that was suggested by us, in another case unfortunately we can’t help you because it doesn’t have other solutions. As an alternative, we can do the following changes for you and provide a list of changes that were done on your site, but for it, we need to have permission to do these changes. Also, the admin access that you provided earlier is not working anymore (https://prnt.sc/45I03vmuL1Bs) and to make changes on your site we need the new one.

    Kind Regards

    Serg Sokhatskyi
    Keymaster
    #469825

    Hi,

    1. Quantity buttons missing styles. To fix the issue with missing styles of quantity buttons, you need to disable Optimize CSS delivery option in WP Rocket settings (https://prnt.sc/MVogBFFUwEwK).

    2. Quantity buttons and popup close button broken styles. To fix the issue you need to remove or leave empty ALL Elementor global style settings for forms (https://prnt.sc/CqxM8n0ul26O) and buttons (https://prnt.sc/oFRWEHCrFLHg) which was suggested in previous reply.

    3. Mini-cart dropdown layout. By default, our theme mini-cart looks like it showed in the following screenshot (https://prnt.sc/Spe3Dejs4sHz). Here is the link to the following demo page (https://woodmart.xtemos.com/demo-fashion/demo/fashion/). Mini-cart dropdown layout on your site is changed via some third-party plugin, which can’t be affected by our theme setting. To restore the default mini-cart layout, please deactivate all third-party plugins except these ones and check again:

    Slider Revolution
    WPBakery Page Builder or Elementor
    Woodmart Core
    Contact Form 7
    MailChimp for WordPress
    WooCommerce
    Safe SVG

    Make sure you have cleared all your site cache in WP Rocket plugin (https://prnt.sc/XjBtFDGr5EY1) after done following changes.

    Kind Regards

    Thora
    Participant
    #457146

    @juli:

    Elementor says:

    Issue: If a third party theme has a mini cart feature and the Elementor mini cart is disabled, the theme mini cart will show as empty even if it contains products.
    Solution: Rollback to Elementor Pro version 3.11.7 until a fix is released.

    And this version 3.11.7 is the one with the security fix, not 3.12.x, as you can see in the changelog.
    Downgrade is possible in the backend via “Elementor > Tools > Version Control” via second dropdown.

    • This reply was modified 3 years, 4 months ago by Thora.
    robert.rieder
    Participant
    #456163

    Thats what Elementor says …

    Hi Robert,

    Thank you for contacting Elementor Support. I hope you are safe and doing good today.

    I understand you are facing issues with your cart not working and are showing empty, and I am here to help you.

    This happens in rare cases, and in most cases, it is related to some kind of caching. The problem is with how Elementor handles the mini cart Ajax function. This error is encountered when using WP Rocket or any other cache plugin or your server has some kind of cache enabled. I suggest checking with your web hosting about this since they can check error logs to see if something is captured.

    Please be advised as well that this is related to a known bug and a full report has been made already. Our developers are aware of this and are working on it. A full report has been created, but the root cause is still unknown since it rarely happens on certain server configurations or with specific cache plugins.

    What I will do now to help you is to add your vote to the report to make its priority even higher. You can keep an eye out for when this has been addressed in one of the future plugin updates by checking on the changelog of Elementor.​​​

    We are doing our best to have a stable and well-tested product as much as possible. Glitches like this simply happen, and we apologize for this and for any inconvenience you may have because of this.

    Thanks for letting us know about this as it helps us create an even better product in the future.

    Please feel free to recontact us should you have other questions or if you require further assistance.

    Have a safe day ahead and take care.

    BUT: I´ve turned caching off and it still didn´t work, And I´m on Siteground. So should be a common case and more users should have the same problem, I think.

    StefanNL
    Participant
    #455979

    So rolling back elementor pro to an older version fixed my issue with an empty sidebar (cart).

    In reply to: Empty Cart Issue

    tim.meulendijk
    Participant
    #451712

    Hi

    Could you maybe explain to me what could be doing this then. I have almost no plugins installed. And still I have the empty cart issue. Apparently I only have it and I have in every browser. Strange isn’t it. If walk to my computer now I can reproduce this error. So please help me. Can’t you test something with their plugin. Your theme should be woocommerce compatible. This also means it should work together with payment plugins. This is a stupid issue to have and no one wants or can help me. I paid for this theme and want to know how this can be. That one plug-in from a payment developer partner from stripe is not working with your template. What can be interesting when everything else works. With all the plug-ins I work … no issues now
    How is it possible that you cannot reproduce this error. How. I am trying to understand but i cannot. The videos are very clear and I show you everything. You can see I am having this issue. So you know it’s there so why respond every time with I cannot reproduce. Are you also testing this staging site that I have set up? Not the live site right? This one has a different payment plugin that works.

    In reply to: Empty Cart Issue

    tim.meulendijk
    Participant
    #451472

    Hi there,
    I have tested many times now and contacted also developers of payment plugin. They will look into it also. We think it has something to do with their plugin conflicting with the mini-cart. I tested everything. Even without Woodmart Core, Only the theme activated. and still i got the empty cart issue. With a different theme i don’t have this. But they don’t have the mini-cart on the side like your theme has.
    It has to do something with this.
    Kind regards,
    Tim

    In reply to: Empty Cart Issue

    tim.meulendijk
    Participant
    #451227

    HI there,

    I know it works sometimes.
    But for sure the error will pop up after several tries. Try it. At least 10 times. And play with quantities.
    It can not be that i have this issue and you don’t. That cannot be. It’s impossible.
    Because when i try now i 100% for sure… i will have the empty cart issue on the same staging site.
    I can reproduce it if i want i a few minutes.

    Kind regards,

    Tim

    A few times it works, but you need to do it several times in a row.

    In reply to: Empty Cart Issue

    tim.meulendijk
    Participant
    #451076

    Hi there,

    Were you able to reproduce the empty cart issue on your mobile phone or tablet.
    I have tested the staging environment and it still reproduces the error on my end when i try to do it on my iphone 11 pro or tablet ipad pro and very very occassionally on the desktop.

    I tried other payment plugins and with none of them i experience the empty cart issue. But off course the plugin that i want to use has this strange issue.

    So maybe something is conflicting with this payment plugin and the theme.

    Kind regards,

    Tim

    In reply to: Empty Cart Issue

    tim.meulendijk
    Participant
    #449882

    I have tested 3 other payment plugins and they work and don’t have the empty cart issue.
    But the Payment plugin i want has every time the empty cart issue. Especially on iphone.
    I especially took the second best hosting.
    CPU 12 cores
    RAM 8 GB
    But this i also not fixing the problem.
    Now i have read on the internet that some hosting companies have special settings for the Eliminate Cart Fragments with Live Cart or something. Is this the issue?
    It is a very strange issue.

    In reply to: Empty Cart Issue

    tim.meulendijk
    Participant
    #449179

    Other people also posted about this issue:

    https://xtemos.com/forums/topic/regarding-empty-cart-after-buy-button-or-add-to-cart/

    I have the same issue.

    In reply to: Empty Cart Issue

    tim.meulendijk
    Participant
    #449175

    I also tested it without the Tiered Pricing plugin and still i got the empty cart issue.

    In reply to: Empty Cart Issue

    tim.meulendijk
    Participant
    #449150

    I am sending you guys a movie that i have sent to PaymentPlugins.com to show them what plugins were on and that with their plugin activated, i sometimes experience empty cart issues on iphone and ipad. And with their plugin deactivated i don’t experience this. But i need their plugin for connecting with Stripe. They also think it maybe has something to do with updateCartFragments and Ajax.

    Its very important for me that we can fix this.

    If customers experience an empty shopping cart they will leave.

    tim.meulendijk
    Participant
    #449136

    Hi there,

    I have bought one more Woodmart theme and i am almost finished setting up the system.

    Only one thing. The payment plugin. Since i installed it, i’m having strange issues with suddenly having an empty cart.

    I am using the Stripe Payment Plugin from PaymentPlugins.com. But i am not sure if it has something to do with them because they don’t have other complaints from other users they say.

    But when i installed it, i sometimes get the empty cart issue. I add a high quantity to the mini-cart, then i click view cart and then suddenly the cart is empty. And it happens sometimes, but when triggered the issue can come back more frequently. In my opinion it happens or get triggered by high round numbers like, 1000, 10000, 25000.
    With low numbers it seems to work almost always. Its frustrating because i myself sometimes try to reproduce the error and it sometimes really takes 10 or more tries.

    Then i thought this must be the Payment Plugin and i tried a different Stripe plugin from Webtoffee and then i didn’t experience the empty cart issue anymore.

    So in my first conclusion it has something to do with the Stripe plugin from PaymentPlugins.com and the Woodmart theme. But maybe there is a small conflict that interferes with the Ajax functionality from Woodmart with the Plugin from PaymentPlugins.com. I also contacted them regarding this issue because i really need it to be fixed.

    I really want to use the Stripe plugin from PaymentPlugins.com because its a better plugin.

    Then i found an article on the internet and i think this could be related.

    https://www.webnots.com/fix-slow-page-loading-with-woocommerce-wc-ajaxget_refreshed_fragments/

    When i read this article i remembered the first issue i had with the Woodmart theme about the 419 error console message. At some point during this topic i experienced a different console messages regarding:

    updateCartFragmentsFix.js?ver=7.1.3:38 Uncaught Fragment expired

    And then i told you guys about this issue and at some point you guys updated the theme and it was gone.

    So can you maybe help me out and please tell me how it can happen that in combination with this Payment plugin the cart gets emptied sometimes. Does it have something to do with this: updateCartFragmentsFix.js and when it takes to long to load that the data gets lost.

    OOO.. this empty cart issue happens only on my iphone and ipad… I never experienced it on my imac pro. What is also pretty strange.

    Kind regards,

    Tim

    ahsanahmedkhann
    Participant
    #413295

    Hi

    Mini cart finally working fine on storefront, no empty cart issues. But issue on woodmart is still unresolved. Kindly check and let me know any permanent or temporary fix for this.

    Thanks.

    #382213

    P.S Ok.

    Now please check this bug on mobile. If you add a Product in Cart and open the Cart, The Cart is opened not in page but on the Side. And it is empty

    Please make the full backup of your site and check the issue on the Storefront theme to detect if our theme causes the problem. Storefront is a free theme developed by WooСommerce.

    If you see the same on the Storefront, it means that one of the third parties plugins cause the problem.

    Best Regards

    kushlv
    Participant
    #357799

    Yes, no problem.

    Here’s how to reproduce the problem.

    1. Go to our website as a normal user, do not try to reproduce this issue while you are logged in as admin. It’s only happening to normal website visitors.
    2. Add as many products as you wish to the “Cart”.
    3. Now navigate through website and look closely to “Cart” at the header. Go to different categories on header navigation and back to main page. In some pages the “Cart” should show that it’s empty and is some that it’s with products added.
    4. Now click on “Cart” and empty it. Navigate again through the header navigation and you should see, that in some cases the “Cart” at the header is empty while in other it’s with products.

    When you disable the Breeze cache plugin, everything works fine. And it’s not the Breeze plugins fault, because I tried different caching plugins and every single one of them does the same thing – brakes the “Cart” at the header navigation.

    Thank you!

    harshwe
    Participant
    #342768

    Hello Luke,

    9.a,b. OK. Thank you. But wondering, why this is still not working correctly on our site. Anyways, Will try to use Yoast, later-on.
    (Probably you might have clicked and tested on those products earlier also, once by setting the Products Nav (prev-next) to OFF. Because, I found that after setting Prod Nav back to ON, and while sharing again, the preview image on those same products, then gets fetched correctly)

    Yes, I understand, that the issue should definitely not with the Theme, as your own Demo (on Cloudways), is already showing image-preview correctly while sharing, without even having Yoast activated. That’s why looking to find out the possibility, as why it is not working on our site, and for what reason. And how can we overcome this situation.

    Just wanted to know, does that mean, that the preview image will also work correctly, if we set the Breadcrumbs Navigation Position to “Below Header”
    Or else, it will only work, if we set it to “Products Summary” or Default only.

    I think one of the ticket might have got skipped somehow. Can you please check on this one –
    https://bit.ly/3qywNyE

    Having this direct post link- 342382

    Regards

    • This reply was modified 4 years, 7 months ago by harshwe.
    • This reply was modified 4 years, 7 months ago by harshwe.
    • This reply was modified 4 years, 7 months ago by harshwe.
    • This reply was modified 4 years, 7 months ago by harshwe.
    edaphon
    Participant
    #330344

    Hi

    Thanks for your reply.
    I changed it and not it has disappeared. That is what I want.
    My issue is that if I empty the cart as a customer in the webshop, there is a button “back to shop”. This button leeds to the functional shop page, but the button should go to the “edapro.ch/shop” page. I do not know how to change the button link. This is why I changed the functional page to “edapro.ch/shop”.

    So at the moment either there is the shop product grid at “edapro.ch/shop” or the button with the wrong link.
    What can I do now?

    metuza
    Participant
    #278636

    Congratulations 🙂 I couldnt wait for the next update so i just moved in the old version image files for single products main image and thumbnails, so i got a fix for the ugly gallery images. Then i updated my live site with the v6+.

    Emptied cache, transients, transient cache, optimized DB and also browser cache in my 3 test browsers. Everything was working ok except for the header banner issue, grid / list view and the contact form (using contact form 7) which sometimes does not act as a popup, it is open in page so i must refresh page to get it working ok. Had the same issue in staging site, seems like some JS does not work 100%.

    Anyway, I activated WP Rocket cache and Sucuri CDN and once again emptied ALL cache before preloading it again.

    Then i have found that header banner does not open/show up, the minicart icon in header does not work 100%, does not show the counter and it has wrong text color. Also contact form 7 popup is open, fully visible in page. So in total it seems like some JS and CSS is not properly loaded.

    So i have to purge cache for actual pages, ie. contact page. Then banner appear and contact form is again working as a normal popup on same page. Then to make minicart icon working ok i have to add items to cart and when i empty cart again after that icon works properly.

    Also i see that after emptied cache i need to preload cache using mobile to make sure the new option for reduce DOM in mobile should work, it then seems like it also reduce dom for desktop so i get 94 score with pagespeed. If i preload cache using desktop then mobile has the same higher number of doms as desktop.

    Anyway, you are in the right direction and webpagetest show all green A, gtmetrix is as usual unstable and has everything between 65 to 95. Google pagespeed is up mostly 20%.

    Brgds
    Rune

    metuza
    Participant
    #277847

    I did find a corrupt db-table causing the add to cart and empty cart not working for guest users. Fixed table so this issue is solved.

    When it comes to 4, 6, 7, 8.1, 10. I am not using any custom CSS. Just added a few yesterday based on font size and the word SØK to the right of search icon.

    So the left margin for LI elements is from woodmart theme. I can not find any theme related css that should set a margin, which should be atleast 15-20px.

    So my install has no customizations nore using a child theme at the moment.

    I am using this opportunity to clean up in all my custom css and functions. And already i see that almost 30% of all my custom css is no longer necessary.

    So personally i think the idea of deprecated css classes is not necessary. Also because there is LOTS of other new CSS so users will still need to study their custom css and make fixes, and clean up unused old css.

    Brgds
    Rune

    Artem Temos
    Keymaster
    #277243

    Hi @nvybvl @itai @msadiq999

    You can download our beta version here https://drive.google.com/file/d/1QuBdBZ8rvUxsXkgmuznbsdqXSj2-D2dn/view?usp=sharing

    And here its changelog

    • ADDED: Elementor templates library with more than 300 ready to use elements
    • ADDED: “White label” options (screenshot)
    • ADDED: Theme options presets (screenshot)
    • ADDED: Portfolio AJAX links
    • PERFORMANCE: CSS generator now works automatically. We have splitted entire CSS and JS into files and load them only where they are needed
    • PERFORMANCE: Separate page for mobile devices option (screenshot)
    • PERFORMANCE: “AJAX Dropdowns” local storage cache
    • PERFORMANCE: Added option to load optimized “Elementor frontend” CSS file (screenshot)
    • PERFORMANCE: Added option to disable “Contact form 7” plugin CSS and JS files (screenshot)
    • PERFORMANCE: Added options to disable Elementor icons and Elementor animations CSS files (screenshot)
    • PERFORMANCE: Optimized Google fonts loading
    • PERFORMANCE: Added “System font stack” to typography select (screenshot)
    • PERFORMANCE: Added “Imagify” plugin compatibility
    • PERFORMANCE: Added options to preload “woodmart-icon.woff” and “woodmart-icon.woff2” fonts (screenshot)
    • ADDED: “Hide empty” option to product “Brands” element
    • ADDED: Option to set a number of days to keep your products marked as “New” after creation (screenshot)
    • ADDED: Translations for product attribute fields (screenshot)
    • ADDED: Option “Init carousel on scroll” for element “AJAX Products tabs” (WPBakery)
    • ADDED: Element “Navigation anchor” for better one page navigation (Elementor)
    • ADDED: Portfolio images size option to theme settings and element (screenshot)
    • ADDED: Option to select page title tag (screenshot)
    • ADDED: “Order by” to product filters element (screenshot)
    • ADDED: “noopener” and “noreferrer” parameter for “rel” attribute to social links
    • ADDED: Compatibility “Yoast SEO” custom page title with our PJAX functionality
    • ADDED: “Thumbnails image width” option to change single product gallery thumbnail images width (screenshot)
    • ADDED: Shop tools option to our “Product element” and shop tools compatibility for “Woocommerce Products” shortcode (screenshot)
    • ADDED: Option to “Logo” element for adding width and height attributes (screenshot)
    • ADDED: Option to increase AJAX variation threshold (screenshot)
    • ADDED: Instagram fake images option (screenshot)
    • ADDED: Categories to “HTML block” post type
    • ADDED: Additional theme styling for the WCFM – WooCommerce Multivendor Marketplace registration, vendor and store listing pages
    • ADDED: Additional theme styling for the Dokan dashboard, vendor and store listing pages
    • ADDED: Translations context for “On” string in blog post date meta
    • ADDED: rel=”nofollow” for links with href=”#”
    • CSS: We have removed a lot of CSS selectors and now we use CSS variables
    • CSS: Most of our CSS classes that started with “woodmart-” now start with “wd-“
    • CSS: Combined action buttons styles (burger, close and filter animated buttons replaced with font icon)
    • CSS: Combined popup styles
    • CSS: Form style classes “.form-style-rounded”, “.form-style-semi-rounded”, “form-border-width-1” removed from body tag
    • CSS: Nanoscroller library replaced with pure CSS scrollbar
    • CSS: Removed unused Photoswipe library styles
    • CSS: Removed unused Magnific popup library styles
    • CSS: Font icon HTML tag <i> changed to <span> due to the accessibility issues
    • CSS: Refactored list styles. <ul> and <ol> list icons and spacing styles now set globally and removed in specific places with html list structure (menus, pagination, widgets, etc.)
    • CSS: Refactored forms style
    • CSS: Refactored page title style
    • CSS: Refactored search form style
    • CSS: Refactored search results style
    • CSS: Refactored all header elements
    • CSS: Refactored all navigations style
    • CSS: Refactored dropdown menu style
    • CSS: Refactored off canvas sidebar
    • CSS: Refactored action button on product hovers.
    • CSS: Polyfill script for css variables IE browsers support
    • FIXED: The problem with the inability to save the number of products on the store page
    • FIXED: Deprecated jQuery functions
    • FIXED: CSS generator file path
    • FIXED: PHP error “Uncaught TypeError: implode()” in “variation-gallery-new.php”
    • FIXED: PHP error “Call to undefined function wp_body_open()”
    • FIXED: Js methods have been redesigned to run only when the user starts to interact with the element for which the script is needed
    • FIXED: Single product brand without image (screenshot)
    • FIXED: Sales label for variation product displaying as individual (screenshot)
    • FIXED: Image gallery element with masonry view in Elementor backend
    • FIXED: Incorrect header if an earlier deleted header is selected in the page settings
    • FIXED: Single product “360 view” images load only when you click on the icon
    • FIXED: WPB Google map element API key issue
    • FIXED: Inability to leave a comment for a product without selecting a rating
    • FIXED: Problem with non-initialized field Select2 in theme settings
    • FIXED: External links in “Banner” and “Menu price” elements (Elementor)
    • FIXED: “YITH Multi-Vendor” plugin sidebar compatibility issue
    • FIXED: “Product filters” element problem displaying all attributes on all category pages
    • FIXED: “Related projects” now shows projects by category of current project
    • FIXED: “Lazy loading” with WooCommerce email images
    • FIXED: “Additional variations gallery” thumbnails size not proportional
    • FIXED: Share your Wishlist issue
    • FIXED: Load WPBakery templates from frontend editor (screenshot)
    • FIXED: “WCFM Marketplace” product per view and per page filters issue (screenshot)
    • FIXED: “WCFM Marketplace” all products per page issue
    • FIXED: Instagram element PHP error
    • FIXED: Empty menu element PHP error
    • FIXED: Promo banner link double page open
    • FIXED: Header not sticky when the user did not log in
    • FIXED: Disappearance of categories from the shop page title
    • FIXED: “Scroll top on variation select” option if the variation has no image
    • FIXED: “Sticky add to cart” option with Elementor pro single product custom template
    • FIXED: “Infobox” element issue with “Open in new window” option
    • FIXED: Safari browser password manager issue
    • FIXED: Scroll to top and arrows buttons with RTL language translated site.
    • FIXED: Product navigation dropdown on mobile devices
    • FIXED: Contact Form 7 5.4 notices
    • FIXED: Notices background and color setting
    • FIXED: Gutenberg editor list block styles
    • FIXED: Quick shop label align
    • FIXED: Small accessibility Issues
    • IMPROVED: Force “Dokan” plugin pages to use Font Awesome 5 icons from “Elementor” or “WPBakery” page editors
    • IMPROVED: “WPML” language and currency switcher refactored
    • IMPROVED: “WPCS – WordPress Currency Switcher” switcher refactored
    • IMPROVED: “Load more” button now change URL to the current page on load content
    • IMPROVED: “Number of categories” option can now open and close additional categories (screenshot)
    • IMPROVED: After entering incorrectly through the side login form, you will remain on the same page and receive an error message in the side form (screenshot)
    • IMPROVED: “HTML Block” and “Woodmart slide” post type now public queryable only if the user is logged in
    • IMPROVED: “Product category next to title” option now ordering categories from parent to child
    • IMPROVED: Compatibility our Elementor elements with WPML translations
    • IMPROVED: “Reset default” button moved to a separate section
    • UPDATED: Woodmart Core plugin 1.0.28 – Added “ABSPATH” check to plugin files
    • UPDATED: Google maps API version from 3.41 to 3.44
    • UPDATED: Outdated WooCommerce template files
    • UPDATED: wpml-config.xml file
    • DEV: Added filter ‘woodmart_html_block_access’ to change access to HTML block edit page
    • DEV: Added filter ‘woodmart_product_element_query_args’
    • DEV: Added filter ‘woodmart_three_sixty_framerate’ for change framerate in “360 element”
    • DEV: Added filter ‘woodmart_get_prev_product_same_term’
    • DEV: Added filter ‘woodmart_wc_default_product_cat’ if you specify a value of “true” then the default category will not be displayed (screenshot)
    • REMOVED: “Call to action” option from menu item settings (screenshot)
    • REMOVED: Deprecated moment.js library
    • DEPRECATED: “Sticky notifications” option
    • DEPRECATED: “AJAX” source type for Instagram element
    milendch
    Participant
    #130359

    As explained before, when the ajax add to cart option is disabled the tm product extra options is not working at all!!!

    Plugin only works with ajax add to cart, but returns errors from time to time. That is I believe more a theme issue then a plugin issue, since it is working most of the times, and the problem is mostly on the add to cart.

    Also as explained before, at those times that it isn’t adding the product in the cart, it looks like it’s adding it for a second and removes it immediately and says empty cart.

    #124028

    Hello,

    Thank you very much for choosing our theme and for your warm feedback.

    Issue # 1. I went to the product page in ES and added the product to the cart, I see this
    http://prntscr.com/np9g23 then I switch to the French and view the cart and see this http://prntscr.com/np9igl

    Another product in ES https://gyazo.com/bcd75bc3bee10e6ce44357e0e7f2a026 and the same in FR https://gyazo.com/6135bd3efa402b8f6de3a3ae82227f92

    Issue #2 Please deactivate all the plugins not related to the theme and switch the parent theme, check the issue, if the problem remains, leave the plugins not activated we shall check.

    Issue #3

    1. You have hidden the size guide http://prntscr.com/npa716

    2. You need to assign the categories http://prntscr.com/npa7gn You have not translated the categories to all the languages that is why this field is empty.

    3. You have not translated the size guide to all the languages https://gyazo.com/afd067143021103b92cb68adf6deac2d

    4. You need to choose the size guide in the product page https://gyazo.com/1b26c2f93a8b850c1342441dfc83600d

    B. MINOR ISSUES

    1. Add to cart button Unfortunately, there is no option to do in the way you need, however, we shall consider it and will try to implement it in one of our future updates.

    CSS:

    1. Search form

    body .searchform input[type=text] {
        height: 36px;
    }

    2. Message background

    body .woocommerce-message{
    background-color:red;
    }
    body .woocommerce-info{
    background-color:red;
    }
    body .wpcf7-mail-sent-ok{
    	background-color:red;
    }
    body div.wpcf7-validation-errors{
    	background-color:red;
    }
    body .mc4wp-success,
    body .mc4wp-error{
    	background-color:red;
    }

    3. Page title

    body .title-size-small {
        padding-top: 20px;
        padding-bottom: 20px;
    }

    Best Regards

    In reply to: Translate to Romanian

    #122175

    Hello,

    Thank you very much for choosing our theme and warm feedback.

    1. Unfortunately, you will have to use a free plugin which would solve issues # 1, 6, 7. You can both translate to Romanian and to rename “Browse categories”, and labels with this plugin as well. Here is a video tutorial that should help you translate your website texts with a Loco Translate plugin https://www.youtube.com/watch?v=D3NsDdMzsls&list=PLMw6W4rAaOgKKv0oexGHzpWBg1imvrval&index=3

    2. Empty Cart text is translated just in the Theme Settings > Shop > scroll to find. In the same way, you will find the translation for the Login/Register page: Theme Settings > Login/Register; when you search a string, choose “Woodmart” in domains and then search http://prntscr.com/nkf93w

    3. Select Category search reflects all the existing categories which you create in Dashboard > Products > Categories

    4. There is no option to add a slider to the compare page. Using WP bakery page builder you can add a slider to a product page. Chose Slider Revolution element or Woodmart slider. https://xtemos.com/docs/woodmart/woodmart-slider/

    5. Please navigate to the Theme Settings > Product page > Tabs

    6 and 7 view #1

    Best Regards

    jukka18
    Participant
    #51347

    Hi there,

    I’ve noticed /?wc-ajax=get_refreshed_fragments seems to really slow my pages.

    Is there anything you recommend to help with this. I know there is a plugin out there to remove this, however it means if the customer clicks on the right hand side dropdown cart it is empty, even with product aded to the cart. Is there a way to remove this and have the theme set up so if you click on the cart it doesn’t show an empty cart.

    Struggling to do this without causing customer usability issues?

    Thanks

    W

Viewing 30 results - 91 through 120 (of 123 total)