Forum Replies Created
-
AuthorPosts
-
Raju The Cool Guy
KeymasterHi,
You can check by using this waywp_delete_object_term_relationships($product->ID, $WCMp->taxonomy->taxonomy_name); wp_set_object_terms($product->ID, (int) $term_id, $WCMp->taxonomy->taxonomy_name, true);Thanks
Raju The Cool Guy
KeymasterHi, we checked this.
By default we use WooCommerce hook/filter, to remove add to the cart.
Now the plugin that you are using has overridden the woocommerce filter and added modifictaion, therefore it is showing add to cart.
Please do ask the plugin author of the product filter to check how we are hiding the add to cart: https://github.com/wcmarketplace/woocommerce-catalog-enquiry/blob/master/classes/class-woocommerce-catalog-enquiry-frontend.php#L242
They need to follow the same for your site.
Raju The Cool Guy
KeymasterHi @Luca Tocco,
After our update, you can use this below code in your currently active theme funtions.php fileadd_filter('woocommerce_catalog_limit_backend_product', function($products) { $products['posts_per_page'] = 12; return $products; });Thanks
Raju The Cool Guy
KeymasterHi,
You might have a huge number of products on your site. We have to show all products on the exclusion option list. So that users can exclude that product. So if you have huge numbers of products then you have modified them in this way. In our next update, we will add a filter, so that you can modify it as your wish.Raju The Cool Guy
KeymasterThis reply has been marked as private.March 8, 2022 at 9:04 PM in reply to: double buttons, not hidden prices on Product Pages – WCMp Catalog Enquiry #135205Raju The Cool Guy
KeymasterHi,
Extra add to cart is coming from your theme. They might customize woocommerce hook. Ask them to share a code to remove that part.
ThanksMarch 2, 2022 at 8:55 PM in reply to: double buttons, not hidden prices on Product Pages – WCMp Catalog Enquiry #135018Raju The Cool Guy
KeymasterHi,
We have fixed your site issue by adding this below code in functions.php fileadd_action('init', function() { global $Woocommerce_Catalog_Enquiry; $settings = $Woocommerce_Catalog_Enquiry->options_general_settings; if (isset($settings['is_remove_price_free']) && $settings['is_remove_price_free'] == "Enable") { remove_action('woocommerce_single_product_summary', 'woocommerce_template_single_price', 20); } }, 999);You can check your stagging site
ThanksRaju The Cool Guy
Keymaster@Adrien, currently we are working on new structure of WCMp. Once this will be done, the team will start working on Mangopay.
Raju The Cool Guy
Keymaster@tanmalik786, as said in our previous thread, it has not been implemented. That is why we have opened the git file, so you can track the progress of this flow.
Also, recently we are working on major enhancements such as shipping, commission, payment, etc. Once these will be done, we have plan to work on this feature. Hopefully with WCMp 3.9Raju The Cool Guy
Keymastertanmalik786, let me help you out with our flow and sorry for the inconvenience so far:
– Admin configures the commission amount via WCMp >> Settings >> payment.
– However, when the vendor will add a product, he can’t see the commission amount. He will add the commission amount. Now admin can always let them know regarding the commission module they have for the site.Now the flow you are looking for i.e. Increase product price base on commission, is not supported yet.
However, I have opened a git link for this https://github.com/wcmarketplace/dc-woocommerce-multi-vendor/issues/892
Depending upon mass request and availability of resources, the team would be in a situation to proceed further.Raju The Cool Guy
KeymasterHi @jordan, This is a type of 3d secure payment like stripe/PayPal. Maybe they have newly enhanced their api.
We need to check the total doc and need to do some research on it. Forgiving this support we need to modify the complete code and add it as per the new MANGOPAY structure. WE also need to communicate with MANGOPAY for this.
But, we will surely start R&D abount this.
Raju The Cool Guy
KeymasterHi @jordan,
Actually, it needs a good amount of time. For that, we need to communicate with MANGOPAY that they support multiple user transactions at the same time or not. Then We will do the further enhancement.Raju The Cool Guy
KeymasterHi @Jonathan Barber,
We will definitely help you out, and yes having help from elementor team will help us a lot, fixing this issue. So, please send them an email, keeping our team (contact@wc-marketplace.com) in the loop.
Also, please do share the elementor pro plugin with us, so we can check this on our end.Raju The Cool Guy
KeymasterHi @Jonathan Barber,
We have work on “woocommerce_single_product_summary” this woocommerce hook. which is on woocommerce/templates/content-single-product.php file.Elementor may have overridden this template, that is why this woocommerce hook not working. also whenever we print something on this content-single-product.php woocommerce default hook this is not getting reflected on a single product page.
Can you please communicate with the plugin author, so they can help us further.
-
AuthorPosts