Forum Replies Created
- AuthorPosts
Ramamurthy Krishnan
KeymasterHi,
Can you please explain it more elaborately what you want while creating new product or editing a product?
Thanks
March 12, 2020 at 1:16 pm in reply to: when vendor store name in Arabic it's not showing products in vendor store page #111306Ramamurthy Krishnan
KeymasterHi,
Have you added any product to that vendor?
Shop page displays all products but vendors should have some products of their own ( vendor has to add product ) to show them in their store page.Thanks,
Ramamurthy Krishnan
KeymasterHi,
Please add the below css code to your theme’s style.css file.
#wcfmmp-product-list-map { display: none !important; }Thanks,
Ramamurthy Krishnan
KeymasterHi,
Please go to your wp-config.php file and replace “define(‘WP_DEBUG’, true);” with “define(‘WP_DEBUG’, false);”, the warning will go.
The optimizer plugin is having some compatibility issue with our plugin.Thanks,
Ramamurthy Krishnan
KeymasterHi,
Are you talking about the below link?
https://www.massagesalon.online/place/?v=c86ee0d9d7edI can’t see any map in this page right now.
Thanks,
Ramamurthy Krishnan
KeymasterHi,
The “SG Optimizer” plugin was creating the issue, I’ve deactivated it in your website and its working fine now.
Thanks,
Ramamurthy Krishnan
KeymasterHi,
What is the use of the “Other Orders” option? What is de difference with “Referrer vendor orders”?
Can you please explain which sections are you talking about? Can you please share screenshots of the sections.Thanks,
Ramamurthy Krishnan
KeymasterHi,
Please pass “map” parameter with blank value in “wcfm_stores” shortcode.
Example: [wcfm_stores map=””]Thanks,
March 10, 2020 at 4:42 pm in reply to: Disable Brands field when vendor is adding new product #110934Ramamurthy Krishnan
KeymasterHi,
Its working fine for me here. Are you talking about the brand section under “Add Product” section? Please have a look at the red marked area in the attached screenshot below.
Thanks,
Attachments:
You must be logged in to view attached files.Ramamurthy Krishnan
KeymasterHi,
Please share us your website login details. We need to check the issue.
Please do share your website login credentials as private reply here.
Thanks,
Ramamurthy Krishnan
KeymasterHi,
You can create a affiliate link of vendor registration page and share the url. If any user registers as vendor browsing that url then the affiliate will get commission according to the percentage set.
Thanks,
Ramamurthy Krishnan
KeymasterThank you very much. 🙂
March 5, 2020 at 3:33 pm in reply to: Disable Brands field when vendor is adding new product #110083Ramamurthy Krishnan
KeymasterHi,
Please add the below given code to your child theme’s functions.php file. If you are not using any child theme then use “Code Snippets” ( https://wordpress.org/plugins/code-snippets/ ) plugin to add this code.
add_filter( 'wcfm_is_allow_custom_taxonomy', 'cus_wcfm_is_allow_custom_taxonomy', 10, 2 ); function cus_wcfm_is_allow_custom_taxonomy() { if ( wcfm_is_vendor() ) { return false; } else { return true; } }Thanks,
Ramamurthy Krishnan
KeymasterHi,
You’re most 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 offers.Thanks,
March 3, 2020 at 11:53 pm in reply to: Disable Brands field when vendor is adding new product #109780Ramamurthy Krishnan
KeymasterHi,
Which plugin are you using for product brands?
Thanks,
Ramamurthy Krishnan
KeymasterHi,
Are you using any user role editor plugin? If yes then please remove it and check once.
Thanks,
Ramamurthy Krishnan
KeymasterHi,
You’ve to use “”includes” parameter and pass the specific vendor ids into it which you want to display.
Here is the shortcode: [wcfm_stores per_row=”5″ includes=”3,5,22,9,87″]
Thanks,
Ramamurthy Krishnan
KeymasterHi,
Please add the below code to your child theme’s functions.php file or if you are not using any child theme then use the “Code Snippets” plugin ( https://wordpress.org/plugins/code-snippets/ ) to add this code.
add_action( 'init', 'cus_remove_product_bulk_edit_options' ); function cus_remove_product_bulk_edit_options() { if ( wcfm_is_vendor() ) { add_filter( 'wcfm_is_allow_products_manage_visibility', 'cus_wcfm_is_allow_products_manage_visibility' ); function cus_wcfm_is_allow_products_manage_visibility() { return false; } add_filter( 'wcfm_is_allow_featured_product', 'cus_wcfm_is_allow_featured_product' ); function cus_wcfm_is_allow_featured_product() { return false; } add_filter( 'wcfm_is_allow_inventory', 'cus_wcfm_is_allow_inventory' ); function cus_wcfm_is_allow_inventory() { return false; } } }Thanks,
Ramamurthy Krishnan
KeymasterOk great.
Ramamurthy Krishnan
KeymasterHi,
Didn’t find whatsapp number field under “Profile” setting in edit vendor mode?
And under “Store Settings” below “Store Address” section didn’t you find the “Show / Hide Whatsapp Number” field?If you didn’t find these do’t worry just share us your website login details, we will check it.
Please send your website login details as private reply here.
Thanks,
Ramamurthy Krishnan
KeymasterHi,
After clicking the duplicate product button a duplicate product will be generated and you can edit that product according to your wish.
The action used for this is “wcfmu_duplicate_product”. Here is the add_action method which is being called for the functionality.
add_action('wp_ajax_wcfmu_duplicate_product', array( &$this, 'wcfmu_duplicate_product' ) );Thanks,
Ramamurthy Krishnan
KeymasterHi,
You’re most welcome.
Can you please specify which others things you want to tweak?Thanks,
Ramamurthy Krishnan
KeymasterHi,
First navigate to store-manager->Settings->Vendor Registration and then create a custom field with “Whatsapp Number” name. After this please add the below code to your child theme’s functions.php file. If you don’t have a child theme then please use code snippet plugin to add this code.
add_filter( 'wcfm_marketplace_settings_fields_address', 'vendor_store_custom_fields' ); function vendor_store_custom_fields($settings_fields_general) { global $WCFM, $WCFMmp, $wp; if( current_user_can('administrator') ) { $van_cur_url = add_query_arg( array(), $wp->request ); $van_vendorid = substr( $van_cur_url, strrpos( $van_cur_url, '/' ) + 1 ); $user_id = intval( $van_vendorid ); } else { $user_id = apply_filters( 'wcfm_current_vendor_id', get_current_user_id() ); } $store_whatsapp_opt = array( 'yes' => __( 'Yes', 'wc-frontend-manager' ), 'no' => __( 'No', 'wc-frontend-manager' ) ); $vendor_data = get_user_meta( $user_id, 'wcfmmp_profile_settings', true ); $store_whatsapp = isset( $vendor_data['store_whatsapp_number'] ) ? $vendor_data['store_whatsapp_number'] : 'no'; $settings_fields_general["store_whatsapp_number"] = array('label' => __('Show / Hide Whatsapp Number', 'wc-frontend-manager') , 'type' => 'select', 'options' => $store_whatsapp_opt, 'class' => 'wcfm-select wcfm_ele wcfm-banner-uploads', 'label_class' => 'wcfm_title', 'value' => $store_whatsapp ); return $settings_fields_general; } add_action( 'after_wcfmmp_sold_by_info_product_page', 'cus_after_wcfmmp_sold_by_info_product_page' ); function cus_after_wcfmmp_sold_by_info_product_page( $vendor_id ) { $vendor_data = get_user_meta( $vendor_id, 'wcfmmp_profile_settings', true ); $whatsapp = get_user_meta( $vendor_id, 'whatsapp-number', true ); if( $vendor_data['store_whatsapp_number'] == 'yes' ) { echo '<div class="wcfmmp_store_tab_info wcfmmp_store_info_address"><i class="wcfmfa fa-phone" aria-hidden="true"></i><span>' . $whatsapp . '</div>'; } }Thanks,
Ramamurthy Krishnan
KeymasterHi,
Yes, We’ve received the login details and checked your site, you are using “Newstore” theme which is not yet fully compatible with our plugin. But still we are looking into it. Please have a little patience, we will definitely get back to you.
Thanks,
Ramamurthy Krishnan
KeymasterHi,
Sorry we don’t have this feature, you can use other export plugins to export all at a time.
Thanks,
- AuthorPosts