Hi,
Please add below code to Custom CSS
.product-countdown .product-info h3 {
width: auto;
overflow: inherit;
}
.product-countdown .product-info {
padding: 20px;
background: rgba(0,0,0,0.8);
max-width: calc(100% - 20px);
text-align: center;
}
.product-countdown .product-info h3 a {
color: #fff;
}
Kind regards
Harry
Premium Wordpress themes and plugins, Best WooCommerce theme https://themeforest.net/user/janstudio/portfolio?ref=janstudio
2. Please add below code to Claue > Theme Option > General Layout > Custom CSS if you want add background below Promotion text
.jas-promotion.bottom .pa {
background: rgba(0,0,0,0.8);
padding: 20px;
}
and add below code to make the text thicker
.jas-promotion.bottom .pa h3,
.jas-promotion.bottom .pa h4 {
font-weight: bold;
}
2. add below code to make background cover the text ” ‘Domtoren in the mist’
.badge span.0nsale {
width: 145px;
}
Kind regards
Harry
Premium Wordpress themes and plugins, Best WooCommerce theme https://themeforest.net/user/janstudio/portfolio?ref=janstudio
Hi,
It doesn’t have option to use different size for each column, you need custom css to customize.
Kind regards
Harry
Premium Wordpress themes and plugins, Best WooCommerce theme https://themeforest.net/user/janstudio/portfolio?ref=janstudio
Hi,
It doesn’t have option to use different size for each column, you need custom css to customize.
Kind regards
Harry
Premium Wordpress themes and plugins, Best WooCommerce theme https://themeforest.net/user/janstudio/portfolio?ref=janstudio
Hi, 1. If you import sample data it will clean your exist data.Do not do it if you want keep your exist content 2. You can import .xml file what I guided you, You will have pages like our demo, and you can change sample homepage with your content and set the page as new homepage that you want. Kind regards
Hello Harry,
An error occurred when I wanted to install the theme from the file to which you sent me the link (claue.WordPress.2025-02-28.xml_.zip).
“The package could not be installed. The theme is missing the style.css stylesheet. Theme installation failed.”
Please see the attached file for the screenshot. Thank you.
If you could help me faster, please help me install the theme on my website directly. It will save a lot of time and energy for you and me to solve this problem. Thank you so much in advance.
Attachments:
You must be
logged in to view attached files.
Hi Isablle,
Please add below code to Claue > Theme Option > General Layout > Custom CSS
.product-image:hover .product-btn {
top: 60%;
}
and increase 60 as you want.
Kind regards
Harry
Premium Wordpress themes and plugins, Best WooCommerce theme https://themeforest.net/user/janstudio/portfolio?ref=janstudio
Hi
When I choose the header with menu at the top and logo in the middle, what my client wants is not the right menu that appears. It is a menu that does not exist for me…
See the attached screenshot (Header menu)
On the other hand, my client wanted a green background for the top menu. But when I add the css
.middle-xs {
background-color: #d1ded0;
}
This puts a green background on other parts of the theme : under the store filters and under the cart promo codes.
See the attached screenshot (Header background color)
Thank you for help
Best regards.
Isabelle
Attachments:
You must be
logged in to view attached files.
Hi,
Please add below code to claue-child > functions.php
add_action( 'wp_head', 'remove_my_action' );
function remove_my_action(){
// Remove old position of category description
remove_action( 'woocommerce_archive_description', 'woocommerce_taxonomy_archive_description', 10 );
remove_action( 'woocommerce_before_main_content', 'jas_claue_wc_page_head', 15 );
add_action('woocommerce_after_main_content', 'woocommerce_taxonomy_archive_description', 5 );
}
function jas_claue_child_wc_page_head() {
if ( ! cs_get_option( 'wc-enable-page-title' ) || ( class_exists( 'WCV_Vendors' ) && WCV_Vendors::is_vendor_page() ) ) return;
$title = cs_get_option( 'wc-page-title' );
$output = '<div class="page-head pr tc"><div class="jas-container pr">';
if ( is_search() ) {
$output .= '<h1 class="mb__5 cw">' . sprintf(__( 'Search Results for: %s', 'claue' ), '<span>' . get_search_query() . '</span>' ) . '</h1>';
} elseif ( is_shop() ) {
$output .= '<h1 class="mb__5 cw">' . esc_html( cs_get_option( 'wc-page-title' ) ) . '</h1>';
$output .= '<p class="mg__0">' . do_shortcode( cs_get_option( 'wc-page-desc' ) ) . '</p>';
} else {
$output .= '<h1 class="cw">' . single_cat_title( '', false ) . '</h1>';
}
ob_start();
$output .= ob_get_clean();
$output .= '</div></div>';
echo wp_kses_post( $output );
}
add_action( 'woocommerce_before_main_content', 'jas_claue_child_wc_page_head', 15 );
and below code to Claue > Theme Option > General Layout > Custom CSS
.term-description {
display: block;
width: 100%;
max-width: 1170px;
margin: 30px auto;
}
Kind regards
Harry
Premium Wordpress themes and plugins, Best WooCommerce theme https://themeforest.net/user/janstudio/portfolio?ref=janstudio
Hi Maria,
I see you added custom CSS, max-width: 700px but don’t know where you added. Please remove custom CSS you added.
Now your site has error code, can you try deactivate plugin one by one and check the error.
Kind regards
Harry
Premium Wordpress themes and plugins, Best WooCommerce theme https://themeforest.net/user/janstudio/portfolio?ref=janstudio
Hi janstudio,
I recently removed the code .footer__bot { display: none !important; } and the copyright text is now appearing in the footer as expected. However, I’m using the WP Rocket cache plugin, and the text only shows up in the admin view.
Since I’m using WP Rocket to minify CSS and JavaScript for better performance, I’d like to know if it’s possible to exclude specific code snippets from minification.
In addition, I’ve encountered two other issues:
WooCommerce Product Images: Product images only appear when hovering the mouse cursor.
Load More Button: The “Load More” icon displays, but the text is missing.
I’ve provided website access credentials (login and password) to help troubleshoot these issues.
Attachments:
You must be
logged in to view attached files.