Naji Amer
Forum Replies Created
-
Hello,
Are you planning to support it in the near future? or shall we try to modify the plugin ourselves?
let me know
Hello, Please check the screenshot or the link below:
https://snipboard.io/0Qyvei.jpg
https://docs.stripe.com/tax/set-up#integrate
Strip can automatically collect taxes from EU countries when the transactions meet a certain threshold ex:
Hi wfalaa,
Thanks for your reply, i checked my spam and added a email log plugin for WordPress emails, unfortunately there is no trace of the password email, if i disable wordfence, i receive the password email, once i activate it, i only receive the wordfence notification of password recovery attempted.
i think you should move the password recovery attempted to be sent after the password reset email, just to make sure you don’t get locked out.
thanks
Forum: Plugins
In reply to: [Cf7 Fields Repeater] No file attachments in repeater fieldsHi Edward,
i just tested the cf7 repeater with files and it worked perfectly, try to replicate this issue more and install contact form 7 DB, test your form, open cf7 DB and check the message, if it doesn’t work, send me a screenshot of the form settings and the cf7 repeater setting along with the email and the cf7 db message screenshot that was received and i will check further.
Forum: Plugins
In reply to: [Cf7 Fields Repeater] add Select2.js to new fieldsHi there,
i added 2 js events to customize the frontend as you like in version (2.0.3)
Below event triggered once an item is added:
jQuery(document).on('wpcf7-panel-created', function(event, repeater, html) { console.log(jQuery(".wpcf7-repeater-" + repeater.id + " .wpcf7-repeater-item").get(repeater.item - 1)); });
Below event trigger once an item is removed
jQuery(document).on('wpcf7-panel-removed', function(event, repeater) { console.log(jQuery(".wpcf7-repeater-" + repeater.id)); });
In your case, this should work:
jQuery(document).on('wpcf7-panel-created', function(event, repeater, html) { jQuery(".wpcf7-repeater-" + repeater.id + " .wpcf7-repeater-item").get(repeater.item - 1).find('select').select2(); });
Forum: Plugins
In reply to: [Cf7 Fields Repeater] add utf-8 supportyour welcome ??
Forum: Plugins
In reply to: [Cf7 Fields Repeater] Fix to version WP 4.6 & CF7 4.5Remove all other fields and keep only the repeater shortcode, just for testing, the cf7 plugin uses RegExp to parse the shortcode so any error in any other field shortcode will affect all fields.
i just tested you shortcode with latest WP and CF7 and confirmed that it works.
Forum: Plugins
In reply to: [Cf7 Fields Repeater] add utf-8 supportHello,
Yes it looks like a bug in CF7 plugin, however i created a workaround to this issue, please update to version 2.0.2 and follow the steps below:
- Open the repeater shortcode and under the labels check base64 decode
- Open this link and paste the text in the first textarea then click encode
- You will get a new text (encoded), get the text and use it in the fields repeater label
- Generate the shortcode then save
It is basically encoding the text to base64 and decoding it back in the frontend to not break the shortcode.
Please follow up with contact cf7 from your side on this issue and use this workaround in the meantime until this issue is resolved.
Cheers
Forum: Plugins
In reply to: [Cf7 Fields Repeater] Fix to version WP 4.6 & CF7 4.5The index should never be empty, ex:
[repeater add-label:Add_new remove-label:Remove index:0 min:1 max:10 show:1]
if you omit the index, you will get the error
Check and let me know.
Forum: Plugins
In reply to: [Cf7 Fields Repeater] add utf-8 supportThe field is already in utf-8 and contact form 7 saves the values not the repeater, anyway maybe i am missing something, can you provide an example?
Thanks
Forum: Plugins
In reply to: [Ajaxy Instant Search] Thumbnail width is always 50i updated a fix to this issue in version 3.0.8, however you need to override the css manually to fit your needs.
Forum: Plugins
In reply to: [Ajaxy Instant Search] shortcode doesnt workWhat exactly are you trying to establish?, if you want to hide the categories try this show_category=”0″ show_post_category=”0″ or you can use the setting to hide them
Forum: Plugins
In reply to: [Ajaxy Instant Search] Problem with the dropdown listit have nothing to do with the setting, you need to fix the CSS
The plugin have filters which allow you to filter the search based on your request, you need to hire a dev to do this.
Forum: Plugins
In reply to: [Ajaxy Instant Search] Category SearchEdit the category settings and select “Search title and description”, it is slower though than searching only title.