Forum Replies Created
- AuthorPosts
- MustafaParticipant
I was talking about per product shipping and not by shipping rules.
MustafaParticipantThis reply has been marked as private.MustafaParticipantAny update?
MustafaParticipantSent
MustafaParticipantI have double checked many times but same issue. Please support.
MustafaParticipantPer customer paying method
MustafaParticipantHi,
Okay, I will give it a try and let you know if I ran into problems.
Thanks
MustafaParticipantThe custom code was working but was not linked to states. I removed the custom code and now using this plugin
https://wordpress.org/plugins/wc-city-select/How can I resolve this issue?
MustafaParticipantMustafaParticipantThis reply has been marked as private.MustafaParticipantI want to use the plugin but then how can I enable select field to be searchable? See attached for better idea.
Attachments:
You must be logged in to view attached files.MustafaParticipantThis reply has been marked as private.MustafaParticipantNice! Can you add OPT verification option for customer phone during checkout?
MustafaParticipantI don’t want to use that plugin and I’ve added cities using code below and made select field searchable so user can easily find their city:
/** * Change the checkout city field to a dropdown field. */ function change_city_to_dropdown( $fields ) { $city_args = wp_parse_args( array( 'type' => 'select', 'options' => array( 'city1' => 'city1', 'city2' => 'city2' ), 'input_class' => array( 'wc-enhanced-select', ) ), $fields['shipping']['shipping_city'] ); $fields['shipping']['shipping_city'] = $city_args; $fields['billing']['billing_city'] = $city_args; wc_enqueue_js( " jQuery( ':input.wc-enhanced-select' ).filter( ':not(.enhanced)' ).each( function() { var select2_args = { minimumResultsForSearch: 5 }; jQuery( this ).select2( select2_args ).addClass( 'enhanced' ); });" ); return $fields; } add_filter( 'woocommerce_checkout_fields', 'change_city_to_dropdown' );
How can those cities that were added as a checkout field be supported in WCfM shipping?
Regards,
MustafaParticipantHi,
Can you please give us timeline when this feature will be added?
Regards,
MustafaParticipantSince Twilio is not support in Saudi Arabia, it is not an option we can use.
https://www.eyeswift.com/msg91-woocommerce-sms-notification-plugin/
If you go to above link and navigate to comment section. The developer said that this plugin “doesn’t contain the OTP validation functionality.”
Can you please confirm?MustafaParticipantIs it the “WC City Select” plugin?
MustafaParticipantIt is fixed after remove this filter
add_filter(‘wcfmmp_city_select_dropdown_enabled’, ‘__return_true’ );But this disabled shipping by city
MustafaParticipantDo you have a plan for implementing this feature?
January 13, 2019 at 9:51 am in reply to: Mobile Number verification during Vendor Registration #43326MustafaParticipantI don’t think there is.
January 7, 2019 at 8:00 am in reply to: Mobile Number verification during Vendor Registration #42490MustafaParticipantCan you add support for:
– https://www.mobily.ws/en/api-scripts.html
– https://www.msegat.com/index.php?action=533#APIJanuary 7, 2019 at 7:40 am in reply to: Mobile Number verification during Vendor Registration #42489MustafaParticipantHi,
BTW, Twilio does not support Saudi Arabia Numbers. No benefit for us.MustafaParticipantI did not know about it. Thanks for highlighting this.
MustafaParticipantCan you double check one this please?
MustafaParticipantHi,
Can you add a feature to exclude specified vendors and their products from REST-API?
- AuthorPosts