This topic has 3 replies, 3 voices, and was last updated 5 years, 8 months ago ago by Rose Tyler
hello ,
i need helpe to:
Change 1 Products Per Row store page in mobile
Change 3 Products Per Row store page in desktop
add language selec in mobile near cart
translate texte : ‘load more products’ in end of store page mobile.
thinks
Hello,
Customize > Woocommerce > Product Catalog > Products per row.
To translate theme you can with the help of Locotranslation plugin https://www.8theme.com/documentation/xstore/theme-translation/base-theme-translation/
For currency and language switcher :
If you want to get multi language site you need special plugins – WPML (paid) or one of the free plugins – qTranslate, Polylang. To get currency switcher you should use either WooCommerce WPML (if you choose WPML plugin) or WooCommerce Currency switcher plugin
Regards
Hello, @dcjeans amazon,
To set 1 product per row on mobile, add this code in Theme Options > Custom css > Custom css for mobile:
.products-grid .product {
width: 100% !important;
}
To achieve this result http://prntscr.com/msxdbf you can add this code in Theme Options > Custom css > Global custom css:
@media only screen and (max-width: 1030px){
.top-bar, .top-links .topbar-widget,
.top-bar .top-links {
display: block !important;
}
.top-bar .etheme_widget_socials {
display: none !important;
}
.et-toppanel-on .top-links {
width: 100%;
float: none;
text-align: right;
}
.top-bar .wpml-ls-legacy-dropdown {
max-width: 100%;
}
.top-bar .widget_icl_lang_sel_widget {
padding-right: 0px;
}
}
“Load More Products” relates to WooCommerce Infinite Scroll and Ajax Pagination plugin https://www.8theme.com/documentation/xstore/plugins/woocommerce-infinite-scroll-and-ajax-pagination-settings/
Regards
You must be logged in to reply to this topic.Log in/Sign up