Plugin Directory

Changeset 2800534


Ignore:
Timestamp:
10/18/2022 11:18:29 AM (3 years ago)
Author:
w3scloud
Message:

Update

Location:
w3sc-elementor-to-zoho/trunk
Files:
5 edited

Legend:

Unmodified
Added
Removed
  • w3sc-elementor-to-zoho/trunk/README.txt

    r2799840 r2800534  
    55Requires at least: 5.0
    66Tested up to: 6.0.1
    7 Stable tag: 1.3.0
     7Stable tag: 1.4.0
    88Requires PHP: 7.2
    99License: GPLv2 or later
  • w3sc-elementor-to-zoho/trunk/css/admin-style.css

    r2711549 r2800534  
    4747    float: right;
    4848}
     49.notice{
     50    font-weight: bold;
     51}
  • w3sc-elementor-to-zoho/trunk/elementor-to-zoho.php

    r2799840 r2800534  
    44 * Description: Data Insert in Zoho CRM by Elementor.
    55 * Plugin URI:  https://wordpress.org/plugins/w3sc-elementor-to-zoho/
    6  * Version:     1.3.0
     6 * Version:     1.4.0
    77 * Author:      W3SCloud Technology
    88 * Author URI:  https://w3scloud.com/
  • w3sc-elementor-to-zoho/trunk/includes/Admin/Setting.php

    r2711549 r2800534  
    2626            $zcid = $dataSet->getInfo("zoho_client_id");
    2727            $dataCenter = $dataSet->getInfo("data_center"); ?>
     28
    2829
    2930            <script>
     
    5758            $w3ssucc_noti = isset($_GET["w3sbiginsuccess"])? sanitize_text_field($_GET["w3sbiginsuccess"]): "";
    5859            //$w3ssucc_noti = sanitize_text_field( $w3ssucc_noti );
    59 
     60           
    6061            if ($w3ssucc_noti) {
    61             if ($w3ssucc_noti == 1) { ?>
    62                 <p id="demo" style="background-color:#2271b1;"><?php echo esc_html("Authenticated"); ?> <span onclick="myFunction()" class="close-btn">&times;</span></p>
    63                 <?php } else { ?>
    64                  <p id="demo" style="background-color:#A52A2A;"><?php echo esc_html("Failed to Integrate"); ?> <span onclick="myFunction()" class="close-btn">&times;</span></p>
    65                 <?php }
     62            if ($w3ssucc_noti == 1) {
     63                printf('<div class="notice notice-success is-dismissible"><p>%1$s</p></div>','Authenticated Successfully');
     64            }else{
     65                printf('<div class="notice notice-error is-dismissible"><p>%1$s</p></div>','Something went Wrong!Please Try again');
     66            }
    6667        }
    6768
     
    8485        <tr>
    8586            <td><h4>Client Name:</h4></td>
    86             <td><code>W3S CF7 to Zoho CRM</code></td>
     87            <td><code>W3SC Elementor to Zoho CRM</code></td>
    8788        </tr>       
    8889        <tr>
  • w3sc-elementor-to-zoho/trunk/includes/widgets/W3sc-widget.php

    r2799840 r2800534  
    115115        }
    116116
    117         if (!empty($contactfields)) {
     117        if ($contactfields["fields"]) {
    118118                foreach ($contactfields["fields"] as $key => $value) {
    119119                    $name = $value["api_name"];
     
    129129
    130130
    131         if (!empty($leadfields)) {
     131        if ($leadfields["fields"]) {
    132132                foreach ($leadfields["fields"] as $key => $value) {
    133133                    $name = $value["api_name"];
Note: See TracChangeset for help on using the changeset viewer.