Changeset 2739178
- Timestamp:
- 06/08/2022 10:41:19 AM (4 years ago)
- Location:
- send-cf7-data-to-active-campaign
- Files:
-
- 6 edited
-
tags/1.0/CF7-Contact-To-Active-Campaign.php (modified) (1 diff)
-
tags/1.0/readme.txt (modified) (1 diff)
-
tags/1.0/templates/ac-tab-cf-7.php (modified) (5 diffs)
-
trunk/CF7-Contact-To-Active-Campaign.php (modified) (1 diff)
-
trunk/readme.txt (modified) (1 diff)
-
trunk/templates/ac-tab-cf-7.php (modified) (5 diffs)
Legend:
- Unmodified
- Added
- Removed
-
send-cf7-data-to-active-campaign/tags/1.0/CF7-Contact-To-Active-Campaign.php
r2739143 r2739178 4 4 * Requires Plugins: Contact Form 7 5 5 * Author: Bitcraftx Team 6 * Description: Add contact to Active Campaign works with Contact form 7.After The submission of form by contactform7 submitted data well be sent to Activate campaign accout list.6 * Description: Send Data to AC (Active Campaign) works with Contact form 7. After The submission of form by contact form 7, the submitted data will be sent to Active campaign account. 7 7 * Version: 1.0 8 8 * Author URI: https://bitcraftx.com/ -
send-cf7-data-to-active-campaign/tags/1.0/readme.txt
r2739143 r2739178 13 13 == Description == 14 14 15 Send Data to AC works with Contact form 7.After The submission of form by contactform7 submitted data well be sent to Activate campaign accout.15 Send Data to AC (Active Campaign) works with Contact form 7. After The submission of form by contact form 7, the submitted data will be sent to Active campaign account. 16 16 17 17 = Privacy notices = -
send-cf7-data-to-active-campaign/tags/1.0/templates/ac-tab-cf-7.php
r2739143 r2739178 9 9 <input type="text" name="active_campaign_url" style="width: 50%;" id="active_campaign_url" placeholder="Active Campaign Url" value="<?php echo esc_html(get_post_meta($post_id_for_current_form, 'active_campaign_url', true)); ?>"> 10 10 <span style="color:#d60000;" id="url_message"> 11 <?php 12 $url = get_post_meta($post_id_for_current_form, 'active_campaign_url', true); 13 if (($url) && !(filter_var($url, FILTER_VALIDATE_URL))) { ?> 14 Invalid URL 15 <?php 16 }?> 17 </span> 11 <?php 12 $url = get_post_meta($post_id_for_current_form, 'active_campaign_url', true); 13 if (($url) && !(filter_var($url, FILTER_VALIDATE_URL))) { ?> 14 Invalid URL 15 <?php 16 } 17 ?> 18 </span> 18 19 </td> 19 20 </tr> … … 45 46 <option value="" select>select</option> 46 47 </select> 47 <span style="color:#ffa31a;" id='list_idKeyMessge'></span> 48 49 50 <span id="get_list" class="button" > 51 <span class="dashicons dashicons-controls-repeat" style="margin:4px auto;user-select: none;"></span> 48 <span style="color:#ffa31a;" id='list_idKeyMessge'></span> 49 <span id="get_list" class="button" > 50 <span class="dashicons dashicons-controls-repeat" style="margin:4px auto;user-select: none;"></span> 52 51 </span> 53 52 </td> … … 58 57 <td id="suggestedTags"> 59 58 <span>Tokens: </span><?php 60 $WPCF7_ContactForm = WPCF7_ContactForm::get_instance($post_id_for_current_form);61 $WPCF7_ContactForm->suggest_mail_tags(); ?>59 $WPCF7_ContactForm = WPCF7_ContactForm::get_instance($post_id_for_current_form); 60 $WPCF7_ContactForm->suggest_mail_tags(); ?> 62 61 </td> 63 62 </tr> … … 71 70 <span style="color:#d60000;" id='first_name_message_token'> 72 71 <?php 73 if ($firstName && !preg_match("/.*\[.+\].*/", $firstName)) {74 echo "Invalid Token";75 }?>72 if ($firstName && !preg_match("/.*\[.+\].*/", $firstName)) { 73 echo "Invalid Token"; 74 }?> 76 75 </span> 77 76 </td> … … 85 84 <span style="color:#d60000;" id='last_name_message_token'> 86 85 <?php $lastName = get_post_meta($post_id_for_current_form, 'active_campaign_last_name', true); 87 if ($lastName && !preg_match("/.*\[.+\].*/", $lastName)) {88 echo "Invalid Token";89 }?>86 if ($lastName && !preg_match("/.*\[.+\].*/", $lastName)) { 87 echo "Invalid Token"; 88 }?> 90 89 </span> 91 90 </td> -
send-cf7-data-to-active-campaign/trunk/CF7-Contact-To-Active-Campaign.php
r2739143 r2739178 4 4 * Requires Plugins: Contact Form 7 5 5 * Author: Bitcraftx Team 6 * Description: Add contact to Active Campaign works with Contact form 7.After The submission of form by contactform7 submitted data well be sent to Activate campaign accout list.6 * Description: Send Data to AC (Active Campaign) works with Contact form 7. After The submission of form by contact form 7, the submitted data will be sent to Active campaign account. 7 7 * Version: 1.0 8 8 * Author URI: https://bitcraftx.com/ -
send-cf7-data-to-active-campaign/trunk/readme.txt
r2739143 r2739178 13 13 == Description == 14 14 15 Send Data to AC works with Contact form 7.After The submission of form by contactform7 submitted data well be sent to Activate campaign accout.15 Send Data to AC (Active Campaign) works with Contact form 7. After The submission of form by contact form 7, the submitted data will be sent to Active campaign account. 16 16 17 17 = Privacy notices = -
send-cf7-data-to-active-campaign/trunk/templates/ac-tab-cf-7.php
r2739143 r2739178 9 9 <input type="text" name="active_campaign_url" style="width: 50%;" id="active_campaign_url" placeholder="Active Campaign Url" value="<?php echo esc_html(get_post_meta($post_id_for_current_form, 'active_campaign_url', true)); ?>"> 10 10 <span style="color:#d60000;" id="url_message"> 11 <?php 12 $url = get_post_meta($post_id_for_current_form, 'active_campaign_url', true); 13 if (($url) && !(filter_var($url, FILTER_VALIDATE_URL))) { ?> 14 Invalid URL 15 <?php 16 }?> 17 </span> 11 <?php 12 $url = get_post_meta($post_id_for_current_form, 'active_campaign_url', true); 13 if (($url) && !(filter_var($url, FILTER_VALIDATE_URL))) { ?> 14 Invalid URL 15 <?php 16 } 17 ?> 18 </span> 18 19 </td> 19 20 </tr> … … 45 46 <option value="" select>select</option> 46 47 </select> 47 <span style="color:#ffa31a;" id='list_idKeyMessge'></span> 48 49 50 <span id="get_list" class="button" > 51 <span class="dashicons dashicons-controls-repeat" style="margin:4px auto;user-select: none;"></span> 48 <span style="color:#ffa31a;" id='list_idKeyMessge'></span> 49 <span id="get_list" class="button" > 50 <span class="dashicons dashicons-controls-repeat" style="margin:4px auto;user-select: none;"></span> 52 51 </span> 53 52 </td> … … 58 57 <td id="suggestedTags"> 59 58 <span>Tokens: </span><?php 60 $WPCF7_ContactForm = WPCF7_ContactForm::get_instance($post_id_for_current_form);61 $WPCF7_ContactForm->suggest_mail_tags(); ?>59 $WPCF7_ContactForm = WPCF7_ContactForm::get_instance($post_id_for_current_form); 60 $WPCF7_ContactForm->suggest_mail_tags(); ?> 62 61 </td> 63 62 </tr> … … 71 70 <span style="color:#d60000;" id='first_name_message_token'> 72 71 <?php 73 if ($firstName && !preg_match("/.*\[.+\].*/", $firstName)) {74 echo "Invalid Token";75 }?>72 if ($firstName && !preg_match("/.*\[.+\].*/", $firstName)) { 73 echo "Invalid Token"; 74 }?> 76 75 </span> 77 76 </td> … … 85 84 <span style="color:#d60000;" id='last_name_message_token'> 86 85 <?php $lastName = get_post_meta($post_id_for_current_form, 'active_campaign_last_name', true); 87 if ($lastName && !preg_match("/.*\[.+\].*/", $lastName)) {88 echo "Invalid Token";89 }?>86 if ($lastName && !preg_match("/.*\[.+\].*/", $lastName)) { 87 echo "Invalid Token"; 88 }?> 90 89 </span> 91 90 </td>
Note: See TracChangeset
for help on using the changeset viewer.