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 - 526 through 550 (of 1,174 total)
  • Author
    Posts
  • in reply to: Cosmetic question: Vendor Store page header #125968

    Hello,

    For this firstly you need to override “wcfmmp-view-store-header.php” file in your theme folder. From “s\wp-content\plugins\wc-multivendor-marketplace\views\store” to “\wp-content\themes\your theme-folder\wcfm\store” .
    Add the below code in the overridden file. (PFA)

    $store_address_info_custom_class = '';
    if($store_info['store_hide_email'] == 'yes' && $store_info['store_hide_address'] == 'yes' && $store_info['store_hide_phone'] == 'yes') {
    	$store_address_info_custom_class = 'hide-vendor-header-infos';
    }

    Then add the css in your theme’s style.css

    #wcfmmp-store div.hide-vendor-header-infos {
        min-height: 100px !important;
    }
    #wcfmmp-store .wcfm_vendor_badges{
    	display: none;
    }

    Thanks.

    Attachments:
    You must be logged in to view attached files.

    Hello,

    To display file/upload custom field in vendor’s store page (about tab),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/

    add_action('wcfmmp_store_after_about','additonal_info_wcfmmp_store_after_about');
    function additonal_info_wcfmmp_store_after_about($vendor_id) {
    	global $WCFM, $WCFMmp, $wpdb;
    		
    	$wcfmmp_addition_info_fields = wcfm_get_option( 'wcfmvm_registration_custom_fields', array() );
    	if( empty( $wcfmmp_addition_info_fields ) ) return;
    	
    	$has_addition_field = false;
    	if( !empty( $wcfmmp_addition_info_fields ) ) {
    		foreach( $wcfmmp_addition_info_fields as $wcfmvm_registration_custom_field ) {
    			if( !isset( $wcfmvm_registration_custom_field['enable'] ) ) continue;
    			if( !$wcfmvm_registration_custom_field['label'] ) continue;
    			$has_addition_field = true;
    			break;
    		}
    	}
    	if( !$has_addition_field ) return;
    	$wcfmvm_custom_infos = (array) get_user_meta( $vendor_id, 'wcfmvm_custom_infos', true );
    	if( !empty( $wcfmmp_addition_info_fields ) ) {
    		foreach( $wcfmmp_addition_info_fields as $wcfmvm_registration_custom_field ) {
    			if( !isset( $wcfmvm_registration_custom_field['enable'] ) ) continue;
    			if( !$wcfmvm_registration_custom_field['label'] ) continue;
    			
    			$field_class = '';
    			$field_value = '';
    			
    			$wcfmvm_registration_custom_field['name'] = sanitize_title( $wcfmvm_registration_custom_field['label'] );
    			$field_name = 'wcfmmp_additional_infos[' . $wcfmvm_registration_custom_field['name'] . ']';
    			$field_id   = md5( $field_name );
    			$ufield_id  = '';
    		
    			if( !empty( $wcfmvm_custom_infos ) ) {
    				if( $wcfmvm_registration_custom_field['type'] == 'upload' ) {
    					$ufield_id = md5( 'wcfmvm_custom_infos[' . sanitize_title( $wcfmvm_registration_custom_field['label'] ) . ']' );
    					$field_value = isset( $wcfmvm_custom_infos[$ufield_id] ) ? $wcfmvm_custom_infos[$ufield_id] : '';
    					$field_value = wcfm_get_attachment_url($field_value);
    					echo '<img src="'.$field_value.'" />';
    				} 
    			}
    			
    		}
    	}					
    
    }

    Thanks.

    Hi,

    Sorry, but unfortunately we don’t have any shortcode for this.
    This is not possible using any small code snippet.
    It requires custom development, and this will be a paid one.
    If you are interested then please contact us here –https://wclovers.com/woocommerce-multivendor-customization/ with requirement.

    Thank You

    Hello,

    Try this below css/style in your theme’s style.css –

    .wcfm-membership-wrapper #wcfm_membership_container input[type="text"], .wcfm-membership-wrapper #wcfm_membership_container input[type="password"], .wcfm-membership-wrapper #wcfm_membership_container input[type="number"], #wcfm_membership_container select, #wcfm_membership_container .select2-container {
        display: block;
        width: 85%;
    }
    #wcfm_membership_container .wcfm_email_verified, #wcfm_membership_container .wcfm_sms_verified, #wcfm_membership_container .wcfm_store_slug_verified {
        margin-left: 0;
       
    }

    Thanks.

    Hello,

    To remove “cart, checkout, and privacy page” pages from Header Menu, you have to remove these “menu links” from Menus.(WP-admin dashboard -> Appearance -> Menus.

    Thanks.

    in reply to: How to change the default search radius? (google map) #125944

    Hello,

    Try this below code in your activated theme’s functions.php.

    function remove_woocommerce_actions() {	
    	add_action( 'woocommerce_before_shop_loop_item_title', 'wcfm_removewoocommerce_template_loop_product_thumbnail', 9 );
    }
    add_action( 'init', 'remove_woocommerce_actions' );
    function wcfm_removewoocommerce_template_loop_product_thumbnail(){
    	if ( function_exists( 'wcfm_is_store_page' ) && !wcfm_is_store_page()) {
    		remove_action( 'woocommerce_before_shop_loop_item_title', 'woocommerce_template_loop_product_thumbnail', 10 );
    	}
    }

    Thanks.

    Hello,

    You can send us site details/access here – https://wclovers.com/setup-guidance/

    Thanks.

    in reply to: Modify Store Page #125930

    Hi,

    To modify stores block you need to override “wcfmmp-view-store-lists-card.php” file in your theme folder. From “\wp-content\plugins\wc-multivendor-marketplace\views\store-lists” to “\wp-content\themes\flatsome-child\wcfm\store-lists”.

    Thanks.

    in reply to: Request a Quote Questions #125476

    Hello,

    As you understand this requirement is not possible using code snippet.
    It will requires serious custom development, and this will be a paid one.
    If you are interested then please contact us here – https://wclovers.com/woocommerce-multivendor-customization/ (with proper project of scope), our development team will reach you out.

    Thank You

    Hello,

    Yes we can see your website, and the link has not expired. please provide us the page link which contain this [wcfm_stores search_category="46"] shortcode.
    And please confirm is there any custom coding in your site or not?

    Thanks.

    Hello,

    Please check you have saved the “Maximum Radius to Search” settings 10km.(PFA) and added below code in your activated theme’s functions.php.

    add_filter('wcfmmp_radius_filter_start_distance',function($start_distance){
    return 1;
    });

    And please confirm whether you are able to see this picture2.png n front-end or not?

    Thanks.

    Attachments:
    You must be logged in to view attached files.

    Hello,

    This “Product Approval” option/checkbox will not work, this is only given to indicate the admin/you to set the capabilities from WCFM Dashboard -> Capability.
    So, this checkbox is disabled and it is not for the requirement which you want.
    Hope it will be clear to you.

    Thanks.

    in reply to: Modify Store Page #125466

    Hello,

    Sorry, unfortunately those modification is not possible by using UX-builder.
    We can help you, how to modify those sections using some custom development.
    To modify header sections, tabs you have to override the “wcfmmp-view-store-header.php” and “wcfmmp-view-store-tabs.php” files in your theme folder. From “\wp-content\plugins\wc-multivendor-marketplace\views\store” to “\wp-content\themes\flatsome-child\wcfm\store”

    To modify product blocks, you need to modify WooCommerce product blocks in shop page(The product blocks in vendor’s store page is same as WooCommerce shop page). You need to override content-product.php in your theme folder(yourtheme/woocommerce/content-product.php).

    Thanks.

    This reply has been marked as private.
    in reply to: Problem with default search redious bar #125455

    Hello,

    For this you need to adjust “Maximum Radius to Search” (From WCFM-dashboard->Settings->Geo Location)
    And then add below code in your theme’s functions.php

    add_filter('wcfmmp_radius_filter_start_distance',function($start_distance){
    	return 1;
    });

    We have already replied you https://wclovers.com/forums/topic/how-to-change-the-default-search-radius-google-map/ in this thread.

    Thanks.

    in reply to: How to remove About field in vendor profile #125369

    Hello,

    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/

    add_filter('wcfm_profile_fields_about',function($fields,$vendor_id) {	
    	unset($fields['about']);	
    	return $fields;
    },10,2);

    Thanks.

    in reply to: Group and staff error #125364

    Hello,

    Well, we are trying this(admin discount bug) but there are a lot of technical hiccups for incorporating this. Basically. it’s not possible ensure a perfect calculation based on the fact which coupon is chosen first by the customer.

    Thanks.

    This reply has been marked as private.
    in reply to: vendor-register Edit Form( Add field and remove it) #125362

    Hello,

    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/

    add_filter('wcfm_membership_registration_fields_address',function($fields) {
    	$fields['zip']['custom_attributes'] = array( 'required' => 0 );	 //Remove *(required) from postcode
    	unset($fields['zip']);	 //Remove postcode field from vendor registration
    	return $fields;
    });

    Thanks.

    in reply to: remove link from Sold By label #125360

    Hi,

    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/

    add_filter('wcfmmp_is_allow_sold_by_linked', '__return_false');

    Thanks.

    in reply to: Obligation to register as a vendor #125359

    Hello,

    To change Register Url in wordpress site, You have to add below code in your theme’s functions.php –

    add_filter( 'register_url', 'my_register_url' );
    function my_register_url( $url ) {
        if( is_admin() ) {
            return $url;
        }
        return "http://atolota.com/vendor-register/";
    }

    Suggestion : Turn-off “registration in My account page” from WooCommerce -> Settings -> Accounts & Privacy (PFA)
    And “Registration” Menu(which linked to http://atolota.com/vendor-register/) in your site Header-menu.

    Thanks.

    Attachments:
    You must be logged in to view attached files.

    Hello,

    These “Option” use for better Indication for admin/client. Our many user does not understand how to setup vendor capabilities. So, we make this option, and redirect them to our WCFM-capability section where you/admin can set capability for vendor.

    Thanks.

    Attachments:
    You must be logged in to view attached files.
    in reply to: Modify Store Page #125329

    Hello,

    It will be very helpful if you let us know what kind of modification you are looking for? Then We can guide you accordingly.
    Suggestion – You can modify many style using Elementer & WCFM – WCFM Marketplace integrate Elementor(https://wordpress.org/plugins/wc-frontend-manager-elementor/)

    Thanks.

    in reply to: How to Set a Default Product Description #125325

    You are always welcome 🙂

    Can we ask for a favor? Would you mind taking a few minutes to review our plugin at https://wordpress.org/support/plugin/wc-multivendor-marketplace/reviews/ and let others know about your 5 Star experience with WCFM Marketplace. Also, follow us on Twitter https://twitter.com/wcfmmp for more exciting news, important updates, and irresistible offers.

    We are closing this topic.

    Thanks.

    in reply to: edit store page #125321

    Hello,

    ・how can i edit store top page?
     /store/shop-1/
     WP admin bar does not showing Edit menu.

    >>Did you want to edit/modify the “store tabs” from vendor store page? Can you please explain us( with scrrenshot ), What modification are you looking for? then we can guide you properly.

    ・how can i change product clumns on store page?
     now products are 3 in 1 row.

    >>Try the code in your theme’s functions.php –

    add_filter('loop_shop_columns', 'loop_columns', 999);
    if (!function_exists('loop_columns')) {
    	function loop_columns() {
    		return 2; // 2 products per row
    	}
    }

    ・how can i show “store message(Vendor)” to Product page?
    >>By-default any custom vendor’ value is not display in product page. Can you please let us know which field value(store message, how to add store message?), you want to display in product page(where in product page?) ?
    Then we can guide you accordingly.

    Thanks.

Viewing 25 posts - 526 through 550 (of 1,174 total)