Siful Islam Ananda
Forum Replies Created
-
Forum: Plugins
In reply to: [Custom Product Builder or Configurator for WooCommerce] Compatible ProductsThis is not currently possible with this plugin. We have a strategy for developing this feature.
Forum: Plugins
In reply to: [Custom Product Builder or Configurator for WooCommerce] Invalid taxonomy.I could not regenerate this issue. Could you send me a screen recording?
Forum: Plugins
In reply to: [WPAppsDev - CF7 Form Submission Limit] Show reaming Limit timeFor user base limit
$total_submission = get_post_meta( $form_id, 'wpadcf7sl-total-submission', true ); $total_count = get_user_meta( $user_id, "wpadcf7sl-total-submission-{$form_id}", true ); $remaining = $total_submission - (int) $total_count;For form base limit
$total_submission = get_post_meta( $form_id, 'wpadcf7sl-total-submission', true ); $total_count = get_post_meta( $form_id, 'submission-total-count', true ); $remaining = $total_submission - (int) $total_count;Above are given how to calculate the remaining limit.
Forum: Plugins
In reply to: [WPAppsDev - CF7 Form Submission Limit] custom time for reset limitsThis functionality is currently unavailable. We have taken your request into consideration.
Hello, @jpaulmora thanks for reporting this issue. I will fix the issue and update soon.
Sorry for the late reply. I was busy with my job. Please update the newest plugin and translate text using any translator plugin.
Forum: Plugins
In reply to: [WPAppsDev - CF7 Form Submission Limit] Change Names for My LanguageHi,
You can translate text using translate plugins. Bellow some translate plugins list
Loco Translate Weglot Polylang WPML Lingotek Translation Google Language Translator Google Website Translator Babble MultilingualPress Loco TranslateYou can change it from user meta table.
SELECT * FROMwp_usermetaWHERE meta_key LIKE 'wpadcf7sl-total-submission-%' AND user_id = 1Note: Please change user_id and table prefix
Forum: Plugins
In reply to: [WPAppsDev - CF7 Form Submission Limit] support fot multi site wi¥ordpressThis feature will be included in the next release.
Forum: Plugins
In reply to: [WPAppsDev - CF7 Form Submission Limit] No WPML supportCould you please share your staging site login information with me? Where can I debug this problem? Please email me the login information.
There is no mechanism to reset the counter for a specific user at this moment.
Could be a nice feature to add in the future!
This feature will hopefully be added in the upcoming release.
Thanks
Forum: Plugins
In reply to: [WPAppsDev - CF7 Form Submission Limit] limit data in emailhttp://hookr.io/plugins/contact-form-7/4.7/filters/wpcf7_mail_components/
You can use this hook to add new data to the email body.
Forum: Plugins
In reply to: [WPAppsDev - CF7 Form Submission Limit] Limit for userThanks for your query. This plugin does not support the amount of times limitation.
Forum: Plugins
In reply to: [WPAppsDev - CF7 Form Submission Limit] Custom total submissionupdate_post_meta( $cf7_form_id, 'wpadcf7sl-total-submission', $your_total_submission );You can update the total submission value dynamically using this code. Please change $cf7_form_id and $your_total_submission with your value.
Forum: Plugins
In reply to: [WPAppsDev - CF7 Form Submission Limit] Hide form after limit.Is it possible to hide the form once the submission limit is reached?
At this time, this is not possible.
This in order so I can say that reservation is closed for example.
You can do it easily using js. Would you please check this image?
I have a plan for the next update to allow the user to change the remaining and close message.
And next to that. Is the counter mandatory, or does it also work when I don’t add that code?
Yes, it’s mandatory.