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 - 326 through 350 (of 1,174 total)
  • Author
    Posts
  • in reply to: No products in Vendor store #130886

    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.

    in reply to: Increase Product Limit on Individual Vendor? #130883

    Hello,

    You can change each vendor’s “Product limit” capability, from WCFM dashboard -> Store vendors -> select vendor and edit -> Turn “Custom Capability” and change “product capability”.

    Thanks.

    Attachments:
    You must be logged in to view attached files.
    in reply to: Showing Products on certain pages #130878

    Hello,

    If you want to show only admin’s products in WooCommerce shop page( main store page),not any vendor’s products –

    function custom_pre_get_posts_query( $query ) {
    	if ( !wcfm_is_store_page() ) {
    		  $query->set( 'author', 1 );
    	}
    }
    add_action( 'woocommerce_product_query', 'custom_pre_get_posts_query' ); 

    Try this code to your child theme’s functions.php

    Thanks.

    in reply to: only a product column in store page #130871

    Hello,

    We have checked your site @nolas154 . The “organico” theme author has added the support of our WCFM plugins from their side. Please contact with the theme support, and let us know their reply.

    Thanks.

    in reply to: Barn2 Product Table for Vendor Store Page #130865

    Hello,

    By-default we don’t have “Barn2 product table” support(display in vendor’s store page).
    If “Barn2 product table” shortcode have “by author” filter then it is possible with custom development.
    Please contact with “Barn2 product table” plugin support for filter by author functionality.

    Thank You

    Hello,

    Please check : https://wclovers.com/forums/topic/pdf-invoices/
    Hope this will help you.

    Thanks.

    in reply to: Store Gallery #130545

    Hi,

    Can you check this properly(after clear cache), because “wcfm_marketplace_settings_fields_general” filter used for admin and as well vendors settings page.
    If it’s still not showing in vendor’s settings page, then you can provide us your site access with site url, then we can check your site. (Set as private reply)

    Thanks

    in reply to: Rearrange Dashboard Widgets #130536
    This reply has been marked as private.
    in reply to: No products in Vendor store #130530

    Hello,

    Good News! It’s working now.
    Actually you have set “Vendor Store URL” is “s”, but WordPress default search parameter is “s”, due to this the search is conflicted and it was not working.
    We have changed “Vendor Store URL” to “seller”, you can change it as per your required but not “s”.

    Thanks.

    Attachments:
    You must be logged in to view attached files.
    in reply to: No products in Vendor store #130478
    This reply has been marked as private.
    in reply to: No products in Vendor store #130453

    Hello,

    Would you be comfortable sharing a temporary backend access of your site, along with site url, to debug this issue?
    When sharing the access, please don’t forget to mark the reply as private.
    Thank you!

    in reply to: No products in Vendor store #130446

    Hello,

    Okay, have you add any custom code in your site? If yes please remove and check again.
    And Kindly disable all other plugins except WooCommerce and WCFM plugins.

    Thanks!

    in reply to: Policy/Refound and Warranty #130437

    Hello,

    Hide “Product Policy” from product manager –

    add_action('init',function(){
    	global $WCFM; 
    	remove_action( 'after_wcfm_products_manage_tabs_content', array( $WCFM->wcfm_policy, 'wcfm_policy_product_settings' ), 100 );
    });

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

    Thanks

    in reply to: No products in Vendor store #130432

    Hello,

    Sorry, but we didn’t get you.

    Can you please clear once again “In the vendor’s store page does not show the vendor’s products?” OR “in the product’s “sold by the vendors” label are not displaying vendor’s store page?”
    Please check vendor have the product manage capability(PFA) and in vendor’s WCFM dashboard -> Products -> products listed or not?

    Thanks.

    Attachments:
    You must be logged in to view attached files.
    in reply to: Inquiry confirmation freeze #130429

    Hello,

    Possibly this issue occur due to theme, can you please check once again using default wordpress theme. And make sure your WooCommerce and WCFM plugins are updated(others plugins are deactivated).
    Kindly also check at wp-admin -> WooCommerce -> Status ->Logs -> is there any error related to this or not!

    If you still having same issue then share us your site access with url, we will check your site (Set as private reply)

    Thanks.

    This reply has been marked as private.

    Hello,

    Browser cache, as well your site cache if you are using any cache plugin/hosting cache.

    in reply to: Remove drop shadow from storelist #130375

    Hello,

    Try this css-

    #wcfmmp-store ul.product_list_widget li span.woocommerce-Price-amount.amount {
        margin-left: 60px;
    }
    #wcfmmp-store ul.product_list_widget li img {
        top: 24px !important;
    }
    

    Thanks.

    in reply to: How to add new tabs to "profile manager" ?? #130373

    Hello,

    Please contact us here for this purpose – https://wclovers.com/woocommerce-multivendor-customization/ with your scope details.

    Thanks.

    in reply to: Video tutorial from frontend dashboard. #130372

    Hello,

    Please check after clear the cache, if it’s still showing, please provide us the page url, we will check and let you know.

    Thanks.

    Hello,

    If you want to hide all “Business Visbility Setup” from vendor’s setting panel use this code snippet
    add_filter( 'wcfm_is_allow_store_visibility', '__return_false' );

    Thanks.

    in reply to: Vendor List Page – Ordering #130364

    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.

    in reply to: Store Gallery #130361

    Hello,

    Found it, it seems like this snippet only allows one product to be added in the gallery though.
    >>

    
    //Add Store Gallery option vendor settings page
    add_filter('wcfm_marketplace_settings_fields_general', 'wcfm_marketplace_settings_fields_general_custom0905', 50, 2 );
    function wcfm_marketplace_settings_fields_general_custom0905($general_fields,$vendor_id) {
    
    	$vendor_data = get_user_meta( $vendor_id, 'wcfmmp_profile_settings', true );	
    	$store_gallery     = isset( $vendor_data['store_gallery'] ) ? $vendor_data['store_gallery'] : array();
    	
    	if(isset($general_fields['store_name'])) {
    		$general_fields['store_gallery']=  array( 'label' => __('Store Gallery', 'wc-frontend-manager'), 'type' => 'multiinput', 'class' => 'wcfm-text wcfm_ele gallery_type_upload gallery_type_field gallery_type_slider wcfm_non_sortable', 'label_class' => 'wcfm_title gallery_type_field gallery_type_slider', 'value' => $store_gallery, 'options' => array(
    																																																																										"image" => array( 'type' => 'upload', 'class' => 'wcfm_gallery_upload gallery_type_upload wcfm-banner-uploads', 'prwidth' => 75),
    																																																																										"link"  => array( 'type' => 'text', 'class' => 'wcfm-text gallery_type_slilder_link', 'placeholder' => __( 'Gallery Hyperlink', 'wc-frontend-manager' ) ),
    																																																																									) );
    	}
    	return $general_fields;
    }
    
    add_action( 'wcfm_wcfmmp_settings_update','fn_wcfm_vendor_settings_storetype_update0905', 50, 2);
    add_action( 'wcfm_vendor_settings_update','fn_wcfm_vendor_settings_storetype_update0905', 50, 2);
    function fn_wcfm_vendor_settings_storetype_update0905($user_id, $wcfm_settings_form ){	
    	$wcfm_settings_form_data_new = array();
    	parse_str($_POST['wcfm_settings_form'], $wcfm_settings_form_data_new);	
    	$wcfm_settings_form_data_storetype = array();
    	if(isset($wcfm_settings_form_data_new['store_gallery']) && !empty($wcfm_settings_form_data_new['store_gallery'])) {
    		$wcfm_settings_form_data_storetype['store_gallery'] = $wcfm_settings_form_data_new['store_gallery'];
    	}
    	
    	$wcfm_settings_form = array_merge( $wcfm_settings_form, $wcfm_settings_form_data_storetype );
    	update_user_meta( $user_id, 'wcfmmp_profile_settings', $wcfm_settings_form );
    }
    //get and display gallery images in about page
    add_action('wcfmmp_store_after_about','add_shop_gallery_wcfmmp_store_after_about',10);
    function add_shop_gallery_wcfmmp_store_after_about($vendor_id){
    	$vendor_data = get_user_meta( $vendor_id, 'wcfmmp_profile_settings', true );	
    	$store_gallery     = isset( $vendor_data['store_gallery'] ) ? $vendor_data['store_gallery'] : array();	
    	foreach ($store_gallery as $store_gallery_img) {
    		if($store_gallery_img['image'] != '') {
    			$img_url = wcfm_get_attachment_url($store_gallery_img['image']);
    		} else {
    			$img_url = $store_gallery_img['link'];
    		}
    		echo '<img src="'.$img_url.'" />'; //replace with your required HTML to display gallery 
    	}
    }

    Adding this code(previously mentioned) you will find “Store Gallery” field in vendor’s settings page and these images will show vendor’s about tab(as per your previous requirement). PFA

    By the way I created custom fields on registration but in the vendor dashboard it seems to not be showing anywhere… I want the vendors to have access on it too that way they can update it when needed in the future.
    >>You will fnd the custom fields vendor’s profile manager(pfa)

    Thanks.

    Attachments:
    You must be logged in to view attached files.
    in reply to: client registration #130354

    Hello,

    Please check WooCommerce > Settings > Accounts and Privacy and turn on the “Allow customers to create an account on the “My account” page” (https://www.youtube.com/watch?v=AGZSeX5I-wo)

    Thanks.

    in reply to: Add the product title in long description #130353

    Hello,

    You have to override description.php file in your theme’s folder. (yourtheme/woocommerce/single-product/tabs/description.php) then add this below code –
    the_title( '<h1 class="product_title entry-title">', '</h1>' );

    Thanks.

Viewing 25 posts - 326 through 350 (of 1,174 total)