Your account expired support, please renew to get your support.

Home Forums Themes Support Claue Edit footer

Viewing 23 reply threads
  • Author
    Posts
    • #34407
      jesus0985
      Support Expired

      Hi, I can’t find where I can modify the footer. Attached image. Thank you

    • #34409
      Harry
      Support Expired

      Hi, please edit in Appearance > Widget> Footer #1-5.

      Kind regards

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

      • #34414
        jesus0985
        Support Expired
        This reply has been marked as private.
    • #34416
      jesus0985
      Support Expired
      This reply has been marked as private.
    • #34418
      Harry
      Support Expired

      Hi,

      1. Please edit in WooCommerce > Settings > Email

      2. Please change header layout in Claue > Theme Option > Header

      Kind regards

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

    • #34419
      jesus0985
      Support Expired
      This reply has been marked as private.
    • #34423
      Harry
      Support Expired

      Hi,

      Please add below code to Claue > Theme Option > General Layout > Custom CSS

      @media only screen and (max-width: 767px) {
      .hide-md.visible-sm.visible-xs.jas-col-sm-4.jas-col-xs-3,
      .jas-col-md-2.jas-col-sm-4.jas-col-xs-3 {
      	-ms-flex-preferred-size: 16.666%;
       	-webkit-flex-basis: 16.666%;
      	flex-basis: 16.666%;
      	max-width: 16.666%;
      }
      .jas-col-md-2.jas-col-sm-4.jas-col-xs-6.start-md.center-sm.center-xs {
      	-ms-flex-preferred-size: 66.666%;
      	-webkit-flex-basis: 66.666%;
      	flex-basis: 66.666%;
      	max-width: 66.666%;
      }}

      Kind regards

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

    • #34426
      jesus0985
      Support Expired
      This reply has been marked as private.
    • #34427
      Harry
      Support Expired

      Hi,

      After resize browser please refresh to check. Your logo will fit with window.

      Kind regards

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

    • #34437
      jesus0985
      Support Expired
      This reply has been marked as private.
    • #34441
      Harry
      Support Expired

      Hi Jesus,

      The user open your site on real device, not much user resize window when open your site.

      Please try check your site on mobile and tablet device.

      Kind regards

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

    • #34445
      jesus0985
      Support Expired
      This reply has been marked as private.
    • #34453
      jesus0985
      Support Expired
      This reply has been marked as private.
    • #34455
      Harry
      Support Expired

      Hi,

      Please change the code to

      @media only screen and (max-width: 1024px) {
      .header-3 {
      height:120px !important;
      }}
      @media only screen and (max-width: 315px) {
      .header-3 {
      height:135px !important;
      }}

      Kind regards

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

    • #34456
      jesus0985
      Support Expired
      This reply has been marked as private.
    • #34515
      jesus0985
      Support Expired
      This reply has been marked as private.
    • #34518
      Harry
      Support Expired

      Hi Jeus,

      It now you’re using Alidropship plugin and the variation swatch style generate by this plugin. Please check config of this plugin or contact plugin author.

      Kind regards

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

    • #34601
      jesus0985
      Support Expired
      This reply has been marked as private.
    • #34604
      Harry
      Support Expired

      Hi,

      Please add below code to Claue > Theme Option > General Layout > Custom CSS

      .badge .new {
      	left: auto;
      	right: 15px;
      }

      Kind regards

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

    • #34734
      jesus0985
      Support Expired
      This reply has been marked as private.
    • #34738
      Harry
      Support Expired

      Hi Jesus,

      Please follow this topic at https://www.cloudways.com/blog/add-product-images-skus-to-woocommerce-order-emails/ and add your code to Claue-child > functions.php

      Kind regards

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

    • #34740
      jesus0985
      Support Expired
      This reply has been marked as private.
    • #34750
      Harry
      Support Expired

      Hi,

      Please follow this topic https://stackoverflow.com/questions/50936156/add-the-product-image-to-woocommerce-my-account-order-view and add below code to claue-child > functions.php

      // Display the product thumbnail in order view pages
      add_filter( 'woocommerce_order_item_name', 'display_product_image_in_order_item', 20, 3 );
      function display_product_image_in_order_item( $item_name, $item, $is_visible ) {
          // Targeting view order pages only
          if( is_wc_endpoint_url( 'view-order' ) ) {
              $product   = $item->get_product(); // Get the WC_Product object (from order item)
              $thumbnail = $product->get_image(array( 36, 36)); // Get the product thumbnail (from product object)
              if( $product->get_image_id() > 0 )
                  $item_name = '<div class="item-thumbnail">' . $thumbnail . '</div>' . $item_name;
          }
          return $item_name;
      }

      Kind regards

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

    • #34786
      jesus0985
      Support Expired
      This reply has been marked as private.
    • #34787
      Harry
      Support Expired

      Hi Jesus,

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

      function polylang_flags_shortcode() {
          ob_start();
          pll_the_languages(array('show_flags'=>1,'show_names'=>0));
          $flags = ob_get_clean();
          return '<ul class="polylang-flags">' . $flags . '</ul>';
      }
      add_shortcode('POLYLANG', 'polylang_flags_shortcode');

      2. Add below code to claue-child > style.css

      /* Polylang Flags Inline */
      
      .polylang-flags {
        list-style-type: none;
        margin: 0;
        padding: 0;
      }
      
      .polylang-flags li {
          display: inline;  
      }

      3. Add short code to Claue > Theme Option > Header > Header Top right

      [POLYLANG]

      Kind regards

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

Viewing 23 reply threads

You must be logged in to reply to this topic.