tsjippy
Forum Replies Created
-
Forum: Plugins
In reply to: [UniqueID for Contact Form 7] Is there a letter before the number?Í am not likely to update the plugin with this feature, but feel free to alter the code and post it here.
its true, but also very difficult, because if I do that, the ID does not get updated before it gets stored in the DB if you use a plugin for that. Hence you get dublicate ID
Forum: Plugins
In reply to: [PWA for WP - Progressive Web Apps Made Simple] Splash Page Not Workingsame problem here!
Forum: Plugins
In reply to: [Progressive WordPress (PWA)] OneSignal integration not workingno one?
Forum: Plugins
In reply to: [Progressive WordPress (PWA)] Integration with onesignal is not workingsame problem here
Forum: Plugins
In reply to: [Mollie for Contact Form 7] Recurring payments error and interval fieldForum: Plugins
In reply to: [Mollie for Contact Form 7] Shortcode for payment result1.) replace
[amount* amount-40 min:4.95 max:4.95 placeholder “4,95”]with a hidden field with the name amount-40 and the value 4,95
2)[payment_result success = “Jouw donatie is succesvol ontvangen. Hartelijk dank daarvoor!” fail = “Jouw donatie is mislukt, probeer het alstublieft opnieuw.”]moet niet in het cf7 formulier, maar op de pagina waar je formulier staat dus bijvoorbeeld :[payment_result success = “Jouw donatie is succesvol ontvangen. Hartelijk dank daarvoor!” fail = “Jouw donatie is mislukt, probeer het alstublieft opnieuw.”] Vul onderstaand formulier in: [contact-form-7 id="831" title="Donatie Formulier"] [/payment_result]Forum: Plugins
In reply to: [Mollie for Contact Form 7] Amount selection by radiobuttonsorry, I misunderstood you.
If you want to fill in a field dynamically based on another field value, you need javascript.Forum: Plugins
In reply to: [UniqueID for Contact Form 7] Why skip some numbers?Well, the number increments on each page reload. As CF7 by default does not store its submission data I cannot tell what the latest saved number is.
So if the number is 1106, it becomes 1107 on a page reload.
Forum: Plugins
In reply to: [Mollie for Contact Form 7] Amount selection by radiobuttonyou can do so by adding this in your contactform:
<span class="wpcf7-form-control-wrap amount"><select name="amount" class="wpcf7-form-control wpcf7-text wpcf7-select"> <option value="100">Option 1</option> <option value="150">Option 2</option> <option value="200">Option 3</option> </select> </span>- This reply was modified 6 years, 4 months ago by tsjippy.
Forum: Plugins
In reply to: [Mollie for Contact Form 7] Amount selection by radiobuttonI think it is possible, will come back to you later
Forum: Plugins
In reply to: [UniqueID for Contact Form 7] automatic page after form submissionThat’s on purpose.
If we don’t do this there is a chance of a duplicate idbetter code:
//raised value if ($atts['raised'] == '' && !empty($options['raised_string'])){ $thermProperties['raised'] = $options['raised_string']; } else{ if (!is_numeric($atts['raised'])) { $shortcode = "[".strval($atts['raised'])."]"; $atts['raised'] = do_shortcode( $shortcode); } $thermProperties['raised'] = strval($atts['raised']); }I had the same question fixed it by adding
if (strpos($atts['raised'], '[') !== false) { $shortcode = strval($atts['raised'])."]"; $atts['raised'] = do_shortcode( $shortcode); }to therm_shortcode.php on line 92.
Please add this to the next release
Thanks, it is working now!