This topic has 9 replies, 3 voices, and was last updated 5 months, 3 weeks ago ago by Andrew Mitchell
Hi Support Team,
I’m having an issue displaying categories on my shop page. It only shows an infinite scroll effect without any pagination or other features. When I try to edit it with Elementor Pro, I encounter the same problem—just infinite scrolling.
I’m new to your theme and trying to learn how to use it. Could you please help me resolve this issue? I would appreciate any assistance you can provide.
Thank you!
my website is coming soon so there you are
Dear @doitmisr,
We hope this message finds you well.
We would like to inform you that when you choose to display product categories on the shop page, the pagination feature will be disabled. Consequently, the shop page will display all current product categories that contain more than zero products. Please note that pagination on the shop page is exclusively designed for individual products.
Thank you for your attention to this matter.
Best regards,
The 8Theme Team
Thanks fro fast answer great Team, i just have another quz please – remove Choose an option attribute from woocommerce product page, im working with Elementor pro and have some knowledge with code so if you can help me to make any value from my product can be show at first not Choose an option and i have +1k product so if you can help that will be very nice and thanks
Hi @doitmisr,
Please try adding the following code under functions.php file locates in your child theme:
add_filter( 'woocommerce_dropdown_variation_attribute_options_html', 'filter_dropdown_option_html', 12, 2 );
function filter_dropdown_option_html( $html, $args ) {
$show_option_none_text = $args['show_option_none'] ? $args['show_option_none'] : __( 'Choose an option', 'woocommerce' );
$show_option_none_html = '<option value="">' . esc_html( $show_option_none_text ) . '</option>';
$html = str_replace($show_option_none_html, '', $html);
return $html;
}
For more information, please take a look at this article: https://stackoverflow.com/a/51181676/2660153.
Best regards,
The 8Theme Team
I tried this code and it conflicts with the thumbnail product images that are supposed to appear below the main image. Therefore, I modified it more than once using the AI, but it did not help me because they are not familiar with the content of your theme. Therefore, I turned to you, as you do a lot for your customers.
You can see the difference in the two pictures with the content
Hi @doitmisr,
In this case, you have to turn off the Variation Gallery under XStore > Theme Options > WooCommerce(Shop) > Single Product Page > Variation Gallery:
I tried this code and it conflicts with the thumbnail product images that are supposed to appear below the main image.
Should you require further code customization, our team of expert developers is ready to assist you with bespoke solutions. For a detailed estimate and to discuss your specific requirements, please submit a request for customization services through the following link: [8Theme’s Customization Services](https://www.8theme.com/account/#etheme_customization_panel).
We appreciate your understanding and are here to support you with any additional questions or needs you may have.
Kind regards,
The 8Theme Team
Thats Make it Work Luca, Thanks A lot
Dear doitmisr,
We hope you’re reveling in the experience our theme brings! Your enthusiasm is what fuels our passion. Would you be so kind as to channel that energy into a 5-star rating on ThemeForest? Your feedback is the spark that lights our way!
Click here to spread the love: https://themeforest.net/downloads
Thank you for being an integral part of our journey!
Best Regards,
The 8Theme Team
The issue related to '‘displaying categories on my shop page issue’' has been successfully resolved, and the topic is now closed for further responses