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 - 1,126 through 1,150 (of 1,174 total)
  • Author
    Posts
  • in reply to: Remove virtual & downloadable products selection? #97532

    Hello,

    Turn off the “virtual” and “downloadable” product capability from store-manager dashboard. (PFA)

    Thanks.

    Attachments:
    You must be logged in to view attached files.
    in reply to: Registration Form Style #97191

    Hi,

    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.

    in reply to: Registration Form Style #97043
    This reply has been marked as private.
    in reply to: vendor register form #97034

    Hello,

    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.

    in reply to: vendor register form #97018

    Hello,

    Can you please elaborate explain what you meant by “adds a mask to text “?

    Thanks.

    in reply to: Registration Form Style #97016
    This reply has been marked as private.
    in reply to: Add to my store still present #96886

    Hi,

    Turn off the “Single Product Multi-Vendor” option. (PFA)

    Thanks.

    Attachments:
    You must be logged in to view attached files.
    in reply to: Registration Form Style #96761

    Hi,

    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.

    in reply to: Registration Form Style #96682

    Hello,

    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.

    in reply to: Remove / Hide "Detail" Button on More Offer Tabs #96678

    Hello,

    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.

    in reply to: Change PHP files from plugin (template override) #94709

    Hello,

    The folder structure will be “themes/qualis-child/wcfm/products/wcfm-view-products.php” (themes//wcfm/products/wcfm-view-products.php).

    Thanks.

    in reply to: Delete Vendors Product #93588

    Hello,

    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.
    in reply to: Stores List Vendor Information is not displayed #92778

    Hello,

    Can you share us the site url, then we can check your site.

    Thanks.

    Hello,

    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.php

    add_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.

    Hi,

    You are always welcome 🙂
    1 – Open link to ‘My Shopfront’ in new tab

    Add 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.

    Hi,

    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.

    in reply to: "Availability" options in Bookable product #91967

    Hello,

    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.

    in reply to: The booking plugin does not appear on the vendor page #91966

    Hello,

    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.

    Hello,

    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.

    in reply to: Product show single in a row in vendor store #91811

    Hello,

    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.

    Hello,

    In admin WCFM dashboard – “Capability” tab you will find the option.

    Thanks.

    Attachments:
    You must be logged in to view attached files.
    in reply to: Remove "Change or Upgrade your current membership plan" #91766

    Hi,

    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.

    in reply to: Bug on deleting vendor #91641

    Hello,

    For delete vendor account, you have to go to the admin dashboard -> users then delete the specific account(/wp-admin/users.php).

    Thanks.

    in reply to: Delete Vendors Product #91626

    Hello,

    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.

    in reply to: How to Create Menu for membership, login and logout #91416

    Hello,

    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.

Viewing 25 posts - 1,126 through 1,150 (of 1,174 total)