• Please give me a clear explanation on exactly the steps required to remove these sections. I do not require them, thus I want them removed.

    How to remove the specific sections from homepage?

    You can use the remove_action() to remove the the specific sections. For example, you can use the following code to remove the product categories section.

    <?php remove_action( ‘lithestore_product_categories’, ‘lithestore_product_categories’);?>

    More hooks you can find in /framework/hooks.php

    That description does not work. Please give me a clear and working explanation, Thank You.

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

    (@badjohnny)

    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’);
    }

    Thread Starter blondebeard

    (@blondebeard)

    Not Working

    What exactly am I supposed to do here? This code isn’t working. Is it PHP?

    Thread Starter blondebeard

    (@blondebeard)

    One other thing. Is there a recommended image size for the 3 clickable featured categories?

    Theme Author badjohnny

    (@badjohnny)

    You should put those codes into the functions.php(you’d better use child theme to add your custom codes), they are PHP codes, not CSS.

    Theme Author badjohnny

    (@badjohnny)

    You can use 1200 x 800 picture or smaller as 600 x 400

    Thread Starter blondebeard

    (@blondebeard)

    Thanks John!

    Theme Author badjohnny

    (@badjohnny)

    That’s all right 😀

Viewing 7 replies - 1 through 7 (of 7 total)
  • The topic ‘Clear Explanation on Removal of “Hand Picked Stuff” and “Top Rated Products”’ is closed to new replies.