Plugin Directory

Changeset 2739178


Ignore:
Timestamp:
06/08/2022 10:41:19 AM (4 years ago)
Author:
bitcraftx
Message:

Typo correction.

Location:
send-cf7-data-to-active-campaign
Files:
6 edited

Legend:

Unmodified
Added
Removed
  • send-cf7-data-to-active-campaign/tags/1.0/CF7-Contact-To-Active-Campaign.php

    r2739143 r2739178  
    44 * Requires Plugins:  Contact Form 7
    55 * 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.
    77 * Version: 1.0
    88 * Author URI: https://bitcraftx.com/
  • send-cf7-data-to-active-campaign/tags/1.0/readme.txt

    r2739143 r2739178  
    1313== Description ==
    1414
    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.
     15Send 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.
    1616
    1717= Privacy notices =
  • send-cf7-data-to-active-campaign/tags/1.0/templates/ac-tab-cf-7.php

    r2739143 r2739178  
    99                            <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)); ?>">
    1010                            <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>
    1819                        </td>
    1920                    </tr>
     
    4546                                <option value=""  select>select</option>
    4647                            </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>
    5251                            </span>
    5352                        </td>
     
    5857                        <td id="suggestedTags">
    5958                            <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(); ?>
    6261                        </td>
    6362                    </tr>
     
    7170                            <span style="color:#d60000;" id='first_name_message_token'>
    7271                            <?php
    73 if ($firstName && !preg_match("/.*\[.+\].*/", $firstName)) {
    74     echo "Invalid Token";
    75 }?>
     72                            if ($firstName && !preg_match("/.*\[.+\].*/", $firstName)) {
     73                                echo "Invalid Token";
     74                            }?>
    7675                        </span>
    7776                        </td>
     
    8584                            <span style="color:#d60000;" id='last_name_message_token'>
    8685                            <?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                            }?>
    9089                        </span>
    9190                        </td>
  • send-cf7-data-to-active-campaign/trunk/CF7-Contact-To-Active-Campaign.php

    r2739143 r2739178  
    44 * Requires Plugins:  Contact Form 7
    55 * 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.
    77 * Version: 1.0
    88 * Author URI: https://bitcraftx.com/
  • send-cf7-data-to-active-campaign/trunk/readme.txt

    r2739143 r2739178  
    1313== Description ==
    1414
    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.
     15Send 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.
    1616
    1717= Privacy notices =
  • send-cf7-data-to-active-campaign/trunk/templates/ac-tab-cf-7.php

    r2739143 r2739178  
    99                            <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)); ?>">
    1010                            <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>
    1819                        </td>
    1920                    </tr>
     
    4546                                <option value=""  select>select</option>
    4647                            </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>
    5251                            </span>
    5352                        </td>
     
    5857                        <td id="suggestedTags">
    5958                            <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(); ?>
    6261                        </td>
    6362                    </tr>
     
    7170                            <span style="color:#d60000;" id='first_name_message_token'>
    7271                            <?php
    73 if ($firstName && !preg_match("/.*\[.+\].*/", $firstName)) {
    74     echo "Invalid Token";
    75 }?>
     72                            if ($firstName && !preg_match("/.*\[.+\].*/", $firstName)) {
     73                                echo "Invalid Token";
     74                            }?>
    7675                        </span>
    7776                        </td>
     
    8584                            <span style="color:#d60000;" id='last_name_message_token'>
    8685                            <?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                            }?>
    9089                        </span>
    9190                        </td>
Note: See TracChangeset for help on using the changeset viewer.