Home › Forums › Themes Support › Claue › Edit footer
- This topic has 24 replies, 2 voices, and was last updated 6 years, 6 months ago by
Harry.
-
AuthorPosts
-
-
November 12, 2019 at 7:54 am #34407
Hi, I can’t find where I can modify the footer. Attached image. Thank you

-
November 12, 2019 at 2:08 pm #34409
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-
November 13, 2019 at 12:10 am #34414This reply has been marked as private.
-
-
November 13, 2019 at 2:47 am #34416This reply has been marked as private.
-
November 13, 2019 at 8:53 am #34418
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 -
November 13, 2019 at 9:32 am #34419This reply has been marked as private.
-
November 13, 2019 at 2:04 pm #34423
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 -
November 13, 2019 at 6:03 pm #34426This reply has been marked as private.
-
November 13, 2019 at 7:34 pm #34427
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 -
November 14, 2019 at 11:07 pm #34437This reply has been marked as private.
-
November 15, 2019 at 8:31 am #34441
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 -
November 15, 2019 at 2:49 pm #34445This reply has been marked as private.
-
November 16, 2019 at 8:34 pm #34453This reply has been marked as private.
-
November 16, 2019 at 9:47 pm #34455
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 -
November 16, 2019 at 9:54 pm #34456This reply has been marked as private.
-
November 21, 2019 at 7:19 am #34515This reply has been marked as private.
-
November 21, 2019 at 12:13 pm #34518
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 -
December 1, 2019 at 3:27 am #34601This reply has been marked as private.
-
December 1, 2019 at 10:15 am #34604
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 -
December 12, 2019 at 10:56 am #34734This reply has been marked as private.
-
December 12, 2019 at 11:04 am #34738
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 -
December 12, 2019 at 2:09 pm #34740This reply has been marked as private.
-
December 12, 2019 at 3:27 pm #34750
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 -
December 20, 2019 at 7:16 am #34786This reply has been marked as private.
-
December 20, 2019 at 9:25 am #34787
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
-
-
AuthorPosts
You must be logged in to reply to this topic.