Forum Replies Created
- AuthorPosts
- SushobhanKeymaster
Hi,
Which text do you want to translate? The image you added has only one string in English “Let’s go to the Dashboard”. Are you talking about this text? Lastly, are you using Loco translate for these translations?
Let me know.
Thank You!May 25, 2020 at 4:41 pm in reply to: Deactivate cart and purchase button for specific categories #135020SushobhanKeymasterHi,
I couldn’t find any kind of API documentation about marketplace payment on Pagopar website. Adding a new payment gateway support requires time and effort. Sorry but at this moment all our developers are busy and thus we are not taking any new customization work.
You could try posting this requirement on platforms like Fiverr, Upwork, Codeable, etc. to hire a suitable developer.
Thank You!SushobhanKeymasterHi,
Sorry for the delay. Kindly use the updated plugin from here- https://drive.google.com/open?id=16dHvy-Taht1Pumx_Xbfk-JJsveKOOg73
Thank you!SushobhanKeymasterHi,
I’m afraid you can’t achieve this using hooks and filters. You could add a new page for listing vendors and there implement all these. But that will require creating a new endpoint and generating the data yourself.
Sorry I couldn’t help you much with this!
Thanks!SushobhanKeymasterHi,
In that case, you can use this modified code-add_action( 'woocommerce_after_shop_loop_item_title', function() { if ( ! wcfm_is_store_page() && apply_filters( 'wcfm_is_pref_inquiry_button', true ) ) { echo '<div class="product_loop_inquiry_button_wrap">' . do_shortcode( '[wcfm_inquiry]' ) . '</div>'; } }, 3 );
So now you’ll have a div with class name product_loop_inquiry_button_wrap. You can then use CSS to change the appearance of this button.
Thank You!SushobhanKeymasterThe feature is still there. It’s just disabled by default. Many users report high CPU usage and site slowdown due to this. Like this topic- https://wclovers.com/forums/topic/urgent-site-crashing-need-help-with-ajax-calls-frontendmanager/
SushobhanKeymasterHi,
Thanks for getting in touch with us!
Absolutely, the code works. Please try and let me know if you have any trouble.
@SebastianFloKa, thank you for your contribution 🙂May 24, 2020 at 10:47 pm in reply to: **URGENT/SITE CRASHING** Need help with AJAX calls/FrontEndManager #134818SushobhanKeymasterHi,
Kindly use the following filter for that purpose-add_filter( 'wcfm_is_allow_desktop_notification', '__return_true' ); add_filter( 'wcfm_is_allow_new_message_check', '__return_true' ); apply_filters( 'wcfm_new_message_check_duration', 600000 );
Add this code to your child theme’s functions.php
In case you do not have a child theme then add code using this plugin – https://wordpress.org/plugins/code-snippets/
Let me know how this goes.
Thanks!SushobhanKeymasterHi,
Thanks for getting in touch with us!
Kindly use Loco Translate for this purpose. How to- https://docs.wclovers.com/locotranslate-translation-using-loco-translate-plugin/
Thank You!SushobhanKeymasterHi,
Sorry about the delay. I have replied in the other thread.
Than You!SushobhanKeymasterHi,
Sorry I wasn’t around. Due to the cyclone, internet service was not available.
WordPress is a popular category and developers can be found very easily. There are various platforms where you can post your job and select developers as per your choice. Here is a list of 6 such platforms https://www.wpbeginner.com/showcase/best-places-to-hire-wordpress-developers/.
Thank You!May 24, 2020 at 8:41 pm in reply to: Delete button & category breadcumb in product catalog view #134778SushobhanKeymasterThis reply has been marked as private.SushobhanKeymasterHi @emmagrimberg,
Are you still facing this issue? Please visit wp-admin >> Settings >> Permalinks page and then try again.
Let me know if the problem persists.
Thank You!SushobhanKeymasterThis reply has been marked as private.SushobhanKeymasterHi,
Do you have a hosting or still testing on your local environment? If you are testing locally, you can skip this check by disabling Email Verification from Admin dashboard >> Settings >> Vendor Registration.
And, on your live environment, keep this option checked.
Thank You!SushobhanKeymasterThis reply has been marked as private.SushobhanKeymasterHi,
Can you please tell me if you are still facing this issue? As I can see Withdrawal tab is already enabled and it isn’t messing up with the menu. If possible send me a screen recording of how I can reproduce this.
Thank You!May 23, 2020 at 11:08 pm in reply to: I have purchased wcfm ultimate and still can't see the membership tab #134566SushobhanKeymasterHi,
To make it work from setup wizard you need to add another redirect URL-
https://yourdomain.com?store-setup=yes&step=payment
Please don’t remove the earlier redirect URL, you will need both the URL’s as mentioned in our documentation- https://docs.wclovers.com/vendor-payment/#stripe-account-setup
Thank You!SushobhanKeymasterHi,
To make this work from setup wizard you need to add another redirect URL-
https://yourdomain.com?store-setup=yes&step=payment
Please don’t remove the earlier redirect URL, you will need both the URL’s as mentioned in our documentation- https://docs.wclovers.com/vendor-payment/#stripe-account-setup
Thank You!May 23, 2020 at 10:52 pm in reply to: Processing time displaying as "Delivery time" on Store page #134562SushobhanKeymasterHi,
Sorry, but I couldn’t reproduce this from my end. May I ask, how are you adding this shortcode? Do you have a staging site where I can test this? Please make sure you are adding this shortcode on a single product page.
Thank you!May 23, 2020 at 10:37 pm in reply to: You guys leave out an IMPORTANT feature – intentionally? #134554SushobhanKeymasterHi Sandra,
I didn’t say “this is not possible”. I just meant, WCFM doesn’t offer this as of now. Though we have this on our future roadmap.
Thank You!SushobhanKeymasterHi Craig,
I have tested the following code and found, it works with Zone Shipping the way you intended. This means it will overcome the limitation of always returning the first zone as per your zone set up. Could you please try the following snippet for your zone shipping-add_filter('woocommerce_get_zone_criteria', function( $criteria, $package, $postcode_locations ) { global $wpdb; if ( empty( $package['vendor_id'] ) ) return $criteria; $vendor_postcode_locations = $wpdb->get_results( "SELECT zone_id, location_code FROM {$wpdb->prefix}wcfm_marketplace_shipping_zone_locations WHERE location_type = 'postcode' AND vendor_id = " . absint( $package['vendor_id'] ) . ";" ); if ( ! $vendor_postcode_locations ) return $criteria; $country = strtoupper( wc_clean( $package['destination']['country'] ) ); $postcode = wc_normalize_postcode( wc_clean( $package['destination']['postcode'] ) ); $zone_ids_with_postcode_rules = array_map( 'absint', wp_list_pluck( $vendor_postcode_locations, 'zone_id' ) ); $matches = wc_postcode_location_matcher( $postcode, $vendor_postcode_locations, 'zone_id', 'location_code', $country ); $do_not_match = array_unique( array_diff( $zone_ids_with_postcode_rules, array_keys( $matches ) ) ); if ( ! empty( $do_not_match ) ) { foreach ($criteria as $key => $val) { if(strpos($val,'AND zones.zone_id NOT IN (') !== false) { $start = strpos($val, '('); $end = strpos($val, ')', $start + 1); $prev_do_not_match = explode(',', substr($val, $start + 1, $end -$start - 1)); $do_not_match = array_unique(array_merge($prev_do_not_match, $do_not_match)); $criteria[$key] = 'AND zones.zone_id NOT IN (' . implode( ',', $do_not_match ) . ')'; break; } } } return $criteria; }, 10, 3);
Add this code to your child theme’s functions.php
In case you do not have a child theme then add code using this plugin – https://wordpress.org/plugins/code-snippets/Let me know how this goes.
Thanks!SushobhanKeymasterHi,
Thanks for getting in touch with us!
This color is coming from your theme and not WCFM. So obviously you can’t change it from WCFM. Kindly use the following CSS to change this-.woocommerce-Price-amount { background-color: #fff !important; }
Thank You!
May 20, 2020 at 2:24 pm in reply to: How to add Tab in Single Product Page, editable from Vendor dashboard #133481SushobhanKeymasterHi,
Thanks for getting in touch with us!
For this approach, you’ll require the WCFM Ultimate addon. First, go to admin Settings >> Product Custome Field. From here create the fields you want to show under your new tab. But, under visibility choose ‘Do not show’ (because we are going to show these fields under our new tab).
Now from add/edit product screen add those information. Lastly, use the following snippet to add a new tab and show these details-add_filter( 'woocommerce_product_tabs', 'woo_new_product_tab' ); function woo_new_product_tab( $tabs ) { $tabs['new_tab'] = array( 'title' => __( 'My Tab', 'woocommerce' ), 'priority' => 53, 'callback' => 'woo_new_product_tab_content' ); return $tabs; } function woo_new_product_tab_content() { global $WCFMu; $product_id = get_the_ID(); if ( $product_id ) { $wcfm_product_custom_fields = (array) get_option( 'wcfm_product_custom_fields' ); if ( $wcfm_product_custom_fields && is_array( $wcfm_product_custom_fields ) && ! empty( $wcfm_product_custom_fields ) ) { $fields = ''; foreach ( $wcfm_product_custom_fields as $wpcf_index => $wcfm_product_custom_field ) { if ( ! isset( $wcfm_product_custom_field['enable'] ) ) continue; $visibility = isset( $wcfm_product_custom_field['visibility'] ) ? $wcfm_product_custom_field['visibility'] : ''; if ( $visibility ) continue; //we are not showing the fields that are allready visible in some other areas of the product echo $WCFMu->wcfmu_customfield_support->get_wcfm_custom_field_display_data( $product_id, $wcfm_product_custom_field ); } } } }
Add this code to your child theme’s functions.php
In case you do not have a child theme then add code using this plugin – https://wordpress.org/plugins/code-snippets/
Let me know how this goes.
Thanks!SushobhanKeymasterHi,
What do you mean by not working?
Try using some other browser or incognito mode.
Thanks. - AuthorPosts