Changeset 3115294
- Timestamp:
- 07/10/2024 06:40:57 AM (21 months ago)
- Location:
- zoho-crm-forms/trunk
- Files:
-
- 4 edited
-
Readme.txt (modified) (5 diffs)
-
includes/crmshortcodefunctions.php (modified) (1 diff)
-
includes/crmwebformfields.php (modified) (1 diff)
-
index.php (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
zoho-crm-forms/trunk/Readme.txt
r3082684 r3115294 7 7 Author: Zoho CRM 8 8 Tested up to: 6.5 9 Stable tag:1.7.8. 89 Stable tag:1.7.8.9 10 10 License: GPLv2 or later 11 Version: 1.7.8. 811 Version: 1.7.8.9 12 12 License URI: http://www.gnu.org/licenses/gpl-2.0.html 13 13 … … 16 16 == Description == 17 17 18 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 captureeach and every visitor to turn them into a lead.19 20 Introducing the Zoho CRM Lead Magnet plugin for Wordpress. This lets you create webforms, embed them in your website, and automatically capture leads directly into your CRMwith zero attenuation.21 22 Not only is the integrationeasy to set-up but it's also easy on your wallet.18 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. 19 20 Introducing the Zoho CRM Lead Magnet plugin for Wordpress. This lets you create webforms, embed them in your website, and automatically capture leads directly into your CRM with zero attenuation. 21 22 Not only is the integration easy to set-up but it's also easy on your wallet. 23 23 24 24 == Installation == 25 25 26 1. Install the Wordpress plugin from Wordpress Marketplace. Upload the plugin folder to the/wp-content/plugins/ directory or install via the Add New Plugin menu.26 1. Install the Wordpress plugin from Wordpress Marketplace. Upload the plugin folder to the /wp-content/plugins/ directory or install via the Add New Plugin menu. 27 27 2. Activate the plugin through the ‘Plugins’ menu in WordPress. 28 3. Once you activate your Zoho CRM forms plugin, you'll be asked to authenticate access from Zoho CRM. To do that, simply enter the username andpassword of your CRM account.29 30 The plugin installationis now complete and the integration between Zoho CRM forms and Wordpress is established.28 3. Once you activate your Zoho CRM forms plugin, you'll be asked to authenticate access from Zoho CRM. To do that, simply enter the username and password of your CRM account. 29 30 The plugin installation is now complete and the integration between Zoho CRM forms and Wordpress is established. 31 31 32 32 … … 283 283 1.7.8.8 284 284 Php latest version compatibility check and stripslashes version issue fixed 285 285 1.7.8.9 286 Security review issue has been fixed 286 287 287 288 == Upgrade notice == … … 289 290 == Overall usage flow== 290 291 291 1. Install the Zoho CRM forms plugin from the Wordpress plugin Marketplace.292 1. Install the Zoho CRM forms plugin from the Wordpress plugin Marketplace. 292 293 2. Create a form using Zoho CRM webforms or Contact form 7 plugin. 293 294 3. Configure the settings for your form. 294 295 4. Use the short code to embed the form. 295 5. A prospect's information is automatically captured upon entering your site. Allthat's left is lead nurturing.296 297 For businesses that want to maximizetheir websites, the Zoho CRM Lead Capture plugin for Wordpress CMS is an ideal solution.296 5. A prospect's information is automatically captured upon entering your site. All that's left is lead nurturing. 297 298 For businesses that want to maximize their websites, the Zoho CRM Lead Capture plugin for Wordpress CMS is an ideal solution. 298 299 299 300 == Key features == … … 301 302 Two forms, one solution 302 303 303 This plugin works well with forms created using Zoho CRM and Contact 7 Form plugin.304 This plugin works well with forms created using Zoho CRM and Contact 7 Form plugin. 304 305 305 306 Light on code 306 307 307 Creating a form is incredibly simple and the entire process of establishing an integration involves a few drag-drops and copy-pastes. Simply create, embed, andcapture.308 308 Creating a form is incredibly simple and the entire process of establishing an integration involves a few drag-drops and copy-pastes. Simply create, embed, and capture. 309 309 310 Capture leads and more 310 311 311 Using this plugin not only lets you capture leads but also additional custom modulesyou create for unique business needs.312 313 Capture. nurture.win.314 315 The Information entered in a website's form is automatically pushed into Zoho CRM with zero attenuation. Now you never miss out on another lead.312 Using this plugin not only lets you capture leads but also additional custom modules you create for unique business needs. 313 314 Capture. nurture. win. 315 316 The Information entered in a website's form is automatically pushed into Zoho CRM with zero attenuation. Now you never miss out on another lead. 316 317 317 318 Light on your purse 318 319 319 The plugin is absolutely free of cost. No hidden fees, no additional costs. All you need is a website hostedwith Wordpress and a Zoho CRM account.320 The plugin is absolutely free of cost. No hidden fees, no additional costs. All you need is a website hosted with Wordpress and a Zoho CRM account. 320 321 321 322 Special mail-tags support -
zoho-crm-forms/trunk/includes/crmshortcodefunctions.php
r3082684 r3115294 131 131 132 132 if (!isset($config_leads_fields['fields'][0])) { 133 $htmlcontent .= '<p style="color:red;font-size:20px;text-align:center;margin-top:-22px;margin-bottom:20px;">' . __("Crm fields are not yet synchronised sss", "zoho-crm-form-builder") . ' </p>';133 $htmlcontent .= '<p style="color:red;font-size:20px;text-align:center;margin-top:-22px;margin-bottom:20px;">' . __("Crm fields are not yet synchronised", "zoho-crm-form-builder") . ' </p>'; 134 134 } else { 135 135 $htmlcontent .= '<form method="post" name = "userform" id="userform" action="' . ZCF_BASE_DIR . '/includes/class-lb-crmshortcodefunctions.php"> -
zoho-crm-forms/trunk/includes/crmwebformfields.php
r3080667 r3115294 119 119 $shortcode = sanitize_text_field($_REQUEST['EditShortcode']); 120 120 $formName = sanitize_text_field($_REQUEST['formName']); 121 $formname = $wpdb->get_results("SELECT form_name FROM `zcf_zohoshortcode_manager` WHERE `shortcode_name` LIKE '" . $shortcode. "' ");121 $formname = $wpdb->get_results("SELECT form_name FROM `zcf_zohoshortcode_manager` WHERE `shortcode_name` LIKE '" . esc_html__($shortcode) . "' "); 122 122 ?> 123 123 124 <input class="textField" type="text" data-value="<?php echo __($formname[0]->form_name); ?>" id="form-name" name="form-name" data-value="<?php echo($formName); ?>"125 value="<?php echo $formName; ?>" onblur="formTitleupdate(this, '<?php sanitize_title_with_dashes($formname[0]->form_name); ?>', '<?php echo esc_url_raw($siteurl); ?>', '<?php echo sanitize_text_field($shortcode); ?>')"/>124 <input class="textField" type="text" data-value="<?php echo esc_html__($formname[0]->form_name); ?>" id="form-name" name="form-name" data-value="<?php echo esc_html__($formName); ?>" 125 value="<?php echo esc_html__($formName); ?>" onblur="formTitleupdate(this, '<?php sanitize_title_with_dashes($formname[0]->form_name); ?>', '<?php echo esc_url_raw($siteurl); ?>', '<?php echo sanitize_text_field($shortcode); ?>')"/> 126 126 <input type='hidden' id='lead_crmtype' name="lead_crmtype" value="crmformswpbuilder"> 127 127 <input type="hidden" id="savefields" name="savefields" value="<?php echo esc_attr__('Apply', ZCF_PLUGIN_BASE_URL); ?>"/> -
zoho-crm-forms/trunk/index.php
r3082684 r3115294 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.7.8. 86 * Version: 1.7.8.9 7 7 * ***************************************************************************************** */ 8 8 if (!defined('ABSPATH')) 9 9 exit; 10 10 11 define( 'ZCF_VERSION', '1.7.8. 8' );11 define( 'ZCF_VERSION', '1.7.8.9' ); 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.