Dear, Henrik,
Private Content
Kind Regards,
8theme team
Dear, Henrik,
Private Content
Kind Regards,
8theme team
Hello, Ritik Kumar,
Thank you for reaching out to us. We are sorry to hear that you are experiencing a critical error with the latest update of the XStore core plugin. We understand how important it is for your website to function smoothly, and we are here to help.
We’ve checked your Home page and we do not see any problem. Please provide URL of page with the problem, temporary wp-admin and FTP access.
To provide wp-admin access, you can create a new user account with administrator role via the Dashboard, and provide us with the username and password via the Private Content area.
To create FTP access (FTP host, FTP username, FTP password, FTP port, FTP encryption) , please contact your hosting provider for assistance.
On our test site all works fine after the update, so we need access to your site to be able to check the problem more deeply.
In the meantime, we recommend you to check if the theme and all other plugins are up to date and compatible with the latest version of the XStore core plugin. Sometimes, conflicts with other plugins or an outdated theme can cause issues after an update.
Check the server error log, and let us know the result also.
Thank you for your cooperation and we look forward to hearing from you soon.
Kind Regards,
8theme team
Hello,
Thank you for reaching out to us with your concern. We understand that you are experiencing an issue with an unwanted baby stroller image appearing in the footer template of your website.
Could you provide temporary wp-admin access, so we can provide you a screenshot from the Footer static block editor on your site?
Thank you for your cooperation and we look forward to hearing from you soon.
Kind Regards,
8theme team
Hello, Nick,
Thank you for reaching out to us with your concern regarding the translation of the “Addresses” tab in the My Account section of your website.
“Addresses” comes from WooCommerce plugin, you need to contact their support – https://wordpress.org/support/plugin/woocommerce/
Please let us know if you require any other assistance. We are here to help!
Kind Regards,
8theme team
Hello, AshleyW,
Thank you for getting in touch with us.
“All these above issues were fine before, I don’t understand why colours are changing, surely updates don’t affect the style/design of the site?” – contact support of the payment plugin and ask them , our theme does not affect this.
” On the checkout page, if you choose ‘Klarna’ as payment method the colours there have also been ‘swapped’. It should be a white background so the writing can be seen. It has changed to black.”
– https://prnt.sc/42_XOUVszkCH – this code should help you, but on your site it is – https://prnt.sc/sTSjqJIRcxfk Please check check custom code.
We hope this information is helpful.
Kind Regards,
8theme team
Hello, Ekomatbaa,
We appreciate your prompt response.
We wish to inform you that your inquiry has been forwarded to another specialist for a more detailed review.
Please be patient and do not change access.
Kind Regards,
8theme team
Hello, Movileanu,
Thank you for choosing XStore as your WooCommerce WordPress theme.
We would recommend you disable “One Page Menu” in Theme Options > Header Builder > Main menu.
If you have any additional questions or concerns, please do not hesitate to reach out to us. Our support team is always available to assist you.
Kind Regards,
8theme team
Hello,
Kindly furnish us with the URL and temporary administrative access to your WordPress site. This will enable us to construct an example for you.
Kind Regards,
8theme team
Hello,
Thank you for reaching out to us with your concerns. We appreciate the opportunity to assist you with the issues you’re experiencing while creating product archive pages with our builder. Let’s address each of your points:
1. To prevent the Product Archives widget from displaying categories, you can change Shop Page Display in Theme Options > WooCommerce > Product catalog.
2. The Off-Canvas feature for the sidebar is not available right now. This will be added within 2-3 weeks. We are currently working on it. Sorry for the inconvenience.
3. Please describe the desired behavior in more detail and provide the URL to a page with this issue.
4. Please provide URL of the product from your video.
5. Have you tried to change the color to the desired one via mentioned settings?
6. We wish to inform you that your inquiry has been forwarded to another specialist for a more detailed review.
Please be patient.
We are committed to helping you resolve these problems and improve your experience with our products.
Best Regards,
8Theme’s Team
Hello, YCHA,
Thank you for reaching out to us with your query. We understand that you would like to have the same cart functionality on your site as seen on our demo site, where the cart content pops up on the right side instead of redirecting to the cart page.
Navigate to Dashboard > WooCommerce > Settings > Products > Add to cart behavior> unselect “Redirect to the cart page after successful addition”.
Then edit “Product Added Notification” via Theme Options > WooCommerce > Shop > Shop Page Layout.
If you are unable to locate this setting or if the issue persists after making the adjustment, please provide us with temporary admin access to your site so we can take a closer look and assist you further.
Kind Regards,
8theme team
Hello,
You’re welcome!
Kind Regards,
8theme team
Hello, PAC,
We regret to inform you that the option you are inquiring about is not available by default. However, we are pleased to provide you with a custom code solution that can be implemented to achieve the desired functionality.
Please insert the following code into the xstore-child/functions.php file using an FTP client:
Result – https://prnt.sc/2LUrQIpJOlfg
add_filter('etheme_product_grid_list_product_elements', 'etheme_child_product_grid_list_product_and_hover_elements_filter');
add_filter('etheme_product_grid_list_product_hover_elements', 'etheme_child_product_grid_list_product_and_hover_elements_filter');
function etheme_child_product_grid_list_product_and_hover_elements_filter($elements) {
if ( 'yes' === get_option( 'woocommerce_manage_stock' ) ) {
$excerpt_position = array_search('excerpt', array_keys($elements));
if ( $excerpt_position > 1 ) {
$elements = array_slice( $elements, 0, $excerpt_position, true ) +
array( 'stock_status' => esc_html__( 'Show Stock Status', 'xstore' ) ) +
array_slice( $elements, $excerpt_position, count( $elements ) - $excerpt_position, true );
}
else {
$elements['stock_status'] = esc_html__( 'Show Stock Status', 'xstore' );
}
}
return $elements;
}
add_filter('etheme_product_grid_list_product_hover_info_elements', function ($elements) {
$elements[] = 'stock_status';
return $elements;
});
add_action( 'etheme_product_grid_list_product_element_render', 'etheme_child_product_grid_list_product_and_hover_element_render', 10, 4 );
add_action( 'etheme_product_grid_list_product_hover_element_render', 'etheme_child_product_grid_list_product_and_hover_element_render', 10, 4 );
function etheme_child_product_grid_list_product_and_hover_element_render($key, $product, $edit_mode, $main_class) {
switch ($key) {
case 'stock_status':
echo wc_get_stock_html($product);
break;
}
}
add_filter('etheme_product_grid_list_product_hover_info_elements_render', function ($info_elements, $hover_effect, $all_elements) {
if ( in_array($hover_effect, array('info', 'overlay', 'default')) ) {
if ( array_key_exists('stock_status', $all_elements) ) {
$info_elements['stock_status'] = $all_elements['stock_status'];
}
}
return $info_elements;
}, 10, 3);
add_filter('etheme_product_grid_list_product_hover_elements_render', function ($elements, $hover_effect, $info_elements) {
if ( in_array($hover_effect, array('info', 'overlay', 'default')) ) {
if ( array_key_exists('stock_status', $elements) ) {
unset($elements['stock_status']);
}
}
return $elements;
}, 10, 3);
Kind Regards,
8theme team
Hello, Link&Grow,
We appreciate your prompt response.
Private Content
Kind Regards,
8theme team
Hello, @Hempednyc,
We appreciate your prompt response.
You will be able to receive an estimate via email after submitting your request through our contact form at https://www.8theme.com/contact-us/. We are unable to provide an estimate here on the forum as a separate department of our company handles customization requests.
Best Regards,
8Theme’s Team.
Hello, @Hempednyc,
Thank you for reaching out and sharing your concerns.
We understand that encountering limitations with theme functionality can be frustrating, especially after investing time and resources into setting up your website. Our theme is designed to offer a comprehensive solution, and we strive to cover as many use cases as possible. However, we acknowledge that there may be specific needs that are not met by the current theme settings.
Regarding the variation swatches and global attributes, it is true that they are designed to work within the predefined behavior of the theme. We appreciate your feedback and the need for additional flexibility in this area.
Here are two options for addressing this issue:
1. Submit a Feature Request: You can submit a request to our development team at https://www.8theme.com/taskboard/. If your suggestion gains enough support from other customers, we will consider including it in future updates.
2. Paid Customization Service: For immediate assistance beyond the scope of our basic support (- Screenshot: https://prnt.sc/6fzclY05Xcma
– Support Documentation: https://www.8theme.com/documentation/xstore/support/support/), our development team is available for hire. You can submit your customization requirements at https://www.8theme.com/contact-us/, and we will provide you with a detailed estimate for the work. Our aim is to tailor the design to your vision and enhance your site’s functionality.
We apologize if our previous response did not fully address your concerns.
We value your business and the effort you have put into your website. If you decide to proceed with hiring developers, we hope that the outcome will be successful and meet your expectations.
If there is anything else we can assist you with, please let us know.
Best Regards,
8Theme’s Team.
Hello, Hempednyc,
We appreciate your prompt response.
1/ Please check now – https://prnt.sc/b9Azk1sRP3a2
2/ We’ve checked and see that without these 2 plugins https://prnt.sc/xs8oEkTg-VyD , Theme Options can be loaded correctly https://prnt.sc/kBno9dvJByKi
Our dev team will check what can be done to help you. Please do not change access and be patient. I will let you know once get an answer from them.
At the same time, please contact the support of WooCommerce and ask for assistance from their side too.
Also, please check the server error log, and let us know.
3/ About the price, we’ve checked how it works with Storefront (default WooComerce theme) – https://gyazo.com/2498f5c746b79533d9b65238ba5a89c4 We do not see that change even with the official WC theme.
Please describe in more detail what exactly and how works with the Storefront but doesn’t work with XStore.
As we can see, in Cart Off-Canvas the Price is changed with our theme – https://prnt.sc/yb7WhoR1N2hC
Kind Regards,
8theme team
Hello, Link&Grow,
We appreciate your prompt response.
Please provide temporary wp-admin access, so we can check your settings.
To provide wp-admin access, you can create a new user account with administrator role via the Dashboard, and provide us with the username and password via the Private Content area.
Kind Regards,
8theme team
Hello, Aiste,
Thank you for reaching out to us with your query regarding the translation of your site. We understand the importance of having a fully localized website for your audience.
You need to create a translation for the XStore Core plugin via Loco Translate > Plugins.
If you are still facing difficulties, please provide us with temporary wp-admin access and the specific phrases you are trying to translate, and we will do our best to assist you further.
To provide wp-admin access, you can create a new user account with administrator role via the Dashboard, and provide us with the username and password via the Private Content area.
We hope this information helps you in translating the remaining parts of your website. If you have any more questions or require further assistance, please do not hesitate to contact us.
Kind Regards,
8theme team
Hello, MarinaD,
We appreciate your prompt response.
The translation should be done for the parent theme, and it will be automatically inherited by the child theme.
The child theme should be translated only in case you added custom code in child theme that includes localization functions.
Kind Regards,
8theme team
Hello,
We appreciate your prompt response.
You need to use HTML element, for example – https://prnt.sc/wfY1HVXvvGO6
and here is an example for mail https://www.w3schools.com/tags/tryit.asp?filename=tryhtml_link_mailto
Kind Regards,
8theme team
Hello, Diana Nikolova,
We appreciate your prompt response.
Theme Options > WooCommerce > Shop > Shop page layout > Banner Position.
Kind Regards,
8theme team
Hello, Apokiou,
Please provide temporary wp-admin and FTP access.
Also, let us know what exactly from the recommendations you did but they have not helped.
To provide wp-admin access, you can create a new user account with administrator role via the Dashboard, and provide us with the username and password via the Private Content area.
To create FTP access (FTP host, FTP username, FTP password, FTP port, FTP encryption) , please contact your hosting provider for assistance.
Kind Regards,
8theme team
Hello, Apokiou,
Thank you for contacting us and for using XStore.
Please check this topic – https://www.8theme.com/topic/we-are-unable-to-connect-to-the-xstore-api-with-the-xstore-theme-please-check-your-ssl-certificate-4/
Kind Regards,
8theme team
Hello, Ekomatbaa,
Please check now and let us know what else should be fixed.
We added this code in xstore-child/style.css:
.select-product-cat-wrapper .cat-intro .serach-product-cat-wrapper form .form-control {
display: inline-block;
}
form#mvx_product_list_form .form-group {
display: flex;
flex-wrap: wrap;
}
.product-filter-actions .alignleft {
float: none;
margin: 0 !important;
}
.form-control.inline-input {
width: auto;
display: inline-block;
vertical-align: middle;
}
Kind Regards,
8theme team
Hello, @Hempednyc,
We have provided you with a genuine response and have clarified that our theme utilizes global attributes for variation swatches, as demonstrated in our instructional video. Currently, you are insistently requesting functionality that was never a part of our theme. Here on the support forum, we can only offer guidance regarding current the theme’s functionality. Please show understanding.
Best Regards,
8Theme’s Team.
Hello, @Martin,
According to the fact we checked your issue deeply but have had no success in recreating the same issue on our dev sites, we would recommend you deactivate our Built-in Wishlist and install Wishlist as separate free plugin found in the official WordPress plugins page → https://wordpress.org/plugins/yith-woocommerce-wishlist/ . Please, try to test how it works with the YITH Wishlist plugin and give us feedback if the issues were solved.
Best Regards,
8Themes Team
Hello, @Focu5,
Fixed. Please check now.
Kind Regards,
8theme team
Hello, Parhelion,
These elements are dynamically shown based on the email template type
Example → https://prnt.sc/zV22T5LZ_Lbj and https://prnt.sc/UDHyltB8h69C
Also, please, try to check the console using the dev tools of your browser, if you have any js error those elements could be not added and you should fix the JS error first.
Kind Regards,
8theme team
Hello, Dombici Serban,
Please clear cache of browser and check now.
Kind Regards,
8theme team
Hello, Jimmy,
The next custom CSS code can be used:
.etheme-cart-checkout-accordion #shipping_method li label {
flex: 1;
display: flex;
flex-wrap: wrap;
align-items: center;
}
.woocommerce .woocommerce-shipping-methods label:after,
.wc-block-components-totals-shipping .wc-block-components-radio-control__option:after {
border: none;
flex: 1;
flex-basis: 100%;
text-align: start;
padding-bottom: 0;
margin-bottom: 0;
white-space: normal;
font-size: .85em;
}
.etheme-cart-checkout-accordion #shipping_method li label > span {
margin-inline-start: 7px;
}
> https://prnt.sc/Mno1D8sk-STS
Kind Regards,
8theme team