Home Forums WoodMart support forum Delete price filter & make widget fit to 5 widget

Delete price filter & make widget fit to 5 widget

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

    drkshdw
    Participant

    Before I see someone have problem same with me, you tell him to add this to child theme
    add_filter( ‘basel_use_custom_price_widget’, ‘__return_false’, 10 );
    But price filter still showing. How to remove it then?

    How to make widget shop fit to 5 widget?
    I change style.css and sytle.min.css from .filters-inner-area>div:nth-child(4n+1) to .filters-inner-area>div:nth-child(5n+1) but didn’t change why? But, when I manually edit element it’s works. Can you tell me why?

    #25546

    Artem Temos
    Keymaster

    Hi,

    Try to replace the code with this one

    add_filter( 'woodmart_use_custom_price_widget', '__return_false', 10 );

    And add the following CSS code to the Custom CSS

    .filter-widget {
    	width:20%!important;
    }
    
    div.filters-inner-area > div:nth-child(4n+1) {
      clear: none; 
    
    }
    
    div.filters-inner-area > div:nth-child(5n+1) {
      clear: both; 
    }

    Regards

    #25902

    drkshdw
    Participant

    Thanks!

    I want to ask again. How to make this not full like this http://prntscr.com/hg6muw when I use site width: content full width I just want image and add to cart area not full.

    #25919

    Artem Temos
    Keymaster

    Hi,

    You can try our “Wide” layout instead of content full width.

    Regards

    #25930

    drkshdw
    Participant

    Sorry not clear about what I want. I mean, I want site width with content full width except product page. For product page I want look like when I set full width on site width option. Like demo image I sent before.

    #25935

    Artem Temos
    Keymaster

    But this option works globally for all pages on the site. You can’t set different width on the single product page only.

    #25984

    drkshdw
    Participant

    How about custom css? I stuck about this

    #26006

    Artem Temos
    Keymaster

    Could you please provide us your website access so we can take a look what can be done there?

    #26044

    drkshdw
    Participant

    This:

    #26054

    Artem Temos
    Keymaster

    Try this code

    .single-product-page .container {
    	max-width: 1300px!important;
    }
    #26076

    drkshdw
    Participant

    Thank you!

    #26087

    Artem Temos
    Keymaster

    You are welcome!

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

The topic ‘Delete price filter & make widget fit to 5 widget’ is closed to new replies.