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 - 76 through 100 (of 12,721 total)
  • Author
    Posts
  • WCFM Forum
    Member

    Hi,

    Well, this will be best to contact theme support for this.

    Martfury already directly compatible with WCFM, so they can add this easily in their theme core.

    Thank You

    in reply to: Download permission for WCFM Problem #115560
    WCFM Forum
    Member

    Kindly know me your order id.

    WCFM Forum
    Member

    Well, vendors are not allowed to manage product reviews, they are allowed to manage only their store reviews.

    Thank You

    in reply to: Just one delivery boy for all vendors #115558
    WCFM Forum
    Member

    Glad to hear 🙂

    in reply to: Is the plugin very resource intensive? #115557
    WCFM Forum
    Member

    Hi,

    Do you have another code snippet?
    Or can you point me to the part in the code where these requests are initiated?

    – Well, if those codes are already added (infact I adeded those to your site) then no more periodic ajax requests from WCFM, you may keep open 40 or 400 tabs.

    Only normal queries executed during tab open, but then no more queries at all. Atleast not from WCFM.

    Only exception is WCFM Notification dashboard, it checks for new messages in every 60 seconds.

    One more important point, if you browse WCFM Setting page again and again then DB hit will be higher as this page loads many setting options so number of queries is higher than other pages. It’s true for all setting pages, e.g. WP setting, WooCommerce setting. But WCFM Admin setting page is not a public page so it’s browsing will be occasionally and only Admin allow to do.

    Thank You

    in reply to: store credit #115556
    WCFM Forum
    Member

    Hi,

    What is “Store Credit”? Are you using third party “wallet” plugin for the purpose?

    Thank You

    in reply to: Products Dashboard show entries dropdown #115555
    WCFM Forum
    Member

    Hi,

    Do you man this menu? https://ibb.co/thbVzSP

    Thank You

    in reply to: Free Pickup or Minimum $ order For delivery #115554
    WCFM Forum
    Member

    hi,

    Well, for the purpose “vendor/store shipping” is required – https://wclovers.com/knowledgebase/wcfm-marketplace-store-shipping/

    Vendors are allowed to setup local pickup and fee shipping depending upon order total.

    Thank You

    WCFM Forum
    Member

    Hi,

    Sure, please add this code snippet to your site –

    add_filter( 'wcfm_product_manage_fields_variations', function( $variation_fileds, $variations, $variation_shipping_option_array, $variation_tax_classes_options ) {
    	$variation_fileds = wcfm_hide_field( 'backorders', $variation_fileds );
    	return $variation_fileds;
    }, 50, 4 );
    add_filter( 'wcfm_product_fields_stock', function( $stock_fields, $product_id, $product_type ) {
    	$stock_fields = wcfm_hide_field( 'backorders', $stock_fields );
      return $stock_fields;
    }, 50, 3 );

    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 Forum
    Member

    Hi,

    Please add this snippet to your site –

    add_filter( 'wcfm_is_allow_product_enquiry_bubtton', '__return_false' );
    add_filter( 'wcfm_is_allow_shipping_processing_time_info', '__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

    in reply to: GEOLOCATION based Marketplace #115551
    WCFM Forum
    Member

    Hi,

    is it possible to enter the adresse from the profil of the user and block it?
    – Sorry, not get this. Do you want to disable “address” edit once it filled up by vendors?

    I would love to define a maximum ratio to 10 KM?
    = Please add this snippet to your site –

    add_filter( 'wcfm_max_radius_to_search_options', function( $max_radius ) {
    	$max_radius = array( '10' => '10', '15' => '15', '20' => '20', '50' => '50', '100' => '100', '150' => '150', '200' => '200', '500' => '500' );
    	return $max_radius;
    });

    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

    in reply to: A little php help with simple auction integration? #115550
    WCFM Forum
    Member

    Please use this revised code –

    add_filter( 'wcfm_product_manage_wcsauction_fields', function( $auction_fileds, $product_id ) {
      if( !$product_id ) {
      	$_format = "Y-m-d H:i";
      	$_CurrentTime = current_time( 'timestamp', 0 );
      	if( isset( $auction_fileds['_auction_dates_from'] ) ) {
      		$auction_fileds['_auction_dates_from']['value'] = date( $_format, $_CurrentTime );
    		}
    		if( isset( $auction_fileds['_auction_dates_to'] ) ) {
    			$auction_fileds['_auction_dates_to']['value'] = date( $_format, strtotime('+1 day', $_CurrentTime ) );
    		}
      }
      $auction_fileds = wcfm_hide_field( '_auction_dates_from', $auction_fileds );
      $auction_fileds = wcfm_hide_field( '_auction_dates_to', $auction_fileds );
      return $auction_fileds;
    }, 50, 2 );

    Thank You

    in reply to: Problem with Vendor Store Manager adding Auctions #115547
    WCFM Forum
    Member

    Hi,

    Which Auction plugin you are using?

    What is your WCFM Ultimate plugin’s version?

    Thank You

    in reply to: Refund error #115546
    WCFM Forum
    Member

    Well, as I see this error report from date “2020-03-20”

    Is there any other error log from recent date?

    in reply to: Add New Button Missing in Vendor Attribute #115544
    WCFM Forum
    Member

    Hi,

    Well, that option comes with WCFM Ultimate – https://wclovers.com/product/woocommerce-frontend-manager-ultimate/

    Thank You

    in reply to: Product Limit randomly became 0 for all stores #115543
    WCFM Forum
    Member

    NO worries, thanks for the update.

    WCFM Forum
    Member

    Hi,

    Please go to wp-admin -> WooCommerce -> Setting -> Emails -> WCFM – Email Verification – please check is this properly setup, specially subject and heading? https://ibb.co/0FS3r0f

    Thank You

    in reply to: reminder email #115541
    WCFM Forum
    Member

    But, how customers will “complete” order? WooCommerce does not allow this to customers!

    in reply to: Vendor page caterories #115540
    WCFM Forum
    Member

    Hi,

    Kindly add this line to your site and take a look –

    add_filter( 'wcfmmp_force_store_taxonomy_refresh', '__return_true' );

    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/

    Between, are you using “WCFM – Category Hierarchy” plugin?

    Thank You

    in reply to: Problem when adding product reviews using REST API #115539
    WCFM Forum
    Member

    Hi,

    Please be sure is this setting enabled at WCFM Admin Setting -> Review Setting – https://ibb.co/zsFN6VB

    Thank You

    in reply to: Vendor Bank Details in Purchase Confirmation #115538
    WCFM Forum
    Member

    Hi,

    i add this code but on order i get store bank accoun and also vendor banckaccoun. How to show just vednor bank account ?

    – Do you have added vendor’s Bank details from their setting -> Customer Pay options?

    Thank You

    in reply to: Vairiable product always out of stock #115288
    WCFM Forum
    Member

    Hi,

    Well, I am not very sure how you are creating this variable product?

    I have just created one right now and it’s working perfectly. Please check this – https://www.loom.com/share/5dbc549bddd044d784863a00a19ce5c3

    Thank You

    in reply to: Filter Order Export Values on orderslist (and others) #115287
    WCFM Forum
    Member

    OK, if this is valid address then why you want to remove characters from this? After that it will become invalid, right?

    in reply to: Vendor customization for their own store #115286
    WCFM Forum
    Member

    Hi,

    Vendors are allowed to create new category during add product – https://ibb.co/TqsfNf8

    Well, this option comes with WCFM Ultimate – https://wclovers.com/product/woocommerce-frontend-manager-ultimate/

    Add “Vendor Store: Category” widget under vendor store sidebar to show those categories – https://ibb.co/NT3XfYV
    It’s also possible to filter store products using those categories.

    Thank You

    in reply to: A little php help with simple auction integration? #115285
    WCFM Forum
    Member

    OK, please try this revised code –

    add_filter( 'wcfm_product_manage_wcsauction_fields', function( $auction_fileds, $product_id ) {
      if( !$product_id ) {
      	$_format = "Y-m-d h:m:s";
      	$_CurrentTime = new DateTime();
      	if( isset( $auction_fileds['_auction_dates_from'] ) ) {
      		$auction_fileds['_auction_dates_from']['value'] = $_CurrentTime->format($_format);
    		}
    		if( isset( $auction_fileds['_auction_dates_to'] ) ) {
    			$_Current_to = $_CurrentTime->add(new DateInterval('P1D')); 
    			$auction_fileds['_auction_dates_to']['value'] = $_Current_to->format($_format);
    		}
      }
      $auction_fileds = wcfm_hide_field( '_auction_dates_from', $auction_fileds );
      $auction_fileds = wcfm_hide_field( '_auction_dates_to', $auction_fileds );
      return $auction_fileds;
    }, 50, 2 );

    Thank You

Viewing 25 posts - 76 through 100 (of 12,721 total)