Viewing 15 posts - 1 through 15 (of 15 total)
  • Author
    Posts
  • #1475259

    Hi I am setting up a webshop with woocommerce and use the woocommerce germanized plugin.
    On my product page the product units format is not displayed correctly.

    in my wcgzd settings the format is : This product contains{product_units}{unit}.

    So a 100g package should have the addition: This product contains 100g

    On my product page it displays: gThis product contains 100

    This problem is specific to enfold, when I am using the basic wordpress theme the product units and unit are displayed correctly on my productpage.

    How can i fix this?

    #1475401

    Hey DeaPublishing,

    Thank you for the inquiry.

    Where can we check the site? Please provide a link to the product page so we can properly check the layout issue.

    Best regards,
    Ismael

    #1475431

    Hi Ismael.
    The product page link is
    https://www.erikacoffee.at/index.php/product/test-product/
    the store is not launched yet
    But i created a shop manager account and a test product!

    Also if you could have a look at the cart page, the quantity update buttons are doubled and this causes some css to not work properly!

    Best regards,
    Michael

    #1475466

    Hi,

    Thank you for the info.

    The account is not an admin, so we are not able to edit the settings. Please add this css code to adjust the layout of the product unit.

    p.wc-gzd-additional-info.product-units-wrapper.product-units {
        display: flex;
        flex-direction: row-reverse;
        align-items: flex-start;
        justify-content: flex-end;
    }
    
    p.wc-gzd-additional-info.product-units-wrapper.product-units span.unit {
        margin: 0;
    }

    Best regards,
    Ismael

    #1475693

    Hello Ismael,
    this fixed the problem for the single product page,
    in the Cart Page there still is a bug triggered by the quantity selector on click event. At first some elements are not working, after in/decreasing number of items the gzd-units appears
    inverted again.

    I also wrote the vendidero team and can report if I get an answer from them!

    I granted the account admin rights.

    Best regards,
    Michael

    • This reply was modified 1 month ago by MAlmhofer.
    #1475701

    Hi,

    Thank you for the update.

    We still don’t have access to the dashboard — wp-admin redirects to the old site. The test product is no longer available. Please provide an admin account and create a test product so we can check the issue.

    Best regards,
    Ismael

    #1475729

    Hello Ismael,
    I tried login in with the enfold support account and had no problem accessing the wp-admin page, I double checked and the role of the account is admin.

    I published the Test product again.

    Best regards,
    Michael

    #1475843

    Hi,

    We are now able to login but the cart page is not displaying when we add the testProdukt to the cart — it shows as empty. Did you set up your Woocommerce pages correctly? Please check this documentation: https://woocommerce.com/document/woocommerce-pages

    Best regards,
    Ismael

    #1475864

    HI Ismael,
    I wiped the woocommerce installation with WC_REMOVE_ALL_DATA and reinstalled woocommerce and wc germanized, these are also the only two active plugins
    I removed the CSS you posted before and created a Test Product.

    The problem is enfold related, I checked again with the 2025 theme and the Product units are displayed correctly.
    Please have a look at it now.

    Best regards,
    Michael

    • This reply was modified 1 month ago by MAlmhofer.
    #1475902

    Hi,

    We added the css code again to fix the gzd-units issue. The cart is now displaying correctly, but we noticed this css code displaying as the product description. Did you add it somewhere?

    .avia-image-container.av-av_image-70942f4ece25f9d140bd165bef5aab88 img.avia_image{
         box-shadow:none;
    }
    .avia-image-container.av-av_image-70942f4ece25f9d140bd165bef5aab88 .av-image-caption-overlay-center{
         color:#ffffff;
    }
    

    Best regards,
    Ismael

    #1475986

    Hi Ismael,
    the cart is still not displaying correctly and the cart preview is also still not displaying correctly.
    Regarding the code displaying as the product description, this is a problem caused by wc Germanized and the avia layout builder.
    If you use the wc template for single product page everything keeps working.
    If I build my own layout with ALB the product description display is bugged and inserts these css classes.
    Screenshot Single Product Page
    Screenshot Cart
    I deactivated woocommerce germanized for now, because the website is set to launch at Saturday.
    I can clone the whole WP build and provide you with account details where you can test this.

    My customer has to use wc germanized in the future since his onlineshop is in the DACH Region, so is this a problem you can fix or should I try the vendidero support?

    Regards,
    Michael

    • This reply was modified 1 month ago by MAlmhofer.
    • This reply was modified 1 month ago by MAlmhofer.
    • This reply was modified 1 month ago by MAlmhofer.
    • This reply was modified 1 month ago by MAlmhofer.
    #1475992

    Hi Ismael,
    I fixed the minicart display problem with the following css

    p.wc-gzd-cart-info {
        display: flex;
        flex-direction: row;
    }
    .unit{
    margin:0
    }

    The product display in the cart display is still faulty.

    #1476063

    Hi,

    Thank you for the update.

    We get an internal server error when we try to add anything to the cart. Have you tried using the Block Editor for the Cart page? You can insert the default Cart block to display the cart elements.

    Best regards,
    Ismael

    #1476068

    Hi Ismael,
    I fixed the problem for now by hiding the blocks in my cart page

    add_action( 'wp_head', function() {
        if ( is_cart() ) {
            echo '<style>
                .wc-block-components-product-metadata, 
                .wc-block-components-product-metadata__description { 
                    display: none !important; 
                }
            </style>';
        }
    

    Best regards,
    Michael

    #1476282

    Hi,

    Glad to know you managed to hide the unwanted elements. However, we’re still not sure why they’re displaying there. Please reach out to the plugin developers for further assistance.

    Thank you for your patience.

    Best regards,
    Ismael

Viewing 15 posts - 1 through 15 (of 15 total)
  • You must be logged in to reply to this topic.