Home Forums WoodMart support forum AFter 1.9 update Search over topbar

AFter 1.9 update Search over topbar

Viewing 12 posts - 1 through 12 (of 12 total)
  • Author
    Posts
  • #32849

    zagas
    Participant

    Hello, after updating to 1.9 a Search is always over topbar, how can i remove it?

    Attachments:
    You must be logged in to view attached files.
    #32872

    Artem Temos
    Keymaster

    Hi,

    You need to clear your browser cache to see the changes.

    Regards

    #32892

    zagas
    Participant

    Ok ty, one other question, on shop page i put -1 to abel show all products, but when i push show all(alla) it only shows 12 products, how can i make it work?

    #32902

    Artem Temos
    Keymaster

    Where we can see this problem on your website?

    #32907

    zagas
    Participant

    https://zagas.se/shop/ then push alla

    Attachments:
    You must be logged in to view attached files.
    #32919

    Artem Temos
    Keymaster

    Provide us your FTP access so we can check it.

    #33043

    zagas
    Participant

    Ok

    #33087

    Artem Temos
    Keymaster

    Try to add the following PHP code snippet to the child theme functions.php file to do this

    function woodmart_shop_products_per_page() {
    	$per_page = 12;
    	$number = apply_filters('woodmart_shop_per_page', woodmart_get_products_per_page() );
    	if( is_numeric( $number ) ) {
    		$per_page = $number;
    	}
    	return $per_page;
    }
    
    add_filter( 'loop_shop_per_page', 'woodmart_shop_products_per_page', 20 );
    #33151

    zagas
    Participant

    I dont have a child theme, how can i make it?

    #33163

    Artem Temos
    Keymaster

    You can install and activate the child theme as other regular themes in Appearance -> Themes. Find the child theme zip file in the downloaded package from ThemeForest.

    #33176

    zagas
    Participant

    Ok, ty, does this need to be updated when updating the normal theme? Will any change be made or is their any risk of broke any functions if i activate it?

    #33191

    Artem Temos
    Keymaster

    No, you don’t need to update the child theme in the future.

Viewing 12 posts - 1 through 12 (of 12 total)