Forum Replies Created
- AuthorPosts
- Ramamurthy KrishnanKeymaster
Hi,
Are you using all updated versions of our plugin? If not please update them and do take backup of all files and database before updating anything.
Also if you are using any cache or optimize plugin then please deactivate them and check again.Thanks,
Ramamurthy KrishnanKeymasterHi,
We can’t access the page, it shows an error.
Please see the screenshot of the error attached below.Thanks,
Attachments:
You must be logged in to view attached files.April 7, 2020 at 1:13 pm in reply to: Pagination o Store List not working with Country & State filter #116274Ramamurthy KrishnanKeymasterThis reply has been marked as private.April 7, 2020 at 1:07 pm in reply to: Bug: Map on Vendors Listing Page not working when sidebar is customized #116266Ramamurthy KrishnanKeymasterHi,
Here is a quick video explaining what I mean: https://www.loom.com/share/57fd8e2c05854b34a428793486948bec
Please go to store-manager->Settings->GEO Location and set your default map location in “Map Default Location” field and the check once.I also noticed that the locations pins are a bit off – when zoomed out, they are not in the exact location – when zoomed very close in, they are correct. Is this a known issue or did I set up something incorrectly?
If you set your location correctly it will appear at exact pin point set. Yes when you zoom out then it may look like a cluster as the area shortens, it is default Google Map feature.Thanks,
Ramamurthy KrishnanKeymasterHi,
This is a css issue so we need to check your site.
Please share your website login credentials with us as private reply here. We’ll get back to you.Thanks,
Ramamurthy KrishnanKeymasterHi,
I can see that you have followed the instructions as explained, a field with “Show / Hide Whatsapp Number” will appear and if you select “yes” it will be displayed in the “Store” tab in product details page.
Please see the attached screenshots.If it’s still didn’t work for you then please provide us your website login details.
Do send your website login credentials as private reply here.Thanks,
Attachments:
You must be logged in to view attached files.April 6, 2020 at 11:23 pm in reply to: Pagination o Store List not working with Country & State filter #116055Ramamurthy KrishnanKeymasterHi @nacho,
Please try to understand, the link you have provided us is not opening, maybe you are using any security tool which doesn’t allow to browse it over here.
You need to fix that first and make your website working, until and unless it is accessible to us how can we help you.
We’ve also shared you the screenshot of the error in our previous reply.Pleas fix it and do let us know, we will definitely help you.
Thanks,
April 3, 2020 at 5:29 pm in reply to: Add \"Store Hours\" to the listing notice that is displayed #115086Ramamurthy KrishnanKeymasterHi,
What I understood that you want “This store is now closed” and “Opens at: Thursday 8:00AM” both the messages to display at store details page and also a click option on the store banner which will popup the store hours ——- right? Please correct me if I’m wrong.
As this will require customization so please contact us here for the purpose: https://wclovers.com/setup-guidance/
Please put the “Forum Topic” field value before submission.
Thanks,
April 3, 2020 at 4:50 pm in reply to: Pagination o Store List not working with Country & State filter #115072Ramamurthy KrishnanKeymasterHi,
https://adoptaunbar.com/baryrest/ — The respective url is not working. I’ve attached a screenshot of what I can see while browsing this url.
PFA….
Thanks,
Attachments:
You must be logged in to view attached files.Ramamurthy KrishnanKeymasterYou’re most welcome. 🙂
Ramamurthy KrishnanKeymasterHi,
Do you think this can be resolved? Will it be in an update or a code snippet? Ideally the plugin doesn’t make requests for new notifications if all the push-notifications are set off – once the site is loaded, just no new requests.
Please go to store-manager->Settings->Notification Manager and you can see the notification ON/OFF settings for different sections.Another question – is it possible to import shops from WC Marketplace just in case? I have 3 stores in the works and I would really need to get them started and it seems this is not an issue that can be resolved easily.
You can use this plugin ( https://wordpress.org/plugins/wc-multivendor-marketplace-migration/ ) to migrate from WC Marketplace to WCFM Marketplace.Thanks,
Ramamurthy KrishnanKeymasterHi,
I’ve checked your website and its working fine. There is also very less data in this test setup and nothing installed that can create the overloads server cpu max out issue. This is an issue from hosting server end, please contact server admin for this.
Thanks,
Ramamurthy KrishnanKeymasterHi,
Please go the wp-admin->Loco Translate->Plugins->WCFM – WooCommerce Frontend Manager and search for “Inquiry” or “Inquiries”, you will get the text.
Thanks,
April 2, 2020 at 6:48 pm in reply to: Is there a way to completely remove default vendor prefix slug? #114730Ramamurthy KrishnanKeymasterSorry, it’s not possible. Store url base is essential, this is as per WP URL standard.
Ramamurthy KrishnanKeymasterHi,
Please share me your website login credentials as private reply here. I need to check it.
Thanks,
Ramamurthy KrishnanKeymasterHi,
Can you please see the attachment below and confirm whether you are willing to remove the email address (marked in red) from this section or not?
PFA….Thanks,
Attachments:
You must be logged in to view attached files.Ramamurthy KrishnanKeymasterHi,
can you have a look at this issue? https://wclovers.com/forums/topic/plugin-overloads-server-cpu-max-out/
This unfortunately makes the plugin unusuable for some users.
Regarding this issue I’ve replied to the respective forum link. Please contact your server admin about this issue as it seems to be a issue from your server end and do let us know what they say.Meanwhile if you can give me your website login details then I can check if its something else thats creating the issue.
Please send your website login credentials as private reply here.
Thanks,
Ramamurthy KrishnanKeymasterHi,
Sorry for the delay.
This seems to be a issue from your server end. Did you inform it to your server admin about it? It can also happen due to low server bandwidth, maybe you need to upgrade your hosting plan.
Please contact your server admin first and do let us know what they said.Thanks,
Ramamurthy KrishnanKeymasterHi,
The “after product price” visibility setting works for product details page only.
I’ve added the below code snippet ( named: Display product custom fields ) in your site to display the custom field values after price in quick view mode:add_filter( 'woocommerce_short_description', 'cus_woocommerce_short_description' ); function cus_woocommerce_short_description( $description ) { global $WCFM, $product, $post; $product_id = 0; $wcfm_custom_fields_values = ''; if ( is_object( $product ) && !is_product() ) { $product_id = $product->get_id(); $wcfm_product_custom_fields = get_option( 'wcfm_product_custom_fields', array() ); $wcfm_custom_fields_obj = new WCFMu_Custom_Field_Support(); if( $wcfm_product_custom_fields && is_array( $wcfm_product_custom_fields ) && !empty( $wcfm_product_custom_fields ) ) { foreach( $wcfm_product_custom_fields as $wpcf_index => $wcfm_product_custom_field ) { if( !isset( $wcfm_product_custom_field['enable'] ) ) continue; $display_data = $wcfm_custom_fields_obj->get_wcfm_custom_field_display_data( $product_id, $wcfm_product_custom_field ); $wcfm_custom_fields_values .= $display_data; } } } return $wcfm_custom_fields_values . $description; }
No need to add the code again as I’ve already added it to your site. Please check your site once.
Thanks,
Ramamurthy KrishnanKeymasterHi,
Yes, it’s all updated. I noticed when I delete the cache, it works, but it did happen again… Not sure if it’s a constant problem, for now it’s ok.
Please deactivate the cache plugin and check whether the issue appears again or not.Can you please come back to me regarding the server resources the plugin consumes? That is a really issue for me.
Didn’t get you, can you please explain it a bit more?Thanks,
Ramamurthy KrishnanKeymasterHi @sohom,
The login credentials you have provided are not working. Can you please check it for yourself once and then send the correct one.
Looking forward for your reply.Thanks,
Ramamurthy KrishnanKeymasterHi @EK,
There is no such section where the generated affiliate links are listed.
This will be a custom work, please contact us here for the purpose: https://wclovers.com/setup-guidance/
We’ll get back to you asap.Thanks,
Ramamurthy KrishnanKeymasterHi,
The products list is opening here but your website is getting a “500 Internal Server Error” frequently, I’ve attached a screenshot of the error below.
Please talk to your server admin about this and do let me know if any further issues.Thanks,
Attachments:
You must be logged in to view attached files.Ramamurthy KrishnanKeymasterHi,
Currently I can see that your website permalink is set to “post name” and I can access the store list page in store manager and vendor store page as well. In vendor store page the vendor products are listed also. I’ve attached some screenshots of the pages below.
Please do let me know if any further issues.
Thanks,
Attachments:
You must be logged in to view attached files.Ramamurthy KrishnanKeymasterHi,
Can you please explain a bit more about your requirement? It’ll be great if you can share a screenshot of the section as well.
Thanks,
- AuthorPosts