badjohnny
Forum Replies Created
-
Forum: Plugins
In reply to: [CMB2] taxonomy_multicheck_inline field output “Invalid taxonomy.”I use cmb2_admin_init hook. I use this option on the plugin options page, not meta box, it means the object_type is options-page.
I also changed the other themes, but it seems nothing to do with the theme or other plugins.
Forum: Plugins
In reply to: [Wallet for WooCommerce] Is there any add-on for gift amount?Thanks! I will give a test!
I fixed.
It’s caused by the theme javascript. Because I added a trigger event on the checkout button.
You can close this topic.
Thanks
Forum: Themes and Templates
In reply to: [LitheStore] Lithestore child theme thumbnails are blurryThese are my screenshots, they look as same as each other
English https://www.dropbox.com/s/4mtqlcig3nodsmn/Screenshot%202018-02-25%2017.38.26.png?dl=0 https://www.dropbox.com/s/gyq6hyddxhew95v/Screenshot%202018-02-25%2017.39.19.png?dl=0
Can you post your screenshot?
Hi
The header image is resized by CSS (background-size:cover;), it’s hard to make the mobile version looks as same as it’s displayed on the desktop unless you write some custom CSS to adjust the header picture size for each different size of the mobile devices.
You want to disable image zooming?
Forum: Themes and Templates
In reply to: [LitheStore] cart count not show counterHi
I’m not sure what mean about ‘counter, count number’. I updated the theme to 1.1.5, now the cart count is displayed as normal.
Thanks
Forum: Themes and Templates
In reply to: [LitheStore] Shop SidebarHi
Please update this theme to v1.1.5, then go to Appearance > Customize, access to shop page in the right preview area, then you will see “Shop Page” section display to the right sidebar, click it and change the sidebar position there.
Thanks
Forum: Themes and Templates
In reply to: [LitheStore] Scrolling banner on homepage?I’m sorry that this free theme doesn’t include options for adding banners on the home page, to be honest, it’s not highly customizable, it more like a basic framework for our other themes, and we are planning to rebuild the free version based on another powerful page builder – Elementor, give users more customizable space. And we will also have a plan for the Pro version (still in the discussion)
Based on the current template, if you want to insert something into the home page, you may write some custom PHP codes or JS codes with the hooks.
For example, insert a fullwidth banner between “Handpicked Stuffs” and “Top Rated Products” sections, you may add the following custom codes into functions.php
add_action('lithestore_after_featured_products', 'my_first_banner_section'); function my_first_banner_section(){ echo '<div class="banner">...add the content in the banner container....</div>'; }
Thanks
Forum: Themes and Templates
In reply to: [LitheStore] Scrolling banner on homepage?Hi
For these two needs, maybe you can try KingComposer page builder plugin, I know this plugin has many useful elements such like blog post and so on, you can add everything to the page.
Thanks
Forum: Themes and Templates
In reply to: [LitheStore] Handpicked StuffsSorry for the long time delay.
When you check the product list page in the WP admin, you will see a star button in each product item, just click that star button.
Thanks
Forum: Themes and Templates
In reply to: [LitheStore] Help! Don’t show text in categoriesIs your theme version 1.1.3? If possible, could you let me know your link?
Forum: Themes and Templates
In reply to: [LitheStore] Help! Don’t show text in categoriesWhat’s the version of your WooCommerce? You’d better use the latest version.
Thanks
Forum: Themes and Templates
In reply to: [LitheStore] Help! Don’t show text in categoriesHi
First of all, please make sure you use the latest version 1.1.3 of LitheStore.
At this stage, you can only add the following custom codes into functions.php to change the product categories layout to 4 columns.
add_filter('lithestore_product_categories_args','custom_product_categories'); function custom_product_categories($args){ $args = array( 'limit' => 4, 'columns' => 4, 'child_categories' => 0, 'orderby' => 'name', 'title' => __( 'Product Categories','lithestore' ), ); return $args; }
Forum: Themes and Templates
In reply to: [LitheStore] Removing header on BlogSorry, I don’t understand. Did you mean the homepage header image was automatically display in the other pages?