krazyplugins
Forum Replies Created
-
Forum: Plugins
In reply to: [ACF For Dokan] Support for Repeater and Gallery field typeThe repeater field is working now with the PRO version, you can check it on the demo.
Thanks
Forum: Plugins
In reply to: [ACF For Dokan] Repeater is not Working on Dokan DashboardHello @shukur5674
The repeater field is working now with the PRO version, you can check it on the demo.
Thanks
- This reply was modified 4 years, 5 months ago by krazyplugins.
Forum: Plugins
In reply to: [ACF For Dokan] Custom Field Not Showing in ‘Add New Product’ pageHello @tarrm
Are you talking about all the fields or WYSIWYG editor? I have replied to your new ticket, please check.
Thanks
Forum: Plugins
In reply to: [ACF For Dokan] Wysiwyg Editor Field Type Not Showing on Add New Product pageHello @tarrm
It will not work with the add new product, I have already written that in the description. It will only work with edit form.
It will be great if you can provide rating to the plugin.
Thanks
Forum: Plugins
In reply to: [ACF For Dokan] ACF field DateForum: Plugins
In reply to: [ACF For Dokan] ACF field DateHello @akro-web
I am not getting you in this statement:
it’s impossible to fill this field on the seller’s product sheets.Thanks
Forum: Plugins
In reply to: [ACF For Dokan] Different Fields By CategoryYes, it can be done using PRO version.
Forum: Plugins
In reply to: [ACF For Dokan] Different Fields By CategoryHello @gcsaudi
Yes, you can use the jQuery to show/hide the fields when specific category is selected.
Check it here for the reference: https://ww.wp.xz.cn/support/topic/and-from-acf-location-section-processed-as-or/Thanks
Forum: Plugins
In reply to: [ACF For Dokan] ‘AND’ from ACF ‘location’ section processed as ‘OR’ ?Hello @myxlot
This can be achieved using js, here is the example that you can use.
jQuery(document).ready(function(){ //hide all custom field on load jQuery(".acf-fields.acf-form-fields .acf-field").hide(); // load custom field based on the selected value value = jQuery("#product_cat").val(); if( value == '123' ) { // 123 is category ID jQuery(".acf-fields.acf-form-fields .acf-field").hide(); jQuery("#acf-field_616dd9594eaaa").parents(".acf-field").show(); } else if( value == '200' ) { jQuery(".acf-fields.acf-form-fields .acf-field").hide(); jQuery(".acf-field-6169d28f41111").show(); } // on product category dropdown change jQuery("#product_cat").change(function(){ value = jQuery(this).val(); if( value == '123' ) { //comics jQuery(".acf-fields.acf-form-fields .acf-field").hide(); jQuery("#acf-field_616dd9594eaaa").parents(".acf-field").show(); } else if( value == '200') { jQuery(".acf-fields.acf-form-fields .acf-field").hide(); jQuery(".acf-field-6169d28f41111").show(); } }); });Thanks
Forum: Plugins
In reply to: [ACF For Dokan] More FieldsForum: Plugins
In reply to: [ACF For Dokan] ACF date field in vendor dashboard@hluff The date field in the edit product page is in the PRO version, please download the latest plugin if you have purchased it and check.
Thanks
Forum: Plugins
In reply to: [ACF For Dokan] How do I display the field on the Product Page?Hello @khaled88xp
You can use the below code to get it working, add it in the active theme’s functions.php file:
add_action( 'woocommerce_product_meta_end', 'acf_dokan_display_product_fields' ); function acf_dokan_display_product_fields(){ echo '<div class="custom_fields"><span class="meta_title"> Product Code: '; the_field( 'product_code' ); echo '</div>'; }Replace the text Product Code with the custom field label and producy_code custom field slug.
Thanks
Forum: Reviews
In reply to: [ACF For Dokan] Helpful Plugin and Great Support!Thank you @davidweston
Forum: Reviews
In reply to: [ACF For Dokan] Helpful/WillingThank you.
Forum: Plugins
In reply to: [ACF For Dokan] Custom Field Not Showing in ‘Add New Product’ pageHello @davidweston
I hope everything is working fine now. Please provide review to the plugin.
Thanks