Hello,
Also, do you use variation gallery for any product on your site?
Regards
Hello,
Also, do you use variation gallery for any product on your site?
Regards
Hello,
The header has only 3 header areas + header banner. Looking at your header I could offer you to move the slider to the header banner area https://prnt.sc/1wtsiwg and use the block to create promo banner https://prnt.sc/1wtsymc
After that, you’ll be able to remove the promo banner element from the header area (because you placed that to header banner area) and use the bottom header for your needs https://prnt.sc/1wtt9jj
Regards
Regards
Hello,
You can disable related products in Theme Options > WooCommerce > Related products and enable Up sells instead from single product options https://prnt.sc/1wtqc0g
Regards
Hello,
Provide us with WP Dashboard and FTP access to your site, please. We’ll check the issue in more detail.
Regards
Hello,
Thank you. I have passed your issue to our developers. I’ll inform you once they fix the problem.
Regards
Hello,
Then replace the previous code by this one
add_action( 'woocommerce_single_product_summary', 'etheme_product_cats', 2 );
And don’t choose Primary category in the single product settings https://prnt.sc/1wtkawh
Regards
Hello,
Thank you. I have passed the issue to our developers. I’ll inform you once they fix the issue.
Regards
Hello,
What images are not responsive? Could you, please, provide the screenshot for better understanding?
Regards
Hello,
We are not developers of that plugin, so we can do nothing with that. We are theme developers. Contact plugin author.
Regards
Hello,
I see that you made changes in etheme_category_header function. I moved that function to child theme. Also, check the categories block again.
Regards
Hello,
1) Password is incorrect https://prnt.sc/1wn121e We can’t log in to your WordPress Dashboard using the credentials that you provided.
2) Use Lightshot screenshot tool to make screenshot and share the link to your screenshot.
Regards
Hello,
There is no such option. But you may try to use WooCommerce hooks to implement this by additional customization.
For example, add the below code to child theme functions.php
function custom_single_product_category(){
$product_cats = wp_get_post_terms( get_the_ID(), 'product_cat' );
if ( $product_cats && ! is_wp_error ( $product_cats ) ){
$single_cat = array_shift( $product_cats ); ?>
<h2 itemprop="name" class="product_category_title"><span><?php echo $single_cat->name; ?></span></h2>
<?php }
}
add_action( 'woocommerce_single_product_summary', 'custom_single_product_category', 2 );
Regards
Hello,
Provide us also with FTP access. We need to check the issue in more detail.
Regards
Hello,
Check now, please. I see that you created framework folder with woo.php file inside. Did you change function from that file? Please, copy just changed function to child theme functions.php and remove the woo.php file because it would cause issues on your site for future updates. Don’t copy files from the framework folder, copy only functions from these files to your child theme functions.php and edit them according to your needs.
Regards
Hello,
Add the below code to Theme Options > Custom CSS
.content-page, .page-content {
padding-bottom: 0;
}
Regards
Hello,
Probably you disabled XStore core plugin. Then you would see just a shortcode instead of the blog carousel.
Regards
Hello,
You can translate the mentioned strings in the XStore theme and XStore core plugin translation files https://www.8theme.com/documentation/xstore/theme-translation/base-theme-translation/
Regards
Hello,
1), 3) Provide us with WP Dashboard access to your site to check the settings that are used there.
2) Provide us with the screenshot of the “buy now” area that you are talking about for better understanding.
4) To add the footer go to Appearance > Widgets > add the Static block widget to the Footer widget area. Choose the Static block with footer content that you want to show there. Also, don’t forget to enable page builder to edit Static blocks https://www.8theme.com/documentation/xstore/support/static-blocks/
Regards
Hello,
Translation of the empty cart should be available in the string translator. Provide us with WP Dashboard access if it’s missing.
Regards
Hello,
Your logi is 164px width https://prnt.sc/1wmuz41 So, you need to set 164px width for the logo in the Logo element settings instead of 165px.
Check your logo now.
Regards
Hello,
You can use either translation files mentioned here https://www.8theme.com/documentation/xstore/theme-translation/base-theme-translation/ or use TranslatePress tools https://youtu.be/pUlYisvBm8g?t=78
If you talk about issue with the product name for the prev/next product then provide us with FTP access to your site. We’ll check it in more detail.
Regards
Hello,
You set h2 in the element settings https://prnt.sc/1wmr45j I changed that to h4 per your request.
Check the product title now. I made changes in the child theme files.
Regards
Hello,
Don’t place translation to author directly https://prnt.sc/1wmpf5q because:
1) You will lose your translation after the plugin update
2) It does not work if you place to author directory.
I moved translation to the System directory and translation is ok.
Regards
Hello,
WooCommerce allows change only the width of the image in the image size settings. It does not allow to limit the height of the images. So, either edit your images before uploading them to your media library and make all the images the same size. Or use custom CSS (Theme Options > Custom CSS or child theme style.css) to limit height of the image, for example
.woocommerce-product-gallery__image img.attachment-shop_single {
max-height: 446px;
width: auto;
}
2) I added the below code to child theme style.css and it works ok
.woocommerce-message {
background: #262626;
}
Regards
Hello,
We have a little bit different layout of such popup in our theme https://prnt.sc/1wmnqms You can enable that in Theme Options > WooCommerce > Shop > Shop page layout > Product Added Notification Type > choose Popup type.
Regards
Hello,
To change the custom tab title add the below code to Theme Options > Custom CSS
.template-container .yikes-custom-woo-tab-title {
color: #307ec4;
font-size: 40px;
}
Regards
Hello,
To remove the sidebar edit page and choose Sidebar position > Without in the page options https://prnt.sc/1wmmy36
To disable products slider go to WooCommerce > Settings > Account & Privacy > Products type > choose None https://prnt.sc/1wmn11j
Regards
Hello,
There is no such option in our theme, unfortunately.
Regards
Hello,
What version of PHP do you use on your server? It should be 7.2 or higher. If you have the mentioned error then your PHP version is lower. Contact your hosting provider and ask them to update PHP version.
Regards
Hello,
Do you use a built-in single product layout or a single product builder?
Regards