Viewing 2 posts - 1 through 2 (of 2 total)
  • Author
    Posts
  • #1361575

    I have been using the WooCommerce Mix and Match Products List plugin with Enfold for years. It recently shows a conflict. The product page and login info is below within private details.

    I am currently displaying as a grid, set through Appearance > Customize > Woocomerce > Mix and Match Products. I cannot switch to list, which I have been using for years. I also cannot set the grid to any number of columns except 3. I do not see anything in custom CSS or functions.php relating to this.

    I also see the sidebar is shifted to the bottom of the single products page. How can I eliminate that sidebar from the single product pages?

    #1361669

    Hey Beth,
    Thanks for your patience and the link to your site, I’m not familiar with this plugin, but I took a look at your page through Appearance > Customize > Woocomerce > Mix and Match Products.
    You wrote that you cannot set the grid to any number of columns except 3, but I see that current columns are set to 5, I also tested changing them in the Customizer to 6 with no problems. You seemed to really want the list layout, so I tried this and it does work, but the css was a little off, so I added this css to your Enfold Theme Options ▸ General Styling ▸ Quick CSS field:

    .mnm_form.layout_tabular .products .product {
        display: table;
        width: 100%;
    }
    .mnm_form.layout_tabular thead,.mnm_form.layout_tabular tbody {
    	display: table;	
    	width: 100%;
    }
    .mnm_form.layout_tabular thead th.product-name {
    	text-align: center;
    }
    #top.single-product #main .sidebar_sidebar_right {
    	display: none;
    }

    please clear your browser cache and check, below I included a screenshot.

    Best regards,
    Mike

Viewing 2 posts - 1 through 2 (of 2 total)
  • You must be logged in to reply to this topic.