Forum Replies Created
- AuthorPosts
- WCFM ForumMember
Please use it’s latest version = https://drive.google.com/file/d/1vrxY0wuGRvZ5ZvusZbWzw-jLbf0dYwUa/view?usp=sharing
WCFM ForumMemberHi,
Well, it’s not possible to edit dashboard template using Elementor. in fact if you edit dashboard page template using Elementor it will generate error or you will get 404 error.
Do you have edited “Store Manager” page template using Elementor?
WCFM – Elementor (https://wordpress.org/plugins/wc-frontend-manager-elementor/) addon is already there to create custom store page template using Elementor.
Thank You
WCFM ForumMemberHi,
Well, it’s not possible to edit dashboard template using Elementor. in fact if you edit dashboard page template using Elementor it will generate error or you will get 404 error.
Do you have edited “Store Manager” page template using Elementor?
WCFM – Elementor (https://wordpress.org/plugins/wc-frontend-manager-elementor/) addon only support store page custom template using Elementor.
Thank You
WCFM ForumMemberHi,
Well, it’s not possible to edit dashboard template using Elementor. in fact if you edit dashboard page template using Elementor it will generate error or you will get 404 error.
WCFM – Elementor addon is only for creating custom template for vendor’s store page.
Thank You
April 4, 2020 at 1:33 pm in reply to: Bug: Map on Vendors Listing Page not working when sidebar is customized #115279WCFM ForumMemberHi,
Please try this short code for this page – [wcfm_stores sidebar=”no”]
Thank you
WCFM ForumMemberSure, will add this in WCFM Ultimate next update.
Thank You
WCFM ForumMemberHi,
We already has this in plan.
Will add this prohibition soon.
Thank You
WCFM ForumMemberPlease add this code snippet to your site and take a look –
add_action ( 'wcfm_order_totals_after_total', function( $order_id ) { $order = wc_get_order( $order_id ); if ( WC()->payment_gateways() ) { $payment_gateways = WC()->payment_gateways->payment_gateways(); } else { $payment_gateways = array(); } $payment_method = ! empty( $order->get_payment_method() ) ? $order->get_payment_method() : ''; $td_style = ''; if( $payment_method ) { ?> <tr> <th class="label" colspan="2" style="text-align:right; <?php echo $td_style; ?>"><?php _e( 'Payment Method', 'wc-frontend-manager' ); ?>:</th> <td class="total" style="text-align:center; <?php echo $td_style; ?>"> <div class="view"> <?php echo isset( $payment_gateways[ $payment_method ] ) ? esc_html( $payment_gateways[ $payment_method ]->get_title() ) : esc_html( $payment_method ); ?> </div> </td> </tr> <?php } }, 50 );
Add this code to your child theme’s functions.php
In case you do not have child theme then add code using this plugin – https://wordpress.org/plugins/code-snippets/Thank You
WCFM ForumMemberI have already pass this message to our customization and hopefully they are already communicating with you.
WCFM ForumMemberHi,
Please add this line to your site and check once –
add_filter( 'wcfm_is_allow_desktop_notification', '__return_false' ); add_filter( 'wcfm_is_allow_new_message_check', '__return_false' );
Add this code to your child theme’s functions.php
In case you do not have child theme then add code using this plugin – https://wordpress.org/plugins/code-snippets/Thank You
WCFM ForumMemberAre you using this short code on site’s home page?
April 4, 2020 at 1:13 pm in reply to: Integrating Woocommerce Deposits with Stripe Split payment gateway #115268WCFM ForumMemberHi,
I’ve tried to use the Woocommerce Deposits but I had some problems with the split functionality.
– Well, WooCommerce deposit is the best solution for the purpose.
Kindly know me, what kind of issues you are getting using this?
Thank You
WCFM ForumMemberPlease contact us here for the purpose – https://wclovers.com/woocommerce-multivendor-customization/
WCFM ForumMemberHi,
the customer pays $ 100. the payment method for example paypal or another payment gateway discounts 4% when you deposit it in the administrator’s account and then 4% when the administrator releases the payment? is that so?
– Well, if your payment gateway charge is 4% then amount will credit into Admin’s account after deducting this.
You may deduct this from vendor’s commission as well by setting up “Transaction Charge” from WCFM Admin Setting -> Payment Setting – https://ibb.co/XtjFS2t
I will use a payment gateway for America, so it will always have to be manual payment, right?
– For vendor payout, right? Between, which payment gateways is this?Thank You
WCFM ForumMemberHi,
Which payment gateway you are using for payment?
Possibly this is not as per WooCommerce standard and does not trigger required WooCommerce order status update actions.
Please do a test using some other payment gateway and check whether you are getting same issue or not?
Also, kind share that payment gateway plugin url with me to check once!
Thank You
WCFM ForumMemberHI,
If mvmp gains lot of vendors and even more lets say 100000 products, then where to host all those images? From dropbox e.g?
– Well, this will be best to use Amazon S3 or Google Cloud for site’s media storage.
Between, if you are going to have that much large data for the site then be sure your server configuration is high enough to handle this. Otherwise site will slow down.
Thank You
WCFM ForumMemberHi,
Sorry, WCFM – Affiliate does not support MLM commission right now.
You may use this plugin for the purpose – https://codecanyon.net/item/ultimate-affiliate-pro-wordpress-plugin/16527729
Thank You
WCFM ForumMemberWell, WCFM Marketplace already has this module and even in Free version.
You just have to setup WCFM Admin Setting -> GEO Location – https://ibb.co/YBBwXxF
Hence you will have radius filter for store list page – https://wcfmmp.wcfmdemos.com/stores/
and product archive pages – https://wcfmmp.wcfmdemos.com/Thank You
WCFM ForumMemberCan you please share a demo vendor account with me to check this once?
WCFM ForumMemberHi,
Please check at wp-admin -> WooCommerce -> Status -> Logs -> fatal_erros log -> is any error generated?
Also check in Google Chrome Browser console, is there any JavaScript error happening to the site or not! (What is browser console – https://support.airtable.com/hc/en-us/articles/232313848-How-to-open-the-developer-console)
If you find any errors then please show me screenshot for those.
Thank You
WCFM ForumMemberSorry, not yet.
WCFM ForumMemberHi,
Please add this code to your site for the purpose-
add_action( 'woocommerce_checkout_order_review', function() { if( function_exists( 'is_checkout' ) && is_checkout() ) { $cart_vendors = array(); foreach ( WC()->cart->get_cart() as $cart_item_key => $cart_item ) { $cart_product_id = $cart_item['product_id']; $cart_product = get_post( $cart_product_id ); $cart_product_author = $cart_product->post_author; if( function_exists( 'wcfm_is_vendor' ) && wcfm_is_vendor( $cart_product_author ) ) $cart_vendors[$cart_product_author] = $cart_product_author; } if( !empty( $cart_vendors ) ) { echo '<div class="wc-gzd-checkbox-placeholder wc-gzd-checkbox-placeholder-legal" data-checkbox="vendor-terms"> <p class="legal form-row checkbox-legal validate-required" data-checkbox="vendor-terms"> <label for="legal" class="woocommerce-form__label woocommerce-form__label-for-checkbox checkbox"> <span class="woocommerce-gzd-legal-checkbox-text">Allgemeinen Geschäftsbedingungen von '; foreach( $cart_vendors as $cart_vendor ) { $store_user = wcfmmp_get_store( $cart_vendor ); echo '<a target="_blank" href="' .$store_user->get_policies_url() . '/#tab_links_area">' . wcfm_get_vendor_store_name( $cart_vendor ) . '</a>'; } echo ' einverstanden.<span></label></p></div>'; } } }, 11 );
Add this code to your child theme’s functions.php
In case you do not have child theme then add code using this plugin – https://wordpress.org/plugins/code-snippets/Thank You
WCFM ForumMemberWe have a special solution for this.
Please contact us here – https://wclovers.com/woocommerce-multivendor-customization/
Will give you that. No worries, this will be free solution.
Thank You
WCFM ForumMemberHi,
here is their example for adding google analytics: https://wpastra.com/docs/how-to-add-google-analytics-code-with-custom-layouts-module/
– For what purpose you are sharing this with us?
Thank You
WCFM ForumMemberPlease contact us here for the purpose- https://wclovers.com/woocommerce-multivendor-customization/
We have a custom solution for this, will give you that.
Thank You
- AuthorPosts