Changeset 3259588
- Timestamp:
- 03/21/2025 09:15:20 AM (13 months ago)
- Location:
- zoho-crm-forms/trunk
- Files:
-
- 3 edited
-
Readme.txt (modified) (2 diffs)
-
includes/crmcontactformfields.php (modified) (3 diffs)
-
index.php (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
zoho-crm-forms/trunk/Readme.txt
r3259045 r3259588 7 7 Author: Zoho CRM 8 8 Tested up to: 6.7.2 9 Stable tag: 1.8.1. 39 Stable tag: 1.8.1.4 10 10 License: GPLv2 or later 11 Version: 1.8.1. 311 Version: 1.8.1.4 12 12 License URI: http://www.gnu.org/licenses/gpl-2.0.html 13 13 … … 303 303 1.8.1.3 304 304 Security review changes has been updated 305 305 1.8.1.4 306 Security review changes has been updated 306 307 == Upgrade notice == 307 308 -
zoho-crm-forms/trunk/includes/crmcontactformfields.php
r3258888 r3259588 81 81 <div class="form-group row mb20"> 82 82 <div class="col-md-12 ml20"> 83 <input type="text" disabled data-value="Unititled" id="form-name" name="form-name" class="textField" value=<?php echo esc_attr($_REQUEST['third_module_pluginname']); ?>> 83 <?php $third_module_pluginname = esc_attr($_REQUEST['third_module_pluginname']);?> 84 <input type="text" disabled data-value="Unititled" id="form-name" name="form-name" class="textField" value="<?php echo $third_module_pluginname; ?>"> 84 85 <input type="hidden" id="lead_crmtype" name="lead_crmtype" value="crmformswpbuilder"> 85 86 <input type="hidden" id="savefields" name="savefields" value="Apply"> … … 144 145 </tbody> 145 146 </table> 146 <input type='hidden' value= <?php echo esc_attr($j); ?>id='total_field_count'>147 <input type='hidden' value= <?php echo esc_attr($cform_module); ?>id='module'>148 <input type='hidden' value= <?php echo esc_attr($zohocrmformname); ?>id='active_crm'>149 <input type='hidden' value= <?php echo esc_attr($cform_form_name); ?>id='form_name'>150 <input type='hidden' value=<?php echo esc_attr($cform_pluginname); ?>id='thirdparty_plugin'>151 <input type='hidden' value= <?php echo esc_html($js_mandatory_array); ?>id='crm_mandatory_fields'>147 <input type='hidden' value="<?php echo esc_attr($j); ?>" id='total_field_count'> 148 <input type='hidden' value="<?php echo esc_attr($cform_module); ?>" id='module'> 149 <input type='hidden' value="<?php echo esc_attr($zohocrmformname); ?>" id='active_crm'> 150 <input type='hidden' value="<?php echo esc_attr($cform_form_name); ?>" id='form_name'> 151 <input type='hidden' value="<?php echo esc_attr($cform_pluginname); ?>" id='thirdparty_plugin'> 152 <input type='hidden' value="<?php echo esc_html($js_mandatory_array); ?>" id='crm_mandatory_fields'> 152 153 <input type="hidden" name="modulename" id="modulename" value="<?php echo esc_attr($_REQUEST['third_module']); ?>"> 153 154 <input type="hidden" name="layoutname" id="layoutname" value="<?php echo esc_attr($_REQUEST['layoutname']); ?>"> … … 160 161 $layoutIDarray = $get_layoutjson_array[0]->layoutID; 161 162 ?> 162 <input type="hidden" name="layoutId" id="layoutId" value= <?php echo esc_attr($layoutIDarray); ?>>163 <input type="hidden" name="layoutId" id="layoutId" value="<?php echo esc_attr($layoutIDarray); ?>" > 163 164 164 165 </div> -
zoho-crm-forms/trunk/index.php
r3259045 r3259588 4 4 * Plugin Name: Zoho CRM Lead Magnet 5 5 * Description: Websites are one of the most important sources of leads for your business. That means your CRM system should be well integrated with your website to contextually capture each and every visitor to turn them into a lead.Introducing the Zoho CRM Lead Capture plugin for Wordpress. This lets you create webforms, embed them in your website, and automatically capture leads directly into your CRM with zero attenuation.Not only is the integration easy to set-up but it's also easy on your wallet. 6 * Version: 1.8.1. 36 * Version: 1.8.1.4 7 7 * ***************************************************************************************** */ 8 8 if (!defined('ABSPATH')) 9 9 exit; 10 10 11 define( 'ZCF_VERSION', '1.8.1. 3' );11 define( 'ZCF_VERSION', '1.8.1.4' ); 12 12 define( 'ZCF_LBPLUGINFILE', __FILE__ ); 13 13 define( 'ZCF_LBPLUGIN_URL', untrailingslashit( plugins_url( '', ZCF_LBPLUGINFILE ) ) );
Note: See TracChangeset
for help on using the changeset viewer.