Skip to main content

WooCommerce Product Gallery, Shoppingcart & Reviews

Comments

3 comments

  • KC George

    Hi Gerhard,

    Looks like you are using the Blocksy theme. You can enable the Zoom and Lightbox features of the product gallery in Blocksy. Please find the product gallery settings under Appearance - Customize - Single Product - Gallery Options

    I am sorry, the Sale badge is not customizable.

    You are correct; despite the fact that another site language has been chosen, certain text in the Review element and other woocommerce button texts are displayed in English. These strings are presumably not present in Brizy translations. We will ask that these be included.

    0
  • Gerhard Klein

    Hi George :)

     

    thanks for hte reply... now i feel a bit stupid for not checking the theme first :D ...

    anyway, for everyone else in need of changing the language on Shopping Cart, i have done this currently via JS

     

    jQuery(document).ready(function( $ ){
    const applyText = (selector, replMap) => 
      document.querySelectorAll(".brz-woocart__sidebar-button-text").forEach(textBox => {
        const key = textBox.textContent.trim();
        if (replMap.has(key)) {
          textBox.textContent = replMap.get(key);
        }
      });

    const replMap = new Map(Object.entries({
      "View cart": "Warenkorb",
      "Checkout": "Kasse",
    }));

    applyText('.brz-woocart__sidebar-button-text', replMap);

     

    $('.brz-strong').text('Zwischensumme:');
    });

    0
  • Gerhard Klein

    i guess i go the same way for review section currently ;-)

    0

Please sign in to leave a comment.