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 - 776 through 800 (of 1,174 total)
  • Author
    Posts
  • in reply to: Question regarding different vendor store templates #118944

    Hello,

    Sorry, Unfortunately it’s not possible. For all vendor store you can only use one store template.

    Thanks.

    Hello,

    It is not feasible to sync store terms and condition to all products,
    What you can do is use this code to display store’s term&conditions in each product.

    add_filter('wcfm_policies_tab_element','custom_wcfm_policies_tab_element');
    function custom_wcfm_policies_tab_element ($fields) {
    	$fields['callback']	= 'fn_product_vendor_policy';
    	return $fields;
    }
    function fn_product_vendor_policy() {
    	global $WCFM, $product;
    	$vendor_id  = wcfm_get_vendor_id_by_post( $product->get_id() );
    	$store_user      = wcfmmp_get_store( $vendor_id );
    	$wcfm_policy_vendor_options = $store_user->get_store_policies();
    
    	$wcfm_policy_options = wcfm_get_option( 'wcfm_policy_options', array() );
    
    	$shipping_policy = isset( $wcfm_policy_vendor_options['shipping_policy'] ) ? $wcfm_policy_vendor_options['shipping_policy'] : '';
    	$_wcfm_shipping_policy = isset( $wcfm_policy_options['shipping_policy'] ) ? $wcfm_policy_options['shipping_policy'] : '';
    	if( wcfm_empty($shipping_policy) ) $shipping_policy = $_wcfm_shipping_policy;
    			
    	$refund_policy = isset( $wcfm_policy_vendor_options['refund_policy'] ) ? $wcfm_policy_vendor_options['refund_policy'] : '';
    	$_wcfm_refund_policy = isset( $wcfm_policy_options['refund_policy'] ) ? $wcfm_policy_options['refund_policy'] : '';
    	if( wcfm_empty($refund_policy) ) $refund_policy = $_wcfm_refund_policy;
    			
    	$cancellation_policy = isset( $wcfm_policy_vendor_options['cancellation_policy'] ) ? $wcfm_policy_vendor_options['cancellation_policy'] : '';
    	$_wcfm_cancellation_policy = isset( $wcfm_policy_options['cancellation_policy'] ) ? $wcfm_policy_options['cancellation_policy'] : '';
    	if( wcfm_empty($cancellation_policy) ) $cancellation_policy = $_wcfm_cancellation_policy;
    	?>
    	<div class="wcfm-product-policies">
    		  <?php do_action( 'wcfm_policy_content_before', $product->get_id() ); ?>
    		  
    			<?php if( !wcfm_empty($shipping_policy) ) { ?>
    			  <div class="wcfm-shipping-policies">
    					<h2 class="wcfm_policies_heading"><?php echo apply_filters('wcfm_shipping_policies_heading', __('Shipping Policy', 'wc-frontend-manager')); ?></h2>
    					<div class="wcfm_policies_description" ><?php echo $shipping_policy; ?></div>
    			  </div>
    			<?php } if( !wcfm_empty( $refund_policy ) ) { ?>
    			  <div class="wcfm-refund-policies">
    					<h2 class="wcfm_policies_heading"><?php echo apply_filters('wcfm_refund_policies_heading', __('Refund Policy', 'wc-frontend-manager')); ?></h2>
    					<div class="wcfm_policies_description" ><?php echo $refund_policy; ?></div>
    			  </div>
    			<?php } if( !wcfm_empty( $cancellation_policy ) ) { ?>
    			  <div class="wcfm-cancellation-policies">
    					<h2 class="wcfm_policies_heading"><?php echo apply_filters('wcfm_cancellation_policies_heading', __('Cancellation / Return / Exchange Policy', 'wc-frontend-manager')); ?></h2>
    					<div class="wcfm_policies_description" ><?php echo $cancellation_policy; ?></div>
    			  </div>
    			<?php } ?>
    			
    			<?php do_action( 'wcfm_policy_content_after', $product->get_id() ); ?>
    		</div>
    	<?php
    }

    Thanks.

    in reply to: Remove site header from vendors page #118792

    Hello,

    As mentioned earlier Store lists page https://globalmerchant.co.za/shop-here/ it’s working properly from our end.
    Just check once, Turn off the “Enable Auto Filter” from WCFM dashboard -> Settings -> Geo Location

    Thanks.

    in reply to: Ability to edit homepage image #118791

    Hello,

    That’s really strange!
    Our WCFM plugins are tested with STOREFRONT theme, and it’s working perfectly.
    Can you share us your site details then we can check your site.

    Thanks.

    in reply to: WCFM Stores on Homepage #118789

    Hello,

    We have checked in your site, by only activating WooCommerce and our WCFM plugin, we are able to edit pages. (PFA)
    It seems like there is some conflict with other plugin when activated.

    Thanks.

    Attachments:
    You must be logged in to view attached files.
    in reply to: Remove site header from vendors page #118774

    Hi,

    Add the css end of the style.css file.

    Thanks.

    in reply to: Ability to edit homepage image #118771

    Hello,

    Kindly turn off the “Backend Access” from Admin WCFM Store Dashboard -> Capability -> Backend Access (PFA)

    Thanks.

    Attachments:
    You must be logged in to view attached files.
    in reply to: Hide Store Radius Slider and A Constant Radius #118730

    Hello,

    Unfortunately we don’t have exactly same functionality, but you can achieve this by enable the “Enable Auto Filter” from WCFM Store dashboard ->settings -> Geo location. (PFA)

    Thanks.

    Attachments:
    You must be logged in to view attached files.
    in reply to: Remove site header from vendors page #118724

    Hi,

    Regarding site header be removed from the vendors page, Add this css in your activated theme’s style.css

    .wcfm-store-page.wcfmmp-store-page .np-logo-section-wrapper {
        display: none;
    }

    And, Store lists page https://globalmerchant.co.za/shop-here/ it’s working properly from our end. (PFA)

    Thanks.

    Attachments:
    You must be logged in to view attached files.
    in reply to: WCFM Stores on Homepage #118719

    Hello,

    To remove “country” filter, Add this code in your activated theme’s functions.php,
    add_filter('wcfmmp_is_allow_store_list_country_filter','__return_false');

    the stores widgets on homepage are still invisible
    >>Sorry, it will not work for home page. The “Store widgets” are for only “Store list” page.

    Thanks.

    in reply to: Sort Vendors by Category #118718

    Hello,

    Regarding filter by vendor category, we have a custom solution for this.

    Please reach us here – https://wclovers.com/setup-guidance/ (with the topic link)

    Will share that with you.

    Thanks.

    Hi,

    Yes Our WCFM Ultimate 6.4.8 is compatible with “Measurement Price Calculator” plugin.

    Thanks.

    in reply to: WCFM Stores on Homepage #118666

    Hello,

    It seems like there was a problem in site setup.
    Whatever We have setup your Store lists page : https://demo.merkatoo.fr/store-lists

    Thanks.

    Hi,

    It will take customization.
    Please contact us here for the purpose – https://wclovers.com/setup-guidance/ with your requirement details.We will send you the quotation accordingly.

    Thanks.

    in reply to: Remove site header from vendors page #118657

    Hello,

    “can the site header be removed from the vendors page?”
    >> Ok, you can remove this section using some css. In this page you can find “wcfm-store-page” class in your HTML body. Can you share us the store page URL, then can guide you with proper css code.

    Regarding email delay, please contact with your server admin. It’s not our WCFM plugins issue.

    Thanks.

    in reply to: Packing Slip Customer Information #118654

    Hello,

    We have already mentioned you, you need to override “packing-slip.php” file from “wc-frontend-manager-ultimate” to your child theme and update the “packing-slip.php” file.

    Thanks.

    in reply to: Vendor Page does not adhere to site template #118651

    Hello,

    We have tested Tempera theme(https://wordpress.org/themes/tempera/) with our WCFM plugins in our local server, and it’s working perfectly.
    Yes, we have noticed that “https://byfarmers.market/lagrangetx/stores&#8221; not working for you, please share us your site(https://byfarmers.market/lagrangetx) access details(Set as private reply), then we can check your site.

    Thanks.

    in reply to: Membership payment issue #118647

    Hello,

    Kindly setup “Payment Mode” in each “membership plan” and un-checked the “Free Membership” option. (PFA)
    Ref : https://wclovers.com/knowledgebase/wcfm-membership/
    https://www.youtube.com/embed/SfOMIxNfr3w

    Thanks.

    Attachments:
    You must be logged in to view attached files.
    in reply to: Packing Slip Customer Information #118488

    Hi,

    Well, you have to override this template for the purpose -> “wc-frontend-manager-ultimate\views\vendor_invoice\packing-slip.php” under your child theme/wcfm/vendor_invoice/” and remove the data which you don’t need.

    Thanks.

    in reply to: WCFM Stores on Homepage #118482

    Hello,

    Our WCFM plugin is tested with “Store Front” theme and it’s works perfectly.
    It seems like there is some conflict with some other plugin in your site. It will be better if you provide us the admin access of your site, then we can check your site.

    Thanks.

    in reply to: Create "_price" in database #118479

    Hello,

    Can you please explain us what exactly are you looking for?

    Regarding new meta save at the time of product creation/update,

    add_action( 'after_wcfm_products_manage_meta_save', 'fn_custom_product_meta_save',10,2 );
    function fn_custom_product_meta_save($new_product_id, $wcfm_products_manage_form_data) {
    	$regular_price = get_post_meta( $new_product_id, '_regular_price', true );  
      update_post_meta( $new_product_id, 'your_new_meta', $regular_price );  
    }

    Now for using “wcfm_form_custom_validation” this filter what you want to do?

    Thanks.

    in reply to: Assign one delivery boy to all vendors #118381

    You are always welcome 🙂

    Let me know if there’s anything else we can help you with.
    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.

    Hello,

    To set default map location, go to WCFM dashboard -> Settings -> Geo Locations -> Map Default Location (PFA)
    For hide the sidebar from “Store List” page, WCFM Store Dashboard -> Settings -> Marketplace Settings -> Turn off the “Store List Sidebar” (PFA)

    You can find the template files in wc-multivendor-marketplace/views/store-lists, which you can override in your theme.
    And “[wcfm_stores]” details : https://docs.wclovers.com/store-list/

    Thanks.

    Attachments:
    You must be logged in to view attached files.
    in reply to: WCFM Vietnamese language problem #118367

    Hi,

    We have tested in our local server, the “Membership” text is translated properly. Kindly follow the steps, select the plugin Loco Translate -> Plugins -> “WCFM – WooCommerce Multivendor Membership” -> select your language -> translate the string(PFA)
    For changing the WCFM Store manager menu text, change the menu label from WCFM Storemanager dashboard -> settings -> menu manager. (PFA)

    Thanks.

    Attachments:
    You must be logged in to view attached files.
    in reply to: Vendor dashboard -> Output text edit #118352

    Hello,

    You may use Loco Translate for text change.
    Here is a guide – https://localise.biz/wordpress/plugin/beginners
    example: Please select the plugin Loco Translate -> Plugins -> “WCFM – WooCommerce Frontend Manager” for changing the text

    Thanks.

Viewing 25 posts - 776 through 800 (of 1,174 total)