WC Lovers

WooCommerce Frontend Manager - Multivendor marketplace vendor dashboard

We're shifting our Forum based support to a more dedicated support system!

We'll be closing our Forum support from 10th June, 2020 and move to Email Support assistance.

  • If you are a WCFM premium add-ons user, contact us- here
  • Want to know more before buying our add-ons? Send Pre sale queries- here
  • If you are a WCFM free user, please open a support ticket at WordPress.org
  • For WCFM App related queries, reach us- here
From now the forum will be read-only!

Forum Replies Created

Viewing 25 posts - 126 through 150 (of 1,174 total)
  • Author
    Posts
  • Hi,

    You will find the text Loco translate -> Plugins -> WCFM – WooCommerce Frontend Manager -> select language -> search the string “admin fee” (https://docs.wclovers.com/locotranslate-translation-using-loco-translate-plugin/
    It will not work with the existing old order, it will work with new order details.

    Please for different issues create a different thread or post the issue in the respective thread.

    Thanks.

    in reply to: Registration on WCFM not working – #137231

    Hello,

    Regarding vendor who registered does not appear in Store Vendors,
    Kindly provide us your site admin access(username/password), then we can check this. (Set as private reply)

    Can the theme’s Login/Register be directed to [wcfm_vendor_registration]?
    >>We have already replied you in this #136547 thread.

    What should these settings be in WooCommerce?
    >>Please check the WooCommerce Settings documentation here – https://docs.woocommerce.com/document/configuring-woocommerce-settings/

    Thanks.

    in reply to: Registration Store Locator #137228

    Hello,

    By-default it’s not possible. The “Find Location” requires for a map point. Also the “Store Address” is required for display vendor address.
    Unfortunately Merging two fields is not possible using a code snippet.

    Thanks.

    in reply to: Product Custom Fields Not Saving Data #137201

    Yes, Please check here for more information – https://wclovers.com/knowledgebase/wcfm-custom-fields/
    Hope your problem is resolved. Then we are closing this topic.

    Thanks.

    in reply to: WCFM – No Bookable Product Showing #137199

    Hello,

    For this, it will require our premium WCFM-Ultimate plugin.
    For paid plugin support will required WCFM-Ultimate plugin(https://wclovers.com/product/woocommerce-frontend-manager-ultimate/)

    Thanks.

    Hello,

    add_action('init',function(){
    	global $WCFM, $WCFMmp;
    
    	remove_action('woocommerce_after_shop_loop_item_title', array( $WCFMmp->frontend, 'wcfmmp_sold_by_product' ), 9 );
    	remove_action('woocommerce_after_shop_loop_item_title', array( $WCFMmp->frontend, 'wcfmmp_sold_by_product' ), 50 );
    	
    });

    /try 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/

    Thanks

    in reply to: No pagination in Store List #137196

    Hello,

    Sorry, unfortunately as of now we haven’t the feature display store lists with pagination in the home page. In the “Home page” pagination will not work.
    What you can –
    1. Add “Store Lists” slider in the “Home Page” using [wcfm_stores_carousel includes=""] shortcode.
    OR
    2. Create another “Store lists” page, and in “home page” pagination redirect to that “Store lists” second page. Using below code –

    add_filter('wcfm_store_list_pagination_args',function($pagination_args){
    	if ( is_home() || is_front_page() ) {
    		$pagination_args['base'] = 'https://pedir.clicoapp.com/stores/page/%#%/'; /**create "stores" page**/
    	}
    	return $pagination_args;
    },10);

    Thanks.

    in reply to: How to show the main store list page? #137189

    Hi,

    Please check the documentation here – https://docs.wclovers.com/store-list/

    Thanks.

    in reply to: Vendors list #136793
    This reply has been marked as private.
    in reply to: Vendors list #136755
    This reply has been marked as private.
    in reply to: Setup Wizard page #136754

    Hello,

    Try this –

    add_filter( 'wcfm_is_allow_policy_settings', '__return_false' );
    add_filter( 'wcfm_is_allow_setup_customer_support', '__return_false' );
    add_filter( 'wcfm_is_allow_setup_social_profile', '__return_false' );

    Thanks.

    in reply to: Want TO REMOVE/override AN ACTION #136753

    Hello,

    Try this –

    add_action('init',function(){
    	global $WCFM, $WCFMmp;
    	remove_action('woocommerce_order_details_after_order_table', array( $WCFMmp->wcfmmp_vendor, 'wcfmmp_vendor_details_in_order' ),20,4 );
    });

    But if you want to remove the policy from order, then you can add below code for this –
    add_filter('wcfm_is_allow_policy_under_order_details', '__return_false');

    Thanks.

    in reply to: Top Seller Short Code Display Problem #136751

    Hello,

    Can you share us page URL where you are displaying “Top rated” seller, then we can guide you accordingly.

    Thanks.

    in reply to: Sticky Header Color Changing Problem #136750

    Hello,

    This is your theme issue, please contact with your theme support for this purpose.

    Thanks.

    in reply to: Vendor Registration Page Hidden by Black Column #136749

    Hello,

    The “black column” comes from your theme? Is it shows on all pages or only the registration page?

    Thanks.

    in reply to: Vendors list #136748

    Hello,

    Can you provide us your site access with site URL, then we can check your vendor list page.(Set as private reply)
    Before that please confirm you haven’t added any custom code in your site.

    Thanks.

    in reply to: Vendor registration validation #136596

    Hello,

    Using this code –

    add_action('wcfm_membership_registration_form',function(){
    })

    You can add custom field in the registration form, if you want without using WCFM dashboard->Settings->Vendor Regstration-> Custom field.
    But to add validation as per your requirement in a custom field, you need to write js script as we mentioned previous reply.

    Thanks.

    in reply to: Registration on WCFM not working – #136547

    Hello,

    Login/Register in my header, then “Register” – it does not correctly go to this page ([wcfm_vendor_registration])
    >> This is your theme’s login/register form. Yes it will not open “Vendor registration” form here. You can add “Become vendor” link in after the header register form .

    function custom_wcfmmp_become_vendor_link() {
    	global $WCFM, $WCFMmp;		
    		$hide_become_vendor = wcfm_get_option( 'wcfmvm_hide_become_vendor', 'no' );		
    		if( apply_filters( 'wcfm_is_allow_my_account_become_vendor', true ) && ( $hide_become_vendor !== 'yes' ) && WCFMmp_Dependencies::wcfmvm_plugin_active_check() ) {
    			if( wcfm_is_allowed_membership() && !wcfm_has_membership() && !wcfm_is_vendor() ) {
    				echo '<div class="wcfmmp_become_vendor_link">';
    				$wcfm_memberships = get_wcfm_memberships();
    				if( apply_filters( 'wcfm_is_pref_membership', true ) && !empty( $wcfm_memberships ) && apply_filters( 'wcfm_is_allow_my_account_membership_subscribe', true ) ) {
    					echo '<a href="' . apply_filters( 'wcfm_change_membership_url', get_wcfm_membership_url() ) . '">' . apply_filters( 'wcfm_become_vendor_label', __( 'Become a Vendor', 'wc-multivendor-marketplace' ) ) . '</a>';
    				} else {
    					echo '<a href="' . get_wcfm_registration_page() . '">' . apply_filters( 'wcfm_become_vendor_label', __( 'Become a Vendor', 'wc-multivendor-marketplace' ) ) . '</a>';
    				}
    				echo '</div>';
    			}
    		}
    }

    When I register a new Vendor through [wcfm_vendor_registration], their default role is “None”, not “Vendor”
    >>There is no “None” role in WordPress. If you turn-on “Required Approval” functionality for vendor registration, then by-default vendor will be registered as a “subscriber” role.

    The latest vendor I registered through [wcfm_vendor_registration] does NOT show in WCFM Store Manager
    You/admin have to approve vendor from “Notification dashboard” then it will display in “Store Vendors” in WCFM dashboard.(https://wclovers.com/wp-content/uploads/2018/08/wcfmmp_registration_approve.png)

    Thanks.

    in reply to: Vendors list #136545

    Hello,

    This is our WCFM plugin default feature.
    Maybe it’s not working due to some plugin conflict. Kindly disable all other plugins except WooCommerce and WCFM plugins with default WordPress theme and check.
    Let me know how it goes.
    We assume you have already setup Map Library and Google Map API Key(if using google map) from WCFM dashboard -> Settings -> Geo Location.
    and not using any custom code snippet.

    Thanks.

    in reply to: Registration on WCFM not working – #136485

    What is this? – [sc name=”wcfm_vendor_registration”] ??
    We have mentioned you the shortcode is – [wcfm_vendor_registration]
    PFA

    Attachments:
    You must be logged in to view attached files.
    in reply to: Product table view #136474

    Hi,

    Sorry, but due to COVID-19 we are getting 400-500 more support tickets each day. So we aren’t taking any customizations at this moment. If you can wait for couple of months then we can start your customization work. If you are interested then please contact us here – https://wclovers.com/woocommerce-multivendor-customization/

    Otherwise, It will be better to find someone who is accustom with WP development. If you face any difficulty at the time of development we will guide you accordingly.

    in reply to: Min/Max Quantities for Vendor-created Product #136470

    Hello,

    Please check the Capability(WCFM dashboard -> Capability) and check the capability group level also. “Min/Max Quantities” should be turn-on(PFA)

    Thanks.

    Attachments:
    You must be logged in to view attached files.
    in reply to: Registration on WCFM not working – #136468

    Hello,

    Have you check the pages in your WordPress dashboard? Is there any page with this “[wcfm_vendor_registration]” shortcode? If not kindly create a page with this “[wcfm_vendor_registration]” shortcode and browse it. You will find the Vendor registration form.

    Thanks.

    Hello,

    Add this code in your theme’s functions.php, and modify the “href” of a tag as per your requirement.

    add_action('init',function(){
    	global $WCFM, $WCFMmp;
    	remove_action('woocommerce_register_form_end', array( $WCFMmp->frontend, 'wcfmmp_become_vendor_link' ) );
    	remove_action('woocommerce_after_my_account', array( $WCFMmp->frontend, 'wcfmmp_become_vendor_link' ) );
    	add_action( 'woocommerce_after_my_account', 'custom_wcfmmp_become_vendor_link' );
    	add_action( 'woocommerce_register_form_end', 'custom_wcfmmp_become_vendor_link' );
    });
    
    function custom_wcfmmp_become_vendor_link() {
    	global $WCFM, $WCFMmp;		
    		$hide_become_vendor = wcfm_get_option( 'wcfmvm_hide_become_vendor', 'no' );		
    		if( apply_filters( 'wcfm_is_allow_my_account_become_vendor', true ) && ( $hide_become_vendor !== 'yes' ) && WCFMmp_Dependencies::wcfmvm_plugin_active_check() ) {
    			if( wcfm_is_allowed_membership() && !wcfm_has_membership() && !wcfm_is_vendor() ) {
    				echo '<div class="wcfmmp_become_vendor_link">';
    				$wcfm_memberships = get_wcfm_memberships();
    				if( apply_filters( 'wcfm_is_pref_membership', true ) && !empty( $wcfm_memberships ) && apply_filters( 'wcfm_is_allow_my_account_membership_subscribe', true ) ) {
    					echo '<a href="' . apply_filters( 'wcfm_change_membership_url', get_wcfm_membership_url() ) . '">' . apply_filters( 'wcfm_become_vendor_label', __( 'Become a Vendor', 'wc-multivendor-marketplace' ) ) . '</a>';
                                        //change href
    				} else {
    					echo '<a href="' . get_wcfm_registration_page() . '">' . apply_filters( 'wcfm_become_vendor_label', __( 'Become a Vendor', 'wc-multivendor-marketplace' ) ) . '</a>'; //change href
    				}
    				echo '</div>';
    			}
    		}
    }

    Thanks.

    in reply to: Vendor registration validation #136444

    Hello,

    Add below script/js in your theme’s js file, and modify the validation logic-

    if($("#wcfm_membership_registration_form input[name='wcfmvm_custom_infos[custom-zipcode]']").length > 0) {
           $( document.body ).on( 'wcfm_form_validate', function( event, validating_form ) {
              $form = $(validating_form);          
              $wcfm_is_valid_form = false;
              var is_valid = checkStrength($("#wcfm_membership_registration_form input[name='wcfmvm_custom_infos[custom-zipcode]']").val());
              if(is_valid) {
                $wcfm_is_valid_form = true;
              } else {
                $("#wcfm_membership_registration_form input[name='wcfmvm_custom_infos[custom-zipcode]']").attr('data-mismatch_message','Invalid Zipcode Number.');
                $("#wcfm_membership_registration_form input[name='wcfmvm_custom_infos[custom-zipcode]']").removeClass('wcfm_validation_success');      
                $("#wcfm_membership_registration_form input[name='wcfmvm_custom_infos[custom-zipcode]']").addClass('wcfm_validation_failed');      
                  console.log('false');
    
                $('#wcfm_membership_container .wcfm-message:not(.email_verification_message, .sms_verification_message)').html( '<span class="wcicon-status-cancelled"></span>' + $("#wcfm_membership_registration_form input[name='wcfmvm_custom_infos[custom-zipcode]']").data('mismatch_message') ).addClass('wcfm-error').slideDown();
                $wcfm_is_valid_form = false;
              }         
          });
        }
       
     /*modify the validation logic here*/
      function checkStrength(zipcode) {   
        if(isNaN(zipcode)){      
          return $wcfm_is_valid_form = false;
        } else {
          return $wcfm_is_valid_form = true;
        }
      }

    replace the #wcfm_membership_registration_form input[name='wcfmvm_custom_infos[custom-zipcode]'] with your field selector.

    Thanks.

Viewing 25 posts - 126 through 150 (of 1,174 total)