Home › Forums › WoodMart support forum › WC Marketplace (WCMP) and Woobmart
WC Marketplace (WCMP) and Woobmart
- This topic has 21 replies, 2 voices, and was last updated 2 years, 6 months ago by
Elise Noromit.
-
AuthorPosts
-
September 1, 2022 at 5:35 pm #400930
loraloraParticipantHello
Please tell me your email address where the WCMP plugin developer team can contact you https://ru.wordpress.org/plugins/dc-woocommerce-multi-vendor/ (
which will soon become https://github.com/multivendorx/MultiVendorX. (This is the same plugin, only they reworked the code)) to make it compatible.1. There has been a problem with the sidebar on the vendor’s page for several years, because of which it was necessary to block their sidebar (because your theme supports only your sidebars. ) Therefore, it turns out that the page of the vendor is broken. To finally solve the problem, could you share information with them.
2. When adding the name of the vendor in H1, changing the file (yourtheme/woocommerce/single-product/title.php), when switching to MultivendorX, an error occurs.
if ( ! defined( 'ABSPATH' ) ) { exit; // Exit if accessed directly. } $is_quick_view = woodmart_loop_prop( 'is_quick_view' ); ?> <h1 itemprop="name" class="product_title wd-entities-title"><?php add_vendor_after_product_title(); ?> <?php if ( $is_quick_view ) : ?> <a href="<?php the_permalink(); ?>"> <?php endif; ?> <?php echo get_the_title(); ?> <?php if ( $is_quick_view ) : ?> </a> <?php endif; ?> </h1>
Now there is a transition from the old version of the plugin to the new one, and part of the code stops working. Therefore, I am asking for your help and cooperation with the multivedora plugin development team.
September 2, 2022 at 12:54 pm #401069
Elise NoromitMemberHello,
We have checked the vendor page and sidebar works: https://prnt.sc/_xDruOoe5Siv, https://prnt.sc/v58fLWm4cdza
If it does not work, please provide a screen or video to see the problem.
If you want to change the template, you can do that by means of the child theme.
Best Regards
September 2, 2022 at 9:33 pm #401155
loraloraParticipant1. You are right, Elisa, it works for desktop. But please watch it in the mobile version.
The pop-up menu on the side) when opening the filters is a function of your wonderful theme. And unfortunately, the pop-up menu of filters in the mobile version (on the left) does not support the sidebar vendor.
The following happens: The menu of your topic opens and it is empty. And the content of the sidebar (sidebar from the multivendor plugin) is displayed under the description of the vendor page.
I will send you a photo to show you where the content from the sidebar plugin of the multivendor is displayed, on the store page of the brand, so that you understand what I am talking about.
Attachments:
You must be logged in to view attached files.September 3, 2022 at 7:28 pm #401226
loraloraParticipant3. Problem with “wd-shop-tools woodmart-woo-breadcrumbs” element. Obviously there is an incompatibility, the vendor’s shop page does not support breadcrumbs. I use yoast breadcrumbs. In your theme settings, I specified them, and they are displayed perfectly everywhere – except for the vendor page.
Yes, I checked – when switching to the storefront theme – there are breadcrumbs on the vendor page.
If you switch back – they are not.4. The problem with the “wd-shop-tools woodmart-shop-tools” element is in the wrong place – on the left. Not linear. And in the mobile version, it appears on the vendor’s store page – although it should not be there. (See photo)
Please contact them or give me an address to contact you to finally solve the long-standing problem of the display of elements.
4.Attachments:
You must be logged in to view attached files.September 5, 2022 at 2:51 am #401337
Elise NoromitMemberHello,
Please insert the site admin access into the Private content below the message area. We will take a closer look at the case.
Best Regards
September 5, 2022 at 7:57 pm #401526
loraloraParticipantI attached the rights to the test site, please take a look.
Apparently, part of the woodmart structure does not fall into the structure of the vendor’s store page, so breadcrumbs are not displayed.
And please – very important – check out the mobile version of the vendor page and the filter sidebar.
Vendor sidebar is not inserted into Woodmart filters sidebar.September 6, 2022 at 5:24 am #401567
Elise NoromitMemberHello,
Could you kindly check the site, it is not reachable: https://gyazo.com/55b6d0d83818274f709a5ccf867b1d05
Best Regards
September 6, 2022 at 1:33 pm #401688
loraloraParticipantHello
What country are you in?
Do you have any restrictions?This intermediate site is available
Attachments:
You must be logged in to view attached files.September 7, 2022 at 3:21 pm #402056
Elise NoromitMemberHello,
Unfortunately, there is no option to combine the vendor sidebar with the WoodMart sidebar.
Please add this code to the functions.php file of the child theme:
if ( ! function_exists( 'woodmart_breadcrumbs_on_vendor_page' ) ) { /** * Render breadcrumbs on vendor page. * * @return void */ function woodmart_breadcrumbs_on_vendor_page() { if ( ! defined( 'WCMp_PLUGIN_TOKEN' ) || ! is_tax( 'dc_vendor_shop' ) || ! woodmart_get_opt( 'shop_page_breadcrumbs', '1' ) ) { return; } woodmart_enqueue_inline_style( 'woo-shop-predefined' ); woodmart_enqueue_inline_style( 'woo-mod-shop-loop-head' ); ?> <div class="wd-breadcrumbs"> <?php woodmart_current_breadcrumbs( 'shop' ); ?> </div> <?php } add_action( 'woocommerce_before_shop_loop', 'woodmart_breadcrumbs_on_vendor_page' ); }
And add this code to code to the Theme Settings > Custom CSS:
.column-class.wcmp-middle-sec div:not(.wcmp-tab-header) { display: flex; flex-wrap: wrap; } .column-class.wcmp-middle-sec div:not(.wcmp-tab-header) .wd-breadcrumbs { margin-inline-end: auto; margin-bottom: 20px; } .column-class.wcmp-middle-sec div:not(.wcmp-tab-header) .products { flex: 1 1 100%; }
Best Regards
September 7, 2022 at 3:45 pm #402067
loraloraParticipantHello
Thanks Elisa, that helped.1. But I ran into another problem, most likely caused by the css code:
Title, price, etc. under the product moved out. Please take a look at the photo.
In the product output settings, I use the “Standard button”2. Sidebar and Please tell me if the multivendor plugin team can solve this issue? combine the vendor sidebar with the WoodMart sidebar?
Or maybe there is an opportunity to solve it together? They asked for your email address in order to contact you and fix the incompatibility – is this possible? I could let them know.
Maybe there is a way to force the vendor page to use the Woodmart theme sidebar?
Please help me.
Attachments:
You must be logged in to view attached files.September 7, 2022 at 4:16 pm #402083
loraloraParticipantElisa, please see another addition to question 1 (about breadcrumbs on the vendor page):
a. Missing woocommerce-result-count element.
b. The results of the count from the filter are displayed in the wrong place. (I am using the WooCommerce AJAX Products Filter https://wordpress.org/plugins/woocommerce-ajax-filters/)Attachments:
You must be logged in to view attached files.September 9, 2022 at 7:33 pm #402564
Elise NoromitMemberHello,
Unfortunately, we cannot customize the vendor page perfectly considering the page structure.
Let WCMP contact us by this email and we will do it in cooperation.
Best Regards
-
This reply was modified 2 years, 8 months ago by
Elise Noromit.
September 9, 2022 at 9:43 pm #402574
loraloraParticipantI passed your contact
Thanks for your responsiveness and supportSeptember 11, 2022 at 1:03 am #402712
Elise NoromitMemberHello,
Thank you!
We will let you know as soon as we get any results.
Best Regards
September 11, 2022 at 1:28 pm #402750
loraloraParticipantHello, about the code you gave me above (adding breadcrumbs. https://xtemos.com/forums/topic/wc-marketplace-wcmp-and-woobmart/#post-402056)
I noticed that in the Google console there was a duplicate store page woocommerce with capital letters. And he has 2 rows of breadcrumbs on his page. (the repeating row of breadcrumbs is in place if this were a blog page, not a wookomers. The duyukat appeared in capital letters. https://site.com/SHOP/
Also, I added the code on September 7th, and this page appeared on September 8th. Previously, 2 years of operation of the store, the problem of such duplicates has never arisen.
Can you please tell me if this could be due to the code?
Now I have removed the code for adding breadcrumbs to the vendor store page and am monitoring the result.September 12, 2022 at 3:56 pm #402973
Elise NoromitMemberHello,
Yes, this is caused by the code.
If you have any questions please feel free to contact us.
Best Regards
September 12, 2022 at 6:30 pm #403049
loraloraParticipantI understand
Can you please tell me if you managed to contact the WCMP development team?Will there be compatibility?
As far as I understand, if everything goes well, then I won’t have to use this code
September 13, 2022 at 3:33 am #403111
Elise NoromitMemberHello,
We have not got any emails from them, you can remind them.
Best Regards
September 19, 2022 at 9:34 pm #407077
loraloraParticipantHi
Tell me, please, did the developers of the multi-vendor plugin contact you?
I saw that they marked the topic with the problem as “Third Party”. Were you able to make compatibility?
September 20, 2022 at 2:49 pm #407345
Elise NoromitMemberHello,
Unfortunately, we have not received anything from them for now. Please advise the mail they will write to use, insert this mail into the private area.
Best Regards
October 28, 2022 at 9:43 pm #417247
loraloraParticipantMore than a month has passed, please tell me if you managed to coordinate and solve the incompatibility? …
October 30, 2022 at 1:23 am #417415
Elise NoromitMemberHello,
We have not received anything from the multi-vendor developers.
Did you contact them? We asked you to advise the mail to which they sent anything to. Could you get that?
Best Regards
-
This reply was modified 2 years, 8 months ago by
-
AuthorPosts
- You must be logged in to create new topics. Login / Register