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 - 101 through 125 (of 388 total)
  • Author
    Posts
  • in reply to: Customise the add product form #119826
    Molay Das
    Keymaster

    Hi,

    Please go by the following steps:

    1) First create a js file named “custom-script.js” and put it inside the “js” folder (if you don’t have a “js” folder then create it) of your child theme.
    2) Add the below code to your newly created “custom-script.js” file.

    jQuery( document ).ready( function( $ ) {
    	$( ".wcfm_add_attribute" ).click(function() {
    		$(".wcfm_input_attributes .variable-subscription").last().prop("checked", false);
    	});
    });

    3) Add the below code to your child theme’s functions.php file.

    add_action( 'wp_enqueue_scripts', 'custo_scripts_enqueue_styles', 99999 );
    function custo_scripts_enqueue_styles() {
    	wp_enqueue_script( 'custom-script', get_stylesheet_directory_uri() . '/js/custom-script.js', array( 'jquery' ), '1.0', true );
    }

    Thanks,

    in reply to: Removing emailaddres from Review overview #119825
    Molay Das
    Keymaster

    Hi,

    Can you please share us your website admin login details?
    Please send it as private reply here.

    Thanks,

    in reply to: Customise the add product form #119782
    Molay Das
    Keymaster

    Yes we’re looking into it, will let you know asap.

    in reply to: Categories Dropdown on Store Page #119764
    Molay Das
    Keymaster

    Hi,

    Can you please tell us which theme are you using?

    Thanks,

    in reply to: Store List Filter By Category not working #119758
    Molay Das
    Keymaster

    Hi @carlosespanad,

    The first question is answered above.
    Regarding the second question can you please check in your browser console that whether there is any javascript error or not?

    Thanks,

    in reply to: Removing emailaddres from Review overview #119756
    Molay Das
    Keymaster

    Hi,

    Please go by the following steps:

    1) First create a js file named “custom-script.js” and put it inside the “js” folder (if you don’t have a “js” folder then create it) of your child theme.
    2) Add the below code to your newly created “custom-script.js” file.

    jQuery( document ).ready( function( $ ) {
    	setTimeout(function(){
    		$(".wcfmmp-author-meta").each(function() {
    		  var content = $(this).html();
    		  $(this).html(content.substr(0,content.indexOf('<br>')));
    		});
    	}, 900);
    });

    3) Add the below code to your child theme’s functions.php file.

    add_action( 'wp_enqueue_scripts', 'custo_scripts_enqueue_styles', 99999 );
    function custo_scripts_enqueue_styles() {
    	wp_enqueue_script( 'custom-script', get_stylesheet_directory_uri() . '/js/custom-script.js', array( 'jquery' ), '1.0', true );
    }

    It will remove the customer email from review list.

    Thanks,

    in reply to: Total number of sales on each seller's store #119690
    Molay Das
    Keymaster

    Hi,

    Replace the previous code with the below given code.

    add_shortcode( 'wcfm_vendor_orders', 'get_wcfm_vendor_orders' );
    function get_wcfm_vendor_orders() {
    	ob_start();
    	global $wpdb;
    	$store_id  = 0;
    	if ( wcfm_is_store_page() ) {
    		$wcfm_store_url = get_option( 'wcfm_store_url', 'store' );
    		$store_name = get_query_var( $wcfm_store_url );
    		if ( !empty( $store_name ) ) {
    			$store = get_user_by( 'slug', $store_name );
    		}
    		$store_id = $store->ID;
    	} elseif( is_product() ) {
    		$store_id = get_post_field( 'post_author', get_the_ID() );
    	}
    	$sql = 'SELECT * FROM ' . 'wp_wcfm_marketplace_orders WHERE vendor_id=' . $store_id;
    	$order_data = $wpdb->get_results( $sql );
    	echo '<p><strong>Total Sales/Orders: ' . count( $order_data ) . '</strong></p>';
    	return ob_get_clean();
    }

    And use the following shortcode in “Vendor Store Sidebar” widget: [wcfm_vendor_orders]

    It will display the total number of sales/orders for each vendors.

    Thanks,

    in reply to: Design of Store Listing Page #119635
    Molay Das
    Keymaster

    You’re most welcome. Glad to hear it worked for your.

    in reply to: Customize the woocommerce step by step setup #119530
    Molay Das
    Keymaster

    Hi,

    Are you talking about the SEO tab that appears while store setup?
    If yes then add the below code to your child theme’s functions.php file or if you don’t have child theme then use Code Snippet plugin (https://wordpress.org/plugins/code-snippets/) to add the below code.

    function remove_seo_tab($steps) {
        unset($steps['seo']);
        return $steps;
    }
    add_filter('wcfmmp_store_setup_steps', 'remove_seo_tab');

    Thanks,

    in reply to: The Arabic front page manager is not loading information #119529
    Molay Das
    Keymaster

    Hi,

    Please check your browser console whether there is any javascript error or not. Also go to wp-admin->WooCommerce->Status->Logs and check whether there is any fatal error or not.

    Thanks,

    in reply to: Vendor dahsboard menu display #119527
    Molay Das
    Keymaster

    Hi,

    This seems to be a css issue. Can you please share us your website login details as private reply here? We’ll fix it.

    Thanks,

    in reply to: Total number of sales on each seller's store #119518
    Molay Das
    Keymaster

    Hi,

    Add the below code to your child theme’s functions.php file.

    add_shortcode( 'wcfm_vendor_orders', 'get_wcfm_vendor_orders' );
    function get_wcfm_vendor_orders( $atts, $vendor_id ) {
    	ob_start();
    	global $wpdb;
    	$att = shortcode_atts( array(
            'vendor_id' => ''
        ), $atts );
    	$sql = 'SELECT * FROM ' . 'wp_wcfm_marketplace_orders';
    	if ( $att['vendor_id'] ) {
    		$sql .= ' WHERE vendor_id=' . $att['vendor_id'];
    	}
    	$order_data = $wpdb->get_results( $sql );
    	echo '<p><strong>Total Sales/Orders: ' . count( $order_data ) . '</strong></p>';
    	return ob_get_clean();
    }

    Then use the following shortcode in text widget : “[wcfm_vendor_orders vendor_id=”2″]”
    Just pass the correct vendor id in “vendor_id” attribute and it will display the number of orders placed against that particular vendor.

    Thanks,

    in reply to: Categories Dropdown on Store Page #119262
    Molay Das
    Keymaster

    Hi,

    You can enable the “Enable toggle to show child categories” under “Vendor Store: category” widget. Please see the attached screenshot of the section.
    PFA….

    Thanks,

    Attachments:
    You must be logged in to view attached files.
    in reply to: Frequently Bought Together #119260
    Molay Das
    Keymaster

    Hi,

    Didn’t get you. Can you please explain a bit more and share screenshots of the section with issues?

    Thanks

    Molay Das
    Keymaster

    Hi,

    A class named “bg-loaded” was getting removed from the banner section due to which the banner was not loading.
    I’ve added “home-hd-banner” custom class to the banner section after that added the below code under wp-admin->Flatsome->Advanced->Global Settings->FOOTER SCRIPTS.

    <script>
    jQuery(document).ready( function($) {
    $('.home-hd-banner .bg').addClass('bg-loaded');
    });
    </script>

    It’s working fine now.

    And regard the map on store page hiding the header I’ve added the below css code under wp-admin->Flatsome->Advanced->Custom CSS->ALL SCREENS.

    .header {
    z-index: 9999 !important;
    }

    Thanks,

    in reply to: Clone a group #119113
    Molay Das
    Keymaster

    Hi,

    Sorry we don’t have this feature right now but thanks for the suggestion maybe we will implement it in our future updates.

    Thanks,

    in reply to: Customise the add product form #119095
    Molay Das
    Keymaster

    Hi,

    “Use as variation” option checked by default and it should not behave like you said. Still can you please share us your website login details as private reply here. We need to check the issue.

    Thanks,

    Molay Das
    Keymaster

    Hi,

    Please share your website login details with us as private reply here.
    We need to check.

    Thanks,

    in reply to: Product Importer #118984
    Molay Das
    Keymaster

    Hi,

    We don’t have such features to import products from amazon, ebay, alibaba, aliexpress, etc.
    You’ve to follow these file formats to import: https://github.com/woocommerce/woocommerce/tree/master/sample-data
    You can avail the product import feature if you use “WCFM – WooCommerce Frontend Manager – Ultimate” addon plugin.
    WCFM – WooCommerce Frontend Manager – Ultimate Plugin Link: https://wclovers.com/product/woocommerce-frontend-manager-ultimate/

    Thanks,

    in reply to: 404 error for vendor page #118761
    Molay Das
    Keymaster

    Welcome 🙂

    in reply to: Map Size #118720
    Molay Das
    Keymaster

    Hi,

    Add the below css code to your child theme’s style.css file to adjust your store list page map width & height.

    #wcfmmp-store-list-map {
      width: 100% !important;
      height: 400px !important;
    }

    And regarding map zoom please use “map_zoom” attribute in “wcfm_stores” shortcode. Example: [wcfm_stores map_zoom=”5″]

    Thanks,

    Molay Das
    Keymaster

    Hi,

    Please go to store-manager->Capability->Store Vendors Capability and you will find there “Linked” option to enable/disable ( ON/OFF ) under “Panels” section. This will remove the liked panel with upsell & cross sell option from “Add Product” section.

    Thanks,

    in reply to: 404 error for vendor page #118403
    Molay Das
    Keymaster

    Hi,

    Please go to wp-admin->settings->permalinks and select “post name” then save.

    Thanks,

    in reply to: Vendor Login redirection #118353
    Molay Das
    Keymaster

    Hi,

    When vendors login they are redirected to the store manager page, it’s default.
    Are you using any cache or optimize plugin? If yes then please deactivate them and check once.
    If the issue still persists then please share us your website login credentials as private reply here. We’ll get back to you.

    Thanks,

    in reply to: Design of Store Listing Page #118275
    Molay Das
    Keymaster

    Hi,

    Please follow the below link for making changes in vendor listing page.
    https://docs.wclovers.com/store-list/

    Thanks,

Viewing 25 posts - 101 through 125 (of 388 total)