Plugin Directory

Changeset 2308039


Ignore:
Timestamp:
05/19/2020 01:53:40 PM (6 years ago)
Author:
hfsupport
Message:

v1.2.4 updates to new chat version

Location:
happyfox-chat
Files:
6 edited
1 copied

Legend:

Unmodified
Added
Removed
  • happyfox-chat/tags/1.2.4/happyfox-chat-config.php

    r2049739 r2308039  
    11<?php
    22
    3 if (!defined('HFC_ASSET_LOGO_URL'))
     3if (!defined('HFC_ASSET_LOGO_URL')) 
    44  define('HFC_ASSET_LOGO_URL', '/happyfox-chat/images/happyfox.png');
    55
    6 if (!defined('HFC_APP_MANAGE_PAGE'))
     6if (!defined('HFC_APP_MANAGE_PAGE')) 
    77  define('HFC_APP_MANAGE_PAGE', 'https://happyfoxchat.com/a/apps/wordpress/manage/');
    88
    9 if (!defined('HFC_APP_REF_PAGE'))
     9if (!defined('HFC_APP_REF_PAGE')) 
    1010  define('HFC_APP_REF_PAGE', 'https://happyfoxchat.com/?ref=wordpress-plugin');
    1111
    12 if (!defined('HFC_APP_SIGNUP_PAGE'))
    13   define('HFC_APP_SIGNUP_PAGE', 'https://happyfoxchat.com/product-hunt-signup?ref=wordpress-plugin');
     12if (!defined('HFC_APP_SIGNUP_PAGE')) 
     13  define('HFC_APP_SIGNUP_PAGE', 'https://happyfoxchat.com/v2/signup?ref=wordpress-plugin');
    1414
    15 if (!defined('HFC_HOST_URL'))
     15if (!defined('HFC_HOST_URL')) 
    1616  define('HFC_HOST_URL','https://happyfoxchat.com');
    1717
    18 if (!defined('HFC_ASSETS_URL'))
     18if (!defined('HFC_ASSETS_URL')) 
    1919  define('HFC_ASSETS_URL','https://widget.happyfoxchat.com/visitor');
    2020
    21 if (!defined('HFC_APP_INTEGRATION_URL'))
     21if (!defined('HFC_APP_INTEGRATION_URL')) 
    2222  define('HFC_APP_INTEGRATION_URL','https://happyfoxchat.com/api/v1/integrations/wordpress/widget-info?apiKey=');
    2323
  • happyfox-chat/tags/1.2.4/happyfox-chat.php

    r2054421 r2308039  
    44Plugin URI: https://happyfoxchat.com
    55Description: This plugin adds the HappyFox Chat widget to your WordPress blog
    6 Version: 1.2.3
     6Version: 1.2.4
    77Author: HappyFox Inc.
    88Author URI: http://happyfoxchat.com
     
    1818    register_setting('happyfox-chat-settings', 'hfc_api_key');
    1919    register_setting('happyfox-chat-settings', 'hfc_embed_token');
    20     register_setting('happyfox-chat-settings', 'hfc_access_token');
    2120}
    2221
     
    4443        update_option('hfc_api_key', $_POST['hfc_api_key']);
    4544        update_option('hfc_embed_token', $json->embedToken);
    46         update_option('hfc_access_token', $json->accessToken);
    4745        $authorization_success = True;
    4846    }
     
    5654    include('happyfox-chat-config.php');
    5755    $embed_token = get_option('hfc_embed_token');
    58     $access_token = get_option('hfc_access_token');
    5956    $host_url = HFC_HOST_URL;
    6057    $asset_url = HFC_ASSETS_URL;
    6158
    62     if($embed_token && $access_token) {
     59    if($embed_token) {
    6360        echo <<<HTML
    6461<!--Start of HappyFox Live Chat Script-->
  • happyfox-chat/tags/1.2.4/readme.txt

    r2049739 r2308039  
    22Contributors: hfsupport
    33Tags: banckle, Chat, chat online, chat software, click desk, clickdesk, contact plugin, contact us,customer support, IM Chat, live chat, live chat inc, live chat services, live chat software, live chatting, live help, live support, live web chat, livechat, olark, online chat, online support, php live chat, snapengage, support software, Website Chat, WordPress chat,wordpress live chat, wordpress live chat plugin, Zendesk, Zopim, Zopim live chat, HappyFox, Shopify, Pipedrive, sales chat, salesforce
    4 Stable tag: 1.2.3
     4Stable tag: 1.2.4
    55Requires at least: 3.5
    6 Tested up to: 4.9.1
     6Tested up to: 5.4.1
    77
    88Voted No.1 Live chat software on ProductHunt. Fully loaded with features like unlimited chats, fully customizable widget, app integrations & more.
  • happyfox-chat/trunk/happyfox-chat-config.php

    r2049739 r2308039  
    11<?php
    22
    3 if (!defined('HFC_ASSET_LOGO_URL'))
     3if (!defined('HFC_ASSET_LOGO_URL')) 
    44  define('HFC_ASSET_LOGO_URL', '/happyfox-chat/images/happyfox.png');
    55
    6 if (!defined('HFC_APP_MANAGE_PAGE'))
     6if (!defined('HFC_APP_MANAGE_PAGE')) 
    77  define('HFC_APP_MANAGE_PAGE', 'https://happyfoxchat.com/a/apps/wordpress/manage/');
    88
    9 if (!defined('HFC_APP_REF_PAGE'))
     9if (!defined('HFC_APP_REF_PAGE')) 
    1010  define('HFC_APP_REF_PAGE', 'https://happyfoxchat.com/?ref=wordpress-plugin');
    1111
    12 if (!defined('HFC_APP_SIGNUP_PAGE'))
    13   define('HFC_APP_SIGNUP_PAGE', 'https://happyfoxchat.com/product-hunt-signup?ref=wordpress-plugin');
     12if (!defined('HFC_APP_SIGNUP_PAGE')) 
     13  define('HFC_APP_SIGNUP_PAGE', 'https://happyfoxchat.com/v2/signup?ref=wordpress-plugin');
    1414
    15 if (!defined('HFC_HOST_URL'))
     15if (!defined('HFC_HOST_URL')) 
    1616  define('HFC_HOST_URL','https://happyfoxchat.com');
    1717
    18 if (!defined('HFC_ASSETS_URL'))
     18if (!defined('HFC_ASSETS_URL')) 
    1919  define('HFC_ASSETS_URL','https://widget.happyfoxchat.com/visitor');
    2020
    21 if (!defined('HFC_APP_INTEGRATION_URL'))
     21if (!defined('HFC_APP_INTEGRATION_URL')) 
    2222  define('HFC_APP_INTEGRATION_URL','https://happyfoxchat.com/api/v1/integrations/wordpress/widget-info?apiKey=');
    2323
  • happyfox-chat/trunk/happyfox-chat.php

    r2054421 r2308039  
    44Plugin URI: https://happyfoxchat.com
    55Description: This plugin adds the HappyFox Chat widget to your WordPress blog
    6 Version: 1.2.3
     6Version: 1.2.4
    77Author: HappyFox Inc.
    88Author URI: http://happyfoxchat.com
     
    1818    register_setting('happyfox-chat-settings', 'hfc_api_key');
    1919    register_setting('happyfox-chat-settings', 'hfc_embed_token');
    20     register_setting('happyfox-chat-settings', 'hfc_access_token');
    2120}
    2221
     
    4443        update_option('hfc_api_key', $_POST['hfc_api_key']);
    4544        update_option('hfc_embed_token', $json->embedToken);
    46         update_option('hfc_access_token', $json->accessToken);
    4745        $authorization_success = True;
    4846    }
     
    5654    include('happyfox-chat-config.php');
    5755    $embed_token = get_option('hfc_embed_token');
    58     $access_token = get_option('hfc_access_token');
    5956    $host_url = HFC_HOST_URL;
    6057    $asset_url = HFC_ASSETS_URL;
    6158
    62     if($embed_token && $access_token) {
     59    if($embed_token) {
    6360        echo <<<HTML
    6461<!--Start of HappyFox Live Chat Script-->
  • happyfox-chat/trunk/readme.txt

    r2049739 r2308039  
    22Contributors: hfsupport
    33Tags: banckle, Chat, chat online, chat software, click desk, clickdesk, contact plugin, contact us,customer support, IM Chat, live chat, live chat inc, live chat services, live chat software, live chatting, live help, live support, live web chat, livechat, olark, online chat, online support, php live chat, snapengage, support software, Website Chat, WordPress chat,wordpress live chat, wordpress live chat plugin, Zendesk, Zopim, Zopim live chat, HappyFox, Shopify, Pipedrive, sales chat, salesforce
    4 Stable tag: 1.2.3
     4Stable tag: 1.2.4
    55Requires at least: 3.5
    6 Tested up to: 4.9.1
     6Tested up to: 5.4.1
    77
    88Voted No.1 Live chat software on ProductHunt. Fully loaded with features like unlimited chats, fully customizable widget, app integrations & more.
Note: See TracChangeset for help on using the changeset viewer.