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 - 576 through 600 (of 1,174 total)
  • Author
    Posts
  • Hello,

    Possibly it’s because of mistype the quotation.
    Please write this [wcfm_stores search_category="46"]

    Please check again and confirm.

    Thanks.

    in reply to: Banner image on vendors list clickable #124705

    Hello,

    You have to create the “wcfmmp-view-store-lists-card.php” file in your theme folder.
    From “\wp-content\plugins\wc-multivendor-marketplace\views\store-lists” to <your theme>/wcfm/store-lists/wcfmmp-view-store-lists-card.php
    After that wrap the banner with <a href="<?php echo $store_url; ?>"></a> ,then the banner background is not shown and not clickable that means your theme override the store list page style. Then Please provide the page url, so we can check and guide you properly.

    Thanks.

    in reply to: Request a Quote Questions #124700

    Hello,

    Do you see the “Quoation” tab in the WCFM-fronted product edit dashboard?(login as a admin)
    If yes, it’s not showing only for vendor then please check the “” capability from WCFM store dashboard -> Capability (PFA)
    If you are using WCFM-Groups & Staffs plugin, then also the groups capability.

    Thanks.

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

    Hello,

    Your requirement not so clear.
    What we understand that you want to change “Become a Vendor” text,
    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_become_vendor_label',function($text){
    	$text = __( 'Become a Vendor', 'wc-multivendor-marketplace' ); //replace the "Become a Vendor" text as your requirement
    	return $text;
    });
    

    Thanks.

    in reply to: Restrict characters Vacation Mode Message #124690

    Hello,

    Would you please consider that maybe in the next update vacation mode is also visible in store list page as in the attached example?
    Than the customer doesn’t have to visit the store(s) first in order to see that it is in vacation mode.

    >>For this we have provide you code previously.

    add_action('woocommerce_after_shop_loop_item','add_msg_to_store_loop_vacation_mode',45);
    function add_msg_to_store_loop_vacation_mode(){
    	global $WCFM,$product; 
    	if ( is_object( $product ) ) { 
    		$vendor_id   		= wcfm_get_vendor_id_by_post( $product->get_id() ); 
    	}	
    	
    	$is_marketplace = wcfm_is_marketplace();
    	$vacation_mode = '';
    	$vendor_has_vacation = $WCFM->wcfm_vendor_support->wcfm_vendor_has_capability( $vendor_id, 'vacation' );
    	if ( function_exists( 'wcfm_is_store_page' ) && wcfm_is_store_page() && did_action( 'woocommerce_after_shop_loop_item' ) ) {
    		if( $vendor_has_vacation ) {
    			if( $is_marketplace == 'wcfmmarketplace' ) {
    				$vendor_data = get_user_meta( $vendor_id, 'wcfmmp_profile_settings', true );
    				$vacation_mode = isset( $vendor_data['wcfm_vacation_mode'] ) ? $vendor_data['wcfm_vacation_mode'] : 'no';
    			
    			} else {
    				$vacation_mode 		= ( get_user_meta( $vendor_id, 'wcfm_vacation_mode', true ) ) ? get_user_meta( $vendor_id, 'wcfm_vacation_mode', true ) : 'no';
    			}
    		}
    		if ( $vacation_mode == 'yes' ) {
    			?>
    			<div class="wcfm_vacation_msg">On Vacation</div>
    			<?php
    		}
    	}
    
    }

    We have deleted the FTP details post. Your issue is resolved. We are closing this topic.

    Thanks.

    in reply to: Restrict characters Vacation Mode Message #124592

    Hello,

    We have fixed all php errors.
    Please check again the topic requirement, login as a vendor “Restrict characters Vacation Mode Message” requirement.
    N.B : We have notices too many codes/functions in your functions.php. please be advised only used those functions/codes which you required.

    Thanks.

    Hi,

    After create custom Membership page, You just have to use membership subscription button short code for creating buttons for that table – https://ibb.co/NNFNxxK
    And set that custom plan page here – https://ibb.co/fS4FST0
    You may change it’s colors from Membership Setting -> Style – https://ibb.co/7CzBxJP
    And Set “Disable Store Setup Widget” turn-on (WCFM store dashboard -> Settings -> Marketplace settings)
    For vendor Registration browse the “custom Membership page” which was you have created.

    Thanks.

    in reply to: Request a Quote Questions #124568

    Hello,

    Vendor can fine “Quoation” tab in Product edit section. (PFA)
    Please be advised WCFM-Ultimate plugin is required for this.

    Thanks.

    Attachments:
    You must be logged in to view attached files.
    in reply to: Custom Tab on Vendor Page #124556
    in reply to: cannot add global attribute as admin #124552

    Hello,

    I tried to add global attribute by admin wp-dmin
    when click to submit .. the global attribute doesn’t add
    >>Are you add product attributes from wp-admin -> Products -> Attributes ? (https://docs.wclovers.com/attributes/)
    This is WooCommerce default feature.
    You are unable to add these attributes? Please explain little more your issue.

    Thanks.

    in reply to: Add tiered price on wcfm panel #124548

    Hello,

    What we understand that you want to “Tiered pricing” section in the above of the “short description” not in tab.
    It is possible for only simple type product not for variable product.
    For simple product add below code in your theme’s functions.php

    add_action('init',function(){
    	global $WCFM; 
    	 remove_filter( 'end_wcfm_products_manage', array( $WCFM->wcfm_integrations, 'wcfm_wc_tiered_price_table_product_manage_views' ), 170 );
    	 add_action( 'after_wcfm_products_manage_pricing_fields', array( $WCFM->wcfm_integrations, 'wcfm_wc_tiered_price_table_product_manage_views' ), 170 );
    	
    });

    Thanks.

    in reply to: Restrict characters Vacation Mode Message #124535
    This reply has been marked as private.
    in reply to: Store Page: embed HTML in Vendor Description #124368

    Hi,

    Ok yes it’s possible.But tThis is not possible using code snippet.
    It requires some custom development, and this will be a paid one.
    If you are interested then please contact us here –https://wclovers.com/setup-guidance/ (with topic link)

    Or we can guide you how you do that development, You can developed by yourself. But it’s need some development knowledge.

    Thank You

    in reply to: Store Page: embed HTML in Vendor Description #124360

    Hi,

    it’s not possible to have a special content within the sidebar for a customer?
    >> We assume that here customer means vendor? What we understand that, you want for each vendor store side will show his special content?
    Please confirm.

    Thanks

    in reply to: Restrict characters Vacation Mode Message #124352
    This reply has been marked as private.
    in reply to: Restrict characters Vacation Mode Message #124336
    This reply has been marked as private.
    in reply to: Restrict characters Vacation Mode Message #124314

    Hello,

    We have checked in our server.This code is working in our server.
    Please share us the site admin access, we need check your site.

    Thanks.

    in reply to: My account Menu missing from Vendors profile. #124313

    Hello,

    We have our demo setup with “Martfury” theme, and it’s working perfectly.
    Please check : https://wclovers.com/demos/ (Foodie site)

    Share us your site Url and admin access, then we can check your site. (Set as private reply)

    Thanks.

    in reply to: Store Page: embed HTML in Vendor Description #124306

    Hi,

    1) Is there a possibility to put HTML content below the content directly into the Sidebar?
    >> In WordPress by-default have “Custom HTML” widget, Add this widget in “Vendor Store Sidebar” area, You can add any HTML code in “Custom HTML” widget(it will applicable for all vendors).
    2) Is there a chance to add a new tab additionally to “products”, “about”, “policies” and reviews?
    and last
    >> Please check – https://wordpress.org/support/topic/custom-tab-in-vendor-store-page/
    3) how can I switch back to html-view when I added the html inframe (as you told me). Because now, I have the frame in the editor, but can’t adjust nor modify it.
    >>By-default the HTML view is off in our plugin. To see html view add below code in your theme’s functions.php add_filter('wcfm_is_allow_wpeditor_quicktags','__return_true');

    Thanks.

    in reply to: Modify email sent to the buyer after the purchase #124289

    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,

    Ok,understand.
    For this please override the vendor_registration.php file in your theme folder. From “\wp-content\plugins\wc-multivendor-membership\templates” to “\wp-content\themes\your-theme-folder\wcfm\membership\”.
    Then add <a target="_blank" href="https://localchain.co.uk/privacy-policy/">Privacy Policy</a> in the area marked in the screenshot.(PFA)

    Thanks.

    Attachments:
    You must be logged in to view attached files.
    in reply to: Store Page: embed HTML in Vendor Description #124211

    Hi,

    You can add HTML in the shop description. (PFA)

    Thanks.

    Attachments:
    You must be logged in to view attached files.
    in reply to: Custom Vendor Store URL #124208

    Hello,

    You can modify the url to use this filter,

    add_filter( 'wcfmmp_get_store_url', function( $vendor_url, $user_id ) {
    	//modify the vendor_url 
    	return $vendor_url;
    }, 50,2 );

    But It is not recomended to change url, then the store page others tab will not work.

    Thanks.

    in reply to: Restrict characters Vacation Mode Message #124198

    Hello,

    Add this code in your child theme’s function.php and create custom.js file in your child theme folder

    function custom_enqueue(){
        
        //wp_enqueue_style('string $handle', mixed $src, array $deps, mixed $ver, bol $in_footer );
        wp_enqueue_script('customjs', get_stylesheet_directory_uri() . '/custom.js', array(), '1.0.0', 'true' );
    }
    add_action('wp_enqueue_scripts', 'custom_enqueue');

    Paste the the below script in your custom.js file,

    jQuery(document).ready(function ($) {
    
       if( $('textarea#wcfm_vacation_mode_msg').length > 0 ) {
          $('textarea#wcfm_vacation_mode_msg').attr('maxlength', '50');
       }
    /*date format will be 28-04-2020*/
       $( "#wcfm_vacation_start_date" ).datepicker({
          changeMonth: true,
          changeYear: true,
          dateFormat: 'dd-mm-yy',
          onClose: function( selectedDate ) {
            $( "#wcfm_vacation_end_date" ).datepicker( "option", "minDate", selectedDate );
          }
        });
        $( "#wcfm_vacation_end_date" ).datepicker({
          changeMonth: true,
          changeYear: true,
          dateFormat: 'dd-mm-yy',
          onClose: function( selectedDate ) {
            $( "#wcfm_vacation_start_date" ).datepicker( "option", "maxDate", selectedDate );
          }
        });
       
    });

    To remove placehoder –

    add_filter( 'wcfm_vendors_settings_fields_vacation', function( $fields,$vendor_id ) {
    	if( isset( $fields['wcfm_vacation_start_date'] ) ) {
    		$fields['wcfm_vacation_start_date']['placeholder'] = '';
    	}
    	if( isset( $fields['wcfm_vacation_end_date'] ) ) {
    		$fields['wcfm_vacation_end_date']['placeholder'] = '';
    	}
    	return $fields;
    }, 50,2 );

    Thanks.

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

    Hello,

    How can we redirect sellers to there shop page when they login??
    >>When any seller/vendor register in your site it will took him store setup page/ thank you page. Vendor can click on “My Store” link in store dashboard will take him his store page.(PFA)

    Why can’t the seller edit the default product description while adding a product???
    >>Did you mean vendor can not edit their “Shop Product Description” field? It’s not depending on adding a product. Please check that you have added all codes which was previously mentioned and then recheck. IT’s working in our server.

    Thanks.

    Attachments:
    You must be logged in to view attached files.
Viewing 25 posts - 576 through 600 (of 1,174 total)