Forum Replies Created
- AuthorPosts
Sarmistha Chakraborty
MemberHello,
Turn off the “virtual” and “downloadable” product capability from store-manager dashboard. (PFA)
Thanks.
Attachments:
You must be logged in to view attached files.Sarmistha Chakraborty
MemberHi,
Add below style inside the
<style>tag,#wcfm_membership_container p.wcfm_title strong, #wcfm_membership_container span.wcfm_title strong { font-style: normal; font-weight: 400!important; } #wcfm_affiliate_container p.wcfm_title strong, #wcfm_affiliate_container span.wcfm_title strong { font-style: normal; font-weight: 400!important; }Thanks.
Sarmistha Chakraborty
MemberThis reply has been marked as private.Sarmistha Chakraborty
MemberHello,
What we understand that you want placeholder for “store phone number” in vendor registration page,
add_filter('wcfm_membership_registration_fields_phone','wcfm_membership_registration_fields_phone_callback'); function wcfm_membership_registration_fields_phone_callback($phonefield) { $phonefield["phone"]["placeholder"] = __('(0212)(555 55 55)', 'wc-frontend-manager') ; return $phonefield; }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.
Sarmistha Chakraborty
MemberHello,
Can you please elaborate explain what you meant by “adds a mask to text “?
Thanks.
Sarmistha Chakraborty
MemberThis reply has been marked as private.Sarmistha Chakraborty
MemberHi,
Turn off the “Single Product Multi-Vendor” option. (PFA)
Thanks.
Attachments:
You must be logged in to view attached files.Sarmistha Chakraborty
MemberHi,
For “Register” style use below css,
/* This text is in Raleway */ .class { font-family: Raleway; font-size: 24px; }Regarding main text,
/* This text is in Helvetica */ .class { font-family: Helvetica Neue,Helvetica,Arial,sans-serif; font-size: 13px; }Try the above style(css) in your theme’s style.com.
Otherwise please share us the page links, we will send you the exact style(css).Thanks.
Sarmistha Chakraborty
MemberHello,
You have to modify the style(form style) in your theme’s style.css.
Can you please explain what styling modification you want for the form(WCFM vendor/affiliate registration form)?Thanks.
Sarmistha Chakraborty
MemberHello,
Override the “wcfmmp-view-more-offer-single.php” template in your theme.
The folder structure will be
“themes/<your theme>/wcfm/product_multivendor/wcfmmp-view-more-offer-single.php”
And remove the “Details” button.Thanks.
Sarmistha Chakraborty
MemberHello,
The folder structure will be “themes/qualis-child/wcfm/products/wcfm-view-products.php” (themes/
/wcfm/products/wcfm-view-products.php). Thanks.
Sarmistha Chakraborty
MemberHello,
We checked your site. We have updated the settings (PFA) and now shows 32 products per page in the vendors store page(https://www.todomerca.ec/tienda/electronics/).
Thanks.
Attachments:
You must be logged in to view attached files.Sarmistha Chakraborty
MemberHello,
Can you share us the site url, then we can check your site.
Thanks.
November 14, 2019 at 12:46 pm in reply to: Is there a shortcode or variable to access the "My Store" value? #92252Sarmistha Chakraborty
MemberHello,
1 – I have added this js code to the themes (Rehub-revendor) general options > ‘Js code for footer’. But menu link still opens in same tab
>> What I see it was placed in wrong place. Add this script to your theme’s functions.phpadd_action('wp_footer',function() { ?> <script type="text/javascript"> jQuery('#menu-item-custom-my-store a').each(function() { jQuery(this).attr("target","_blank"); }); </script> <?php });3 – I have edited ‘$location’ as suggested but menu item still shows in location 1
>>Your $location will be 21. It’s the position of the menu where you want to place it.
$location = 21;Thanks.
November 13, 2019 at 7:26 pm in reply to: Is there a shortcode or variable to access the "My Store" value? #92180Sarmistha Chakraborty
MemberHi,
You are always welcome 🙂
1 – Open link to ‘My Shopfront’ in new tabAdd this script to your js file,
$('#menu-item-custom-my-store a').each(function() { $(this).attr("target","_blank"); });2 – Add icon to menu link
>> Change $label with,
$label = '<i class="fa fa-desktop" aria-hidden="true"></i>'.__('My Store','wc-multivendor-marketplace');3 – Position menu link order – currently shows in top/1st but I would like it 2nd down
>>change $location with,
$location = 8;// menu item number (PFA for this case 8th position)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.Attachments:
You must be logged in to view attached files.November 12, 2019 at 5:25 pm in reply to: Is there a shortcode or variable to access the "My Store" value? #91989Sarmistha Chakraborty
MemberHi,
Thanks for the details. Now we understand your requirement. Please try this code,
function dynamic_submenu_wcfmstore_link( $items, $args ) { $theme_location = 'primary';// Theme Location slug $existing_menu_item_db_id = 149; // parent menu item database id $new_menu_item_db_id = 99999; // unique id number $label = __('My Store','wc-multivendor-marketplace'); if ( $theme_location !== $args->theme_location ) { return $items; } if ( is_user_logged_in() ) { $current_user_id = get_current_user_id(); // only if user is logged-in, do sub-menu link if(wcfm_is_vendor($current_user_id)) { $url = wcfmmp_get_store_url( $current_user_id ); $item = array( 'title' => $label, 'menu_item_parent' => $existing_menu_item_db_id, 'ID' => 'custom-my-store', 'db_id' => $new_menu_item_db_id, 'url' => $url, // 'classes' => array( 'custom-menu-item' )// optionally add custom CSS class ); $new_items[] = (object) $item; // insert item $location = 3; // insert at 3rd place array_splice( $items, $location, 0, $new_items ); } } return $items; } add_filter( 'wp_nav_menu_objects', 'dynamic_submenu_wcfmstore_link', 10, 2 );Hope that will work. (ref : https://isabelcastillo.com/dynamically-sub-menu-item-wp_nav_menu)
Otherwise please share us your site admin access here :https://wclovers.com/woocommerce-multivendor-customization/ with the topic link.Thanks.
Sarmistha Chakraborty
MemberHello,
Thanks for get in touch with us.
As I understand you have only WCfM Free version.
Actually, WCfM Free does not support all Booking options, it’s limited. You have upgrade your WCfM to Ultimate to have all the features.
Check our demo for better understanding – http://wcbooking.wcfmdemos.com/my-account
Please know me if you have any other queries regarding this.
Thanks.
November 12, 2019 at 3:07 pm in reply to: The booking plugin does not appear on the vendor page #91966Sarmistha Chakraborty
MemberHello,
Can you share us the site access here for the purpose – https://wclovers.com/woocommerce-multivendor-customization/ with the topic link. We need to check your site.
Thanks.
November 12, 2019 at 2:52 pm in reply to: Is there a shortcode or variable to access the "My Store" value? #91961Sarmistha Chakraborty
MemberHello,
We presume that, you have added the “My Dashboard” menu using above code. And you want add a sub-menu link(“My store”) under the menu “My Dashboard”.
Then add the below code in your activated theme’s functions.php instead of previously added code.add_filter( 'wp_nav_menu_items', 'your_custom_menu_item', 10, 2 ); function your_custom_menu_item ( $items, $args ) { if(is_user_logged_in()) { $current_user_id = get_current_user_id(); if ($args->theme_location == 'primary' && wcfm_is_vendor($current_user_id)) { $store_url = wcfmmp_get_store_url( $current_user_id ); $items .= '<li><a href="#">'.__('My Dashboard','wc-multivendor-marketplace').'</a> <ul class="sub-menu"><li class="menu-item menu-item-type-post_type menu-item-object-page"><a href="'.$store_url.'">'.__('My Store','wc-multivendor-marketplace').'</a></li></ul></li>'; } } return $items; }Thanks.
Sarmistha Chakraborty
MemberHello,
Unfortunately the link is not opening : nishchinto.com/store/triangle-emporium
Kindly check once your theme settings, generally theme have that option “no. of columns” in shop page.
Please share us your site url/activated theme name, then we can check your site.Thanks.
November 11, 2019 at 11:36 am in reply to: Is there a way to hide the 'virtual' checkbox from the simple product? #91768Sarmistha Chakraborty
MemberHello,
In admin WCFM dashboard – “Capability” tab you will find the option.
Thanks.
Attachments:
You must be logged in to view attached files.November 11, 2019 at 11:30 am in reply to: Remove "Change or Upgrade your current membership plan" #91766Sarmistha Chakraborty
MemberHi,
Please add the above script to your theme’s style.css. This is not php script, it’s css script.
What we understand that, you are using “Code Snippets” plugin. for this add below code,add_action( 'wp_footer', function() { ?> <style> div#wcfm_profile_manage_form_membership_expander h2 { display: none; } </style> <?php } );Thanks.
Sarmistha Chakraborty
MemberHello,
For delete vendor account, you have to go to the admin dashboard -> users then delete the specific account(
/wp-admin/users.php). Thanks.
Sarmistha Chakraborty
MemberHello,
Can you share us the access of your site here : https://wclovers.com/woocommerce-multivendor-customization/ with the topic link. Then we can check your site.
Thanks.
Sarmistha Chakraborty
MemberHello,
Please go through this link https://wclovers.com/knowledgebase/wcfm-membership/
For membership registration, “WCFM – WooCommerce Multivendor Membership” plugin create a page with [wcfm_vendor_membership] shortcode.Vendor can logout from his store dashboard menu Or for login/logout go to the Woocommerce My account” page(https://docs.woocommerce.com/document/woocommerce-pages/).
Thanks.
- AuthorPosts