Changeset 1933125
- Timestamp:
- 08/30/2018 12:42:19 PM (7 years ago)
- Location:
- continually/trunk
- Files:
-
- 4 edited
-
README.txt (modified) (2 diffs)
-
admin/partials/continually-admin-display.php (modified) (2 diffs)
-
continually.php (modified) (3 diffs)
-
includes/class-continually.php (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
continually/trunk/README.txt
r1910948 r1933125 3 3 Tags: Continually, live chat, chat, chatbot, communication, sales, marketing, chat plugin, free, free chat, popup, growth, email form, analytics, widget, lightbox, inbound marketing, online chat, online support, in-app chat, instant message, website chat, wordpress chat, wordpress live chat, wordpress live chat plugin, chat widget 4 4 Requires at least: 4.6 5 Tested up to: 4.9. 65 Tested up to: 4.9.8 6 6 Stable tag: 4.3 7 7 Requires PHP: 5.2.4 … … 106 106 == Changelog == 107 107 108 = 1.3.0 = 109 * Embed code is now placed in `wp_head` 110 108 111 = 1.2.1 = 109 112 * More obvious where to find Continually embed code -
continually/trunk/admin/partials/continually-admin-display.php
r1910920 r1933125 7 7 * 8 8 * @link http://continual.ly/ 9 * @since 1. 2.19 * @since 1.3.0 10 10 * 11 11 * @package Continually … … 52 52 <span><?php esc_attr_e('Your Continually embed code', $this->plugin_name);?></span> 53 53 </label> 54 <p class="form-help"><span class="description">You can find your <a href="https://app.continual.ly/ install" target="_blank">Continually embed code here</a>.</span></p>54 <p class="form-help"><span class="description">You can find your <a href="https://app.continual.ly/embed-code" target="_blank">Continually embed code here</a>.</span></p> 55 55 <textarea id="<?php echo $this->plugin_name;?>-continually_embed_code" name="<?php echo $this->plugin_name;?>[continually_embed_code]" cols="80" rows="4" placeholder="<!-- Insert your Continually embed code here -->"><?php if(!empty($continually_embed_code)) echo $continually_embed_code;?></textarea> 56 56 </fieldset> -
continually/trunk/continually.php
r1910920 r1933125 4 4 * 5 5 * @link http://continual.ly/ 6 * @since 1. 2.16 * @since 1.3.0 7 7 * @package Continually 8 8 * … … 11 11 * Plugin URI: https://github.com/Continually/continually-for-wordpress 12 12 * Description: Continually makes sure you never miss another lead on your website. This plugin is the simplest way to install Continually on your WordPress site. 13 * Version: 1. 2.113 * Version: 1.3.0 14 14 * Author: Continually 15 15 * Author URI: http://continual.ly/ … … 30 30 * Rename this for your plugin and update it as you release new versions. 31 31 */ 32 define( 'CONTINUALLY_VERSION', '1. 2.1' );32 define( 'CONTINUALLY_VERSION', '1.3.0' ); 33 33 34 34 /** -
continually/trunk/includes/class-continually.php
r1902461 r1933125 174 174 * of the plugin. 175 175 * 176 * @since 1. 2.0176 * @since 1.3.0 177 177 * @access private 178 178 */ … … 184 184 // $this->loader->add_action( 'wp_enqueue_scripts', $plugin_public, 'enqueue_scripts' ); 185 185 186 $this->loader->add_action( 'wp_ footer', $plugin_public, 'add_continually_script' );186 $this->loader->add_action( 'wp_head', $plugin_public, 'add_continually_script' ); 187 187 188 188 }
Note: See TracChangeset
for help on using the changeset viewer.