Home Forums Themes Support Claue how to add the flag

Viewing 4 reply threads
  • Author
    Posts
    • #20159
      Anonymous

      how to add the flag

    • #20191

      Hi,

      The default currency integrated in our theme doesn’t support flag.

      Best regards

      Harry
      Premium Wordpress themes and plugins, Best WooCommerce theme https://themeforest.net/user/janstudio/portfolio?ref=janstudio

    • #20210
      Anonymous

      tell me where is the code let me change

    • #20267

      Hi,

      The code in plugin > claue-addons > currency > init.php

      Best regards

      Harry
      Premium Wordpress themes and plugins, Best WooCommerce theme https://themeforest.net/user/janstudio/portfolio?ref=janstudio

    • #20268

      Hi,

      Please add below code to claue-child > functions.php

      add_action( 'woocommerce_shop_loop_item_title', 'custom_before_title', 5 );
      function custom_before_title() {
      
          global $product;
      
          if ( $product->get_sku() ) {
              echo '<div>SKU:'.$product->get_sku().'</div>';
          }
      
      }

      Best regards

      Harry
      Premium Wordpress themes and plugins, Best WooCommerce theme https://themeforest.net/user/janstudio/portfolio?ref=janstudio

Viewing 4 reply threads

You must be logged in to reply to this topic.