Plugin Directory

Changeset 1933125


Ignore:
Timestamp:
08/30/2018 12:42:19 PM (7 years ago)
Author:
continually
Message:

Updating version 1.3.0

Location:
continually/trunk
Files:
4 edited

Legend:

Unmodified
Added
Removed
  • continually/trunk/README.txt

    r1910948 r1933125  
    33Tags: 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
    44Requires at least: 4.6
    5 Tested up to: 4.9.6
     5Tested up to: 4.9.8
    66Stable tag: 4.3
    77Requires PHP: 5.2.4
     
    106106== Changelog ==
    107107
     108= 1.3.0 =
     109* Embed code is now placed in `wp_head`
     110
    108111= 1.2.1 =
    109112* More obvious where to find Continually embed code
  • continually/trunk/admin/partials/continually-admin-display.php

    r1910920 r1933125  
    77 *
    88 * @link       http://continual.ly/
    9  * @since      1.2.1
     9 * @since      1.3.0
    1010 *
    1111 * @package    Continually
     
    5252                <span><?php esc_attr_e('Your Continually embed code', $this->plugin_name);?></span>
    5353            </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>
    5555            <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>
    5656        </fieldset>
  • continually/trunk/continually.php

    r1910920 r1933125  
    44 *
    55 * @link              http://continual.ly/
    6  * @since             1.2.1
     6 * @since             1.3.0
    77 * @package           Continually
    88 *
     
    1111 * Plugin URI:        https://github.com/Continually/continually-for-wordpress
    1212 * 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.1
     13 * Version:           1.3.0
    1414 * Author:            Continually
    1515 * Author URI:        http://continual.ly/
     
    3030 * Rename this for your plugin and update it as you release new versions.
    3131 */
    32 define( 'CONTINUALLY_VERSION', '1.2.1' );
     32define( 'CONTINUALLY_VERSION', '1.3.0' );
    3333
    3434/**
  • continually/trunk/includes/class-continually.php

    r1902461 r1933125  
    174174     * of the plugin.
    175175     *
    176      * @since    1.2.0
     176     * @since    1.3.0
    177177     * @access   private
    178178     */
     
    184184        // $this->loader->add_action( 'wp_enqueue_scripts', $plugin_public, 'enqueue_scripts' );
    185185
    186         $this->loader->add_action( 'wp_footer', $plugin_public, 'add_continually_script' );
     186        $this->loader->add_action( 'wp_head', $plugin_public, 'add_continually_script' );
    187187
    188188    }
Note: See TracChangeset for help on using the changeset viewer.