Forum Replies Created
- AuthorPosts
- Sayan NaskarMember
Hello @Sandi
The visibility of the products and the orders are only dependant on the capability settings of the vendor ( global capability, group level capability, and vendor level capability.)
If you want we can check if there is an issue or not. In that case, we will need a demo vendor and temporary admin access to your site. Please make the reply private while sending access.Sayan NaskarMemberSayan NaskarMemberHello @kwame
This app is a seller app and concentrates on the activities that can be seller not the frontend shop functionality. We have a plan in which you will receive bug fixes and future feature enhancements.Thank You.
Sayan NaskarMemberHello @vraugul1,
Please share with us a temporary admin and a vendor access with us in a private reply. We will check the issue and update you.
Thank you.Sayan NaskarMemberHello @isaacudobia
Please share with us a temporary admin and a vendor access with us in a private reply. We will check the issue and update you..
Thank you.Sayan NaskarMemberHello @adio060693
Yes, you are right. Just change “your-top-secret-key” with a secret key of your choice and don’t share it in public profile. Please mark the reply as a private reply when you are sharing site access details or other secret keys like this in the forum.
By the way what problem are you facing in the app?Sayan NaskarMemberHello @Kris
For white labeling the app and publishing it in your own app store accounts:
Please check customization pricing plans – https://wcfm.app/pricing/Sayan NaskarMember@Sbutla
For white labeling the app and publishing it in your own own app store accounts:
Please check customization pricing plans – https://wcfm.app/pricing/Sayan NaskarMemberHello @jessie
Please confirm that “HTTP Authorization Header” is enabled in your server or not.
Secondly, in the wp-config.php file, you have added the JWT_AUTH_SECRET_KEY and JWT_AUTH_CORS_ENABLE definition before ‘WP_DEBUG’ definition preferably just after the NONCE_SALT definition not at the end of the file after WP_DEBUG.To test please reinstall the app or clear the app data.
Thank You.
Sayan NaskarMemberHello,
Please update the WooCommerce Multivendor Marketplace – REST API plugin to the latest version it is now updated to fetch orders within a specific date range.\
Please find the updated documentation and available parameters for order from this link: https://wclovers.github.io/wcfm-rest-api/#get-all-ordersThank You.
Sayan NaskarMemberHello,
We will update you on this in the following updates.
Thank You.Sayan NaskarMemberHello,
We can definitely add that in your site. Please send us temporary wp-admin and FTP access along with a screenshot where you want to add the data in your site. in a private reply.
Thank You.January 23, 2019 at 7:41 am in reply to: Suggestion: Shipping by Weight (Weight Cost Rule Title ) #44765Sayan NaskarMemberHello,
We will add this in the next update. Currently, the label comes from the admin settings we will give the option to the vendors also.Thank You.
Sayan NaskarMemberHello,
For now shipping by weight do not support weight range entry for state and city as the settings panel will become too complex for the vendors to manage in that case. But we have future plans to implemnet state and city restriction field for the countries that will be easier to manage.Have you tried using shipping classes with shipping by zone to see if it solves your requirement? It is the default woocomerce flow to add shipping by weight functionality.
Thank You.
Sayan NaskarMemberHello,
Can you send us a demo vendor access to your site for us to check?
We will check all the settings and see whats wrong.Thank you.
Sayan NaskarMemberHello @rj,
We will definitely look into this. Please share with us a temporary admin access details of your site in the email id: wclovers.custom@gmail.com
Thank You.
Sayan NaskarMemberHello @Abid,
This is possible with our REST API. You have to use the Create Product Route ( https://wclovers.github.io/wcfm-rest-api/#create-a-product ) to solve the purpose.The thing which you need to do is:
While publishing product in Site 1 you have to call the Create Product Route ( https://wclovers.github.io/wcfm-rest-api/#create-a-product ) of the Site 2 with all the data of the new product in Site 1. This can be done by creating a custom plugin in Site 2.Thank You.
Sayan NaskarMemberHello @rj,
Are you trying to add media through REST API Route or vendor dashboard logging in the site?
If uploading media through REST API which Route Url are you using?Thank You.
Sayan NaskarMemberHello,
For now, city restriction is only possible for shipping by zone. We will inform you if we make further changes in the other shipping types.Thank You.
November 28, 2018 at 3:58 am in reply to: I want to style the review button on single product page #38446Sayan NaskarMemberYou are most welcome.
Sayan NaskarMemberHello,
Actually shipping “Shipping by Country” and “Shipping by Weight” works much differently than “Shipping by Zone”
Shipping by Zone supports multiple shipping methods in each zone which is not the case for others. They set a single cost for each matching country.Though we will plan some workaround to this in future updates for “Shipping by Country”.
Thank You.
November 27, 2018 at 6:20 am in reply to: I want to style the review button on single product page #38288Sayan NaskarMemberHello,
Kindly use the CSS mentioned below to fix the problem.
.woocommerce.et_pb_button_helper_class #respond #commentform input#submit,
.woocommerce-page.et_pb_button_helper_class #respond #commentform input#submit {
color: #ffffff !important;
}
Thank you
Sayan NaskarMemberHi,
Sorry for the delay, I’ve fixed all the issue you mentioned.1) It works only if I submit text with attachment. Why I cannot just add text notes without attachment? (Fixed, the text field is mandatory now)
2) Vendors still don’t get notified for customer note additions. (Fixed)
3) Notes displaying is not visually appealing in both location (Vendor Dashboard & Order Details). Please, put them is cells like design or in a table. (Done, an extra column is added for displaying the date and user name who added the note.)
4) Please, add one column for who submitted this note (In both location Vendor Dashboard & Order Details). (If the user is vendor or admin then the user name will be shown but if the customer adds a note then his/her name will not be shown as woocommerce doesn’t save customers name for order notes)The new code link is shared below, please add this code instead of the previous one.
Code Link: https://drive.google.com/open?id=1KhO5j37hkVYh0Tc1I0nMbaEnyQiPbmeYThanks
Sayan NaskarMemberHello,
Group the cities with their respective states. Use the code below
add_filter( 'wc_city_select_cities', 'my_cities' );
/**
* Replace XX with the country code. Instead of YYY, ZZZ use actual state codes.
*/
function my_cities( $cities ) {
$cities['XX'] = array(
'YYY' => array(
'City ',
'Another City'
),
'ZZZ' => array(
'City 3',
'City 4'
)
);
return $cities;
}
But please note that in WCfMMP Shipping by city restriction will only work in “Shipping by Zone” not in “Shipping by Country” or “Shipping by Weight”
Sayan NaskarMemberHi,
1) Even private notes by vendors are displayed to customers.
2) Vendors don’t get notification once customer added their noteBoth the above points have been integrated. Remove all the previous codes and add the code from the new file link given below.
File Link: https://drive.google.com/open?id=1OXWCh6sxc1cPccPDJhSBiBQR0FtBUsge
Thanks
- AuthorPosts