• Resolved adxp

    (@psychosis51)


    Hi There.

    We recently updated from 3.6.0 to 3.7.4, the [wcmp_vendorslist] shortcode styling completely changed.

    We don’t use the Map, but it’s there. The Vendor Card looks different.
    Vendor pages look totally different and the Products have disappeared.

    How can we resolve this?

    The page I need help with: [log in to see the link]

Viewing 5 replies - 1 through 5 (of 5 total)
  • Plugin Author MultiVendorX

    (@wcmp)

    Hi @psychosis51, From WCMp 3.7 (here is our changelog https://www.ads-software.com/plugins/dc-woocommerce-multi-vendor/#developers) we have changed the look of the Vendor list page : https://wcmpdemos.com/all-in-one-demo/vendors/

    However if you want to use the older look of vendor list page, then add this code in your current active theme functions.php file
    add_filter('wcmp_load_default_vendor_list', '__return_true');

    This should fix the issue on your site.

    Thread Starter adxp

    (@psychosis51)

    @wcmp Yes, this helped returning the old styling! Great, thanks!

    However,

    1. Vendor page styling is quite off
    The <div> with the container main-content classes is missing – do we need to copy the old Vendor Template?

    2. The products are hidden on the Vendor Page. They are outputted in the HTML, but not visible until you search them via the Browser Console > Elements. Once they show up, the Vendor header disappears.

    Thank you for the swift response. Looking forward to your update.

    Plugin Author MultiVendorX

    (@wcmp)

    @psychosis51, by vendor page, are you referring to vendor shop page?

    In that case, from WCMp 3.7 we have made vendor shop page compatible with elementor, hence we have added tabular mode.
    However, if you want to use the older look of vendor list page, you can use our filter.
    Ddd this below code in your currently active theme functions.php file
    add_filter('wcmp_load_default_vendor_store', '__return_true');

    But please note, if you use this filter, then you can’t use the elementor to edit the page.

    Thread Starter adxp

    (@psychosis51)

    @wcmp Thanks, this worked in fixing the Vendor Shop page.

    The products were still not visible.

    Turned out that it was caused due to:

    body, html {
        height: 100%;
    }

    in:
    /plugins/dc-woocommerce-multi-vendor/assets/frontend/css/wcmp-shop-page.min.css

    Overriding that in the Customizer to the following fixed it – seemingly:

    body, html {
        height: unset!important;
    }

    Thank you for the swift response again! Much appreciated!

    Plugin Author MultiVendorX

    (@wcmp)

    @psychosis51, great to know that you have added the fix.

    We will also check whether these are required. If not, we will try to remove them in our next update.

Viewing 5 replies - 1 through 5 (of 5 total)
  • The topic ‘Update from 3.6.0 to 3.7.4 wcmp_vendorslist Styling and Products disappeared’ is closed to new replies.