Forum Replies Created
- AuthorPosts
- April 29, 2020 at 8:12 pm in reply to: [wcfm_stores search_category="46"] doesn't show VENDOR LIST but PRODUCTS #124710
Sarmistha Chakraborty
MemberHello,
Possibly it’s because of mistype the quotation.
Please write this[wcfm_stores search_category="46"]Please check again and confirm.
Thanks.
Sarmistha Chakraborty
MemberHello,
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.
Sarmistha Chakraborty
MemberHello,
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.April 29, 2020 at 7:34 pm in reply to: My Account How do I use loco translate on my account? I will become a farmer in #124698Sarmistha Chakraborty
MemberHello,
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.
Sarmistha Chakraborty
MemberHello,
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.
Sarmistha Chakraborty
MemberHello,
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.
April 29, 2020 at 2:21 pm in reply to: Nothing Happened after "Click here" on Chosen MEMBERSHIP PLAN #124576Sarmistha Chakraborty
MemberHi,
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.
Sarmistha Chakraborty
MemberHello,
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.Sarmistha Chakraborty
MemberSarmistha Chakraborty
MemberHello,
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.
Sarmistha Chakraborty
MemberHello,
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.phpadd_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.
Sarmistha Chakraborty
MemberThis reply has been marked as private.Sarmistha Chakraborty
MemberHi,
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
Sarmistha Chakraborty
MemberHi,
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
Sarmistha Chakraborty
MemberThis reply has been marked as private.Sarmistha Chakraborty
MemberThis reply has been marked as private.Sarmistha Chakraborty
MemberHello,
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.
Sarmistha Chakraborty
MemberHello,
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.
Sarmistha Chakraborty
MemberHi,
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.phpadd_filter('wcfm_is_allow_wpeditor_quicktags','__return_true');Thanks.
Sarmistha Chakraborty
MemberYou 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 offersApril 28, 2020 at 5:15 pm in reply to: Vendor Registration-Terms & Conditions and Privacy Policy #124215Sarmistha Chakraborty
MemberHello,
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.Sarmistha Chakraborty
MemberHi,
You can add HTML in the shop description. (PFA)
Thanks.
Attachments:
You must be logged in to view attached files.Sarmistha Chakraborty
MemberHello,
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.
Sarmistha Chakraborty
MemberHello,
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.
Sarmistha Chakraborty
MemberHello,
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. - AuthorPosts