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 20 posts - 1 through 20 (of 20 total)
  • Author
    Posts
  • in reply to: Pre-define the product tag according to the user nickname #106720
    paattal
    Participant

    Hello,

    This is exactly what I needed, thank you again for listening and your availability! 🙂

    in reply to: Pre-define the product tag according to the user nickname #106519
    paattal
    Participant

    Hello,

    The code you shared is perfect for me because tag is automated for vendor (dashboard) and admin can add more tag.

    But vendor can not add or modify those tags, so tags field must be hidden for vendor in the “Add Product”.

    I need something like this but with the correct code :

    
    if(!current_user_can('administrator')) {
          add_filter('wcfm_is_allow_tags','__return_false');
       }
    

    Thanks

    in reply to: Pre-define the product tag according to the user nickname #106129
    paattal
    Participant

    Hello,

    Works fine thank you ! 🙂

    I just noticed that I forgot to specify that this field should be hidden for vendors (because autofill) and only appear for the admin (manual entry), sorry…

    in reply to: Hide resources and persons tabs #105419
    paattal
    Participant

    Hello,

    Nice thank you 🙂

    in reply to: Hide resources and persons tabs #104795
    paattal
    Participant

    Hello,

    Really perfect ! WC Lovers is obviously the best support team !

    I include somme features since my last post and I need now to hide also Catalog Tab because I actvate/deactivate and hide all fields.

    Sorry, this is my last request on this topic what is the syntax filter to add to this code ?

    Thank you

    in reply to: Hide resources and persons tabs #104409
    paattal
    Participant

    Nice, thank you very much !

    Is it possible to do the same thing and add lines to hide attached tabs : [Location] Geo My Wp, [Yoast SEO] and [Tabs Manager] Woocommerce

    -> [Location] is only for grouped products and [Yoast SEO] + [Tabs Manager] are accessible only for admin.

    Attachments:
    You must be logged in to view attached files.
    in reply to: Hide resources and persons tabs #104212
    paattal
    Participant
    This reply has been marked as private.
    in reply to: Hide resources and persons tabs #104211
    paattal
    Participant
    This reply has been marked as private.
    in reply to: Hide resources and persons tabs #103638
    paattal
    Participant

    Sorry I saved a translation for resources tabs, in fact the 2 tabs are still displayed …

    Attachments:
    You must be logged in to view attached files.
    in reply to: Force post meta values according to product types #103626
    paattal
    Participant

    Do you have a solution please?

    in reply to: Pre-define the product tag according to the user nickname #103625
    paattal
    Participant

    Do you have a solution please?

    in reply to: Hide resources and persons tabs #103623
    paattal
    Participant

    Hello,

    Your code hide well both check boxes abd resources tab but persons tab is still displayed (see attached screenshot).

    Is it possible to hide also Yoast tab, it will be perfect ?

    Thank you

    Attachments:
    You must be logged in to view attached files.
    in reply to: Hide resources and persons tabs #102745
    paattal
    Participant

    Hello,

    Yes I want permanently hide those two tabs and I use this snippet :

    add_filter( 'wcfm_product_manage_fields_general', 'wcfmbi_product_manage_fields_general', 100, 3 );
    function wcfmbi_product_manage_fields_general( $general_fields, $product_id, $product_type ) {
    	global $WCFM, $WCFMpb;
    	
    	if( isset( $general_fields['_wc_booking_has_resources'] ) ) {
    		$general_fields['_wc_booking_has_resources']['class'] = 'wcfm_custom_hide';
    		$general_fields['_wc_booking_has_resources']['desc_class'] = 'wcfm_custom_hide';
    		$general_fields['_wc_booking_has_resources']['dfvalue'] = 'no';
    	}
    		
    	if( isset( $general_fields['_wc_booking_has_persons'] ) ) {
    		$general_fields['_wc_booking_has_persons']['class'] = 'wcfm_custom_hide';
    		$general_fields['_wc_booking_has_persons']['desc_class'] = 'wcfm_custom_hide';
    		$general_fields['_wc_booking_has_persons']['dfvalue'] = 'no';
    	}
    		
    	return $general_fields;
    }

    Thank you

    in reply to: Change woocommerce image placeholder #102163
    paattal
    Participant

    Hello,

    Great ! I had not seen this option, it works perfectly thanks for the tip 🙂

    in reply to: Inquiry deactivation on product page #102114
    paattal
    Participant

    Hello,

    1. Yes, that’s how I understood how it works:
    customized capacities (vendor settings) -> priority 1
    group capacities (group settings)-> priority 2 (with fusion of capacities according to your return)
    global capacities (marketplace settings) -> priority 3
    So, I would like to define a vendor profile with capacities defined by the groups. And in a particular case, have recourse only to customized capacities.

    2. OK it’s a good logic but I just did the test and I note that only one “Sold by label” is displayed (that of the first group created). In this case I think that the 2 labels should be displayed for this to be consistent.
    You say “if any particular capability is turned as OFF then it will be set as OFF once the group is merged” but it’s not case with inquiry set to off in group. I did the test with a vendor included in only one group and I have to do it in customised settings vendor to make it work on product page (works on store page).

    Thanks

    in reply to: Change woocommerce image placeholder #102028
    paattal
    Participant

    Hello,

    Thank you, I tested your filter but sorry, the image is still not changed. I have always woocommerce-placeholder.png displayed. 🙁

    in reply to: Inquiry deactivation on product page #101781
    paattal
    Participant

    Hello,

    OK it works well.

    1. On the other hand, the settings of Inquiry being off for a defined group of vendors (I have created a group capacities), is it possible to have in the hook the verification rather on the capacities of the group to which the vendor belongs and not on the personalized capacities of each vendor? Otherwise, this requires customizing the capacities of each vendor and if I am not mistaken, these capacities will no longer be synchronized with those defined for the group of vendors.

    2. I find it strange to be able to select the same vendor in several groups capacities? Do the capacities defined in each group not conflict for this vendor? It seems to me that once a vendor is inside a capacities group, it should disappear from the list of available vendors, right?

    Thanks again.

    in reply to: Inquiry deactivation on product page #101501
    paattal
    Participant

    Hello,

    Thanks for your reply.

    As you can see on screenshot, after inserted the code in functions.php file and inquiries capability off (globale vendor capabilities settings) unfortunately no change, any users can still ask questions. 🙁

    Attachments:
    You must be logged in to view attached files.
    in reply to: Change woocommerce image placeholder #101499
    paattal
    Participant

    no answer ?

    in reply to: Inquiry deactivation on product page #101220
    paattal
    Participant

    Hello,

    Of course it works but the solution is radical and I need to have this functionality for some users. Can we have the same display verification on product page depending on the activation of the inquiry capapilities as on the vendor page?

    Thanks

Viewing 20 posts - 1 through 20 (of 20 total)