Changeset 2361111
- Timestamp:
- 08/14/2020 01:23:54 PM (6 years ago)
- Location:
- froged
- Files:
-
- 8 added
- 2 edited
-
tags/1.0.7 (added)
-
tags/1.0.7/froged-admin.php (added)
-
tags/1.0.7/froged-conf.php (added)
-
tags/1.0.7/index.php (added)
-
tags/1.0.7/js (added)
-
tags/1.0.7/js/contactform.js (added)
-
tags/1.0.7/readme.txt (added)
-
tags/1.0.7/uninstall.php (added)
-
trunk/froged-conf.php (modified) (2 diffs)
-
trunk/readme.txt (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
froged/trunk/froged-conf.php
r2309674 r2361111 4 4 Plugin URI: https://app.froged.com/?utm_source=wordpress_plugin 5 5 Description: Froged. Live Chat, Email Campaigns, Lead Generation, and much more. 6 Version: 1.0. 66 Version: 1.0.7 7 7 Requires at least: 3.0 8 Tested up to: 5. 48 Tested up to: 5.5 9 9 WC requires at least: 3.0 10 WC tested up to: 3.810 WC tested up to: 4.3 11 11 Author: Froged Technologies 12 12 Author URI: https://froged.com/?utm_source=wordpress_plugin … … 253 253 $city = $current_user->billing_city; 254 254 $postalcode = $current_user->billing_postcode; 255 $state = html_entity_decode($country_states_array[$current_user->billing_country][$current_user->billing_state]); 256 $country = html_entity_decode($countries_array[$current_user->billing_country]); 255 if(isset($country_states_array[$current_user->billing_country][$current_user->billing_state])) 256 $state = html_entity_decode($country_states_array[$current_user->billing_country][$current_user->billing_state]); 257 else 258 $state = null; 259 if(isset($countries_array[$current_user->billing_country])) 260 $country = html_entity_decode($countries_array[$current_user->billing_country]); 261 else 262 $country = null; 257 263 $phone = $current_user->billing_phone; 258 264 $company=$current_user->billing_company; -
froged/trunk/readme.txt
r2309674 r2361111 3 3 Tags: froged, live chat, chat, communication, sales,tracking,pixel, marketing,woocommerce, announcements, email marketing, marketing automation, email campaign, email newsletters, autoresponders,talk to customers, customer feedback, feedback, chat plugin, free, free chat, chatra,drift, livechat, slack, intercom, hubspot, salesforce, zapier, hellobar, hello bar, popup, ontraport, pardot, klaviyo, popup, exit intent, growth, subscribers, subscription, email form, analytics, widget, lightbox, inbound marketing, welcome mat, landing pagelivechat, olark, boldchat, online chat, online support, in-app chat, instant message, helpdesk, php live chat, snapengage, support software, website chat, WordPress chat, WordPress live chat, WordPress live chat plugin, zendesk, zopim, zopim live chat, tawk, tawk.to, tawkto, jivosite, snapengage,chat widget 4 4 Requires at least: 3.0 5 Tested up to: 5. 46 Stable tag: 1.0. 65 Tested up to: 5.5 6 Stable tag: 1.0.7 7 7 License: GPLv2 or later 8 8 License URI: http://www.gnu.org/licenses/gpl-2.0.html … … 120 120 = 1.0.6 = 121 121 122 * Capture email and name in contactform 122 * Capture email and name in contactform+ 123 124 = 1.0.7 = 125 126 * Performance improvements
Note: See TracChangeset
for help on using the changeset viewer.