Viewing 5 replies - 1 through 5 (of 5 total)
  • Theme Author badjohnny

    (@badjohnny)

    Hi

    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;
    }
    Thread Starter filmarkin

    (@filmarkin)

    Hi, thanks for your reply!

    If I add this code i see this – https://prntscr.com/g68fng

    This is screenshot from my admin panel – https://prntscr.com/g68hmn

    Please help me, how can I add text to categories may be I need to reinstall another version?- https://prntscr.com/g68gwr

    Theme Author badjohnny

    (@badjohnny)

    What’s the version of your WooCommerce? You’d better use the latest version.

    Thanks

    Thread Starter filmarkin

    (@filmarkin)

    Hi

    The version is 4.8.1

    Theme Author badjohnny

    (@badjohnny)

    Is your theme version 1.1.3? If possible, could you let me know your link?

Viewing 5 replies - 1 through 5 (of 5 total)
  • The topic ‘Help! Don’t show text in categories’ is closed to new replies.