tsjippy
Forum Replies Created
-
Forum: Plugins
In reply to: [UniqueID for Contact Form 7] sending same id twice or moreThe page should auto-refresh to prevent this
Forum: Plugins
In reply to: [UniqueID for Contact Form 7] Warning Notice in debug modethank you, I have fixed it.
Forum: Plugins
In reply to: [Mollie for Contact Form 7] paymentchoiseShould be solved by now
Forum: Plugins
In reply to: [Mollie for Contact Form 7] paymentchoiseWill have a look into this later
Forum: Plugins
In reply to: [Mollie for Contact Form 7] Mollie Description Transactionyes sorry, I have included it now in the readme: Add a hidden field: [hidden description “This is my description”]
Forum: Plugins
In reply to: [Manage Notification E-mails] Emails are still sentsame here
Forum: Plugins
In reply to: [Swift SMTP (formerly Welcome Email Editor)] Plugin dosen’t worksame issue here
Forum: Plugins
In reply to: [Manage Notification E-mails] Still Getting Password Change Notificationssame for me
Forum: Plugins
In reply to: [Advanced Contact form 7 DB] Use relative dates in shortcodeCan you please add this?
I don’t know how to include pictures in a post or pb you…
- This reply was modified 7 years, 3 months ago by tsjippy.
Forum: Plugins
In reply to: [Contact Form 7] Get Form ID from form tag handlerin another topic
Forum: Plugins
In reply to: [Advanced Contact form 7 DB] Custom viewIs there any progress on this?
I see there is a post value: search_cf7_value Keywords
If you could change this to a get value I am happy.Forum: Plugins
In reply to: [Advanced Contact form 7 DB] Use relative dates in shortcodeactually all you need to add is a few lines:
if(!empty($start_date)){ $start_date = date("d/m/Y", strtotime($start_date)); } if(!empty($end_date)){ $end_date = date("d/m/Y", strtotime($end_date)); }right after
$start_date = $arrInfo['start-date']; $end_date = $arrInfo['end-date'];In vsz_acf7_db_shortcode_display_front.php.
you can then have a shortcode like this:
[acf7db form_id='X' start-date="last Friday" end-date="09/02/2019"]Forum: Plugins
In reply to: [Advanced Contact form 7 DB] Use relative dates in shortcodeso in the file “vsz_acf7_db_shortcode_display_front.php”
this should be changed:
$start_date = $arrInfo['start-date']; $end_date = $arrInfo['end-date'];to a relative thing like:
$scval = do_shortcode('['.$start_date.']'); if( $scval != '['.$start_date.']' ){ $value = esc_attr( $scval ); }Forum: Plugins
In reply to: [Contact Form 7] Find form id from tag handlerthanks!