Changeset 2800534
- Timestamp:
- 10/18/2022 11:18:29 AM (3 years ago)
- Location:
- w3sc-elementor-to-zoho/trunk
- Files:
-
- 5 edited
-
README.txt (modified) (1 diff)
-
css/admin-style.css (modified) (1 diff)
-
elementor-to-zoho.php (modified) (1 diff)
-
includes/Admin/Setting.php (modified) (3 diffs)
-
includes/widgets/W3sc-widget.php (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
w3sc-elementor-to-zoho/trunk/README.txt
r2799840 r2800534 5 5 Requires at least: 5.0 6 6 Tested up to: 6.0.1 7 Stable tag: 1. 3.07 Stable tag: 1.4.0 8 8 Requires PHP: 7.2 9 9 License: GPLv2 or later -
w3sc-elementor-to-zoho/trunk/css/admin-style.css
r2711549 r2800534 47 47 float: right; 48 48 } 49 .notice{ 50 font-weight: bold; 51 } -
w3sc-elementor-to-zoho/trunk/elementor-to-zoho.php
r2799840 r2800534 4 4 * Description: Data Insert in Zoho CRM by Elementor. 5 5 * Plugin URI: https://wordpress.org/plugins/w3sc-elementor-to-zoho/ 6 * Version: 1. 3.06 * Version: 1.4.0 7 7 * Author: W3SCloud Technology 8 8 * Author URI: https://w3scloud.com/ -
w3sc-elementor-to-zoho/trunk/includes/Admin/Setting.php
r2711549 r2800534 26 26 $zcid = $dataSet->getInfo("zoho_client_id"); 27 27 $dataCenter = $dataSet->getInfo("data_center"); ?> 28 28 29 29 30 <script> … … 57 58 $w3ssucc_noti = isset($_GET["w3sbiginsuccess"])? sanitize_text_field($_GET["w3sbiginsuccess"]): ""; 58 59 //$w3ssucc_noti = sanitize_text_field( $w3ssucc_noti ); 59 60 60 61 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">×</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">×</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 } 66 67 } 67 68 … … 84 85 <tr> 85 86 <td><h4>Client Name:</h4></td> 86 <td><code>W3S CF7to Zoho CRM</code></td>87 <td><code>W3SC Elementor to Zoho CRM</code></td> 87 88 </tr> 88 89 <tr> -
w3sc-elementor-to-zoho/trunk/includes/widgets/W3sc-widget.php
r2799840 r2800534 115 115 } 116 116 117 if ( !empty($contactfields)) {117 if ($contactfields["fields"]) { 118 118 foreach ($contactfields["fields"] as $key => $value) { 119 119 $name = $value["api_name"]; … … 129 129 130 130 131 if ( !empty($leadfields)) {131 if ($leadfields["fields"]) { 132 132 foreach ($leadfields["fields"] as $key => $value) { 133 133 $name = $value["api_name"];
Note: See TracChangeset
for help on using the changeset viewer.