badjohnny
Forum Replies Created
-
Forum: Themes and Templates
In reply to: Cannot Remove Homepage Sections Child themeYes, you can write as below for new version of WordPress, I will correct the documentation.
add_action('init','remove_section'); function remove_section(){ remove_action( 'lithestore_on_sale_products', 'lithestore_on_sale_products'); remove_action( 'lithestore_popular_products', 'lithestore_popular_products'); }Hi
You can change the title text with loco translation plugin, just create a new language file, you can search Handpicked Stuffs text and change it.
It can’t display categories.
For the category title displaying issue, please make sure you update your theme to the latest version.
Thanks
Forum: Themes and Templates
In reply to: Featured Products not showing after updateHi @onesixtwo
First of all, please make sure you use the latest version of this theme. Then, you make sure you set the product as featured product, just click the start button to make it as featured. https://www.dropbox.com/s/mm16iqino1d8vkb/Screenshot%202017-05-05%2002.23.08.png?dl=0
Thanks
Forum: Themes and Templates
In reply to: Change text color comes out and edit EditYes, great!
Forum: Themes and Templates
In reply to: Featured Products not showing after updateHi
I will fix these issues in the new version, the current version of the theme is not compatible with WooCommerce 3.0
Thanks
Forum: Themes and Templates
In reply to: Navigation Bar Shows DisconnectedI think you have logged in your WP admin, so the admin bar should be displayed, but it didn’t. That’s why there is a space above the top bar.
Anyway, your solution is correct.
Forum: Themes and Templates
In reply to: Ways to load ‘home’ view on homepageHi
I checked it, that’s because the new version of WooCommerce has changed the HTML tag of the category grid.
I will fix it in the new version soon.
Thanks
Forum: Themes and Templates
In reply to: WooCommerce 3.0 CompatibilityYes, you are right! I will fix this issue in the new version of LitheStore.
Forum: Themes and Templates
In reply to: remove sidebar from main shop page (home)Hi
You need to edit page-templates/page-homepage.php, comment out or delete the following lines.
do_action( 'lithestore_before_main_content');and
do_action( 'lithestore_after_main_content');and
get_sidebar('home');And you can put the following codes to remove the sidebar on shop page.
remove_action( 'woocommerce_before_main_content', 'lithestore_before_main_content',20); remove_action( 'woocommerce_after_main_content', 'lithestore_after_main_content' ,10); remove_action( 'woocommerce_after_main_content', 'lithestore_shop_sidebar',20);Thanks
Forum: Themes and Templates
In reply to: Help! Categories not showing upHi
Could you post a screenshot to show me your Products > product category page(backend)?
Also, are the product categories already includes product posts?
Thanks
Sorry for the delay!
What the issues you are having? I see you listed in the other topics, right?
Forum: Themes and Templates
In reply to: Homepage Categories DisplayedHi
Currently, the category section only supports 3 column layout. So if you add more than 3 categories, they will display in two rows.
Thanks
Forum: Themes and Templates
In reply to: HeaderHi, you can use the following custom CSS to reduce the font size for mobile screen.
@media (max-width: 768px){ .section-title{font-size:24px;} }You can change the font size by yourself.
Thanks
Forum: Themes and Templates
In reply to: demo dataThanks. Maybe I will add page builder support in the future after I finished my WooCommerce related plugin.
Thanks
Forum: Themes and Templates
In reply to: Different header Text for Multi-sitesGreat!