Skip to content

Commit

Permalink
Update readme and url
Browse files Browse the repository at this point in the history
  • Loading branch information
tobeyadr committed Apr 10, 2024
1 parent 77e61f5 commit 9026ad4
Show file tree
Hide file tree
Showing 3 changed files with 16 additions and 13 deletions.
13 changes: 8 additions & 5 deletions README.txt
Original file line number Diff line number Diff line change
@@ -1,11 +1,11 @@
=== Live Chat for WordPress - WP Simple Chat — by Groundhogg===
Contributors: trainingbusinesspros, groundhogg
Tags: chat, facebook, facebook chat
Donate link: https://wpsimplechat.com
Donate link: https://wpsimple.chat
Requires at least: 4.9
Tested up to: 5.7
Tested up to: 6.5
Requires PHP: 5.6
Stable tag: 1.1.8
Stable tag: 1.1.9
License: GPLv3
License URI: https://www.gnu.org/licenses/gpl.md

Expand All @@ -15,7 +15,7 @@ Say hello to the easiest way to add Facebook Chat to your website.

Facebook business chat for WordPress

👉 [Official Site](https://wpsimplechat.com/) | 📃 [Documentation](https://wpsimplechat.com/allow-chat-on-your-website/)
👉 [Official Site](https://wpsimple.chat/) | 📃 [Documentation](https://wpsimple.chat/allow-chat-on-your-website/)

❤️ Free service provided by [Groundhogg](https://www.groundhogg.io/) and [MailHawk!](https://mailhawk.io/)

Expand Down Expand Up @@ -81,6 +81,9 @@ No, once a visitor starts the chat it opens the chat in their Facebook Messenger

== Changelog ==

= 1.1.9 =
* TWEAKED Changed url from wpsimplechat.com to wpsimple.chat

= 1.1.6-1.1.8 =
* TWEAKED Removed "Facebook" from plugin display name and plugin image assets.

Expand Down Expand Up @@ -109,4 +112,4 @@ No, once a visitor starts the chat it opens the chat in their Facebook Messenger
* ADDED Groundhogg replacements support for the greeting message.

= 1.0 =
* Initial Release
* Initial Release
4 changes: 2 additions & 2 deletions admin/settings.php
Original file line number Diff line number Diff line change
Expand Up @@ -70,13 +70,13 @@ protected function get_settings() {
'field' => [
'label' => __( 'Enable' )
],
'desc' => __( 'Show the Facebook chat on your site. <a href="https://wpsimplechat.com/allow-chat-on-your-website/">Chat not appearing?</a>', 'wp-simple-chat' ),
'desc' => __( 'Show the Facebook chat on your site. <a href="https://wpsimple.chat/allow-chat-on-your-website/">Chat not appearing?</a>', 'wp-simple-chat' ),
],
[
'type' => 'input',
'option' => 'business_id',
'label' => __( 'Facebook Business Id', 'wp-simple-chat' ),
'desc' => __( 'Your facebook business ID. <a href="https://wpsimplechat.com/find-your-facebook-page-id/">Found in your Facebook page.</a>', 'wp-simple-chat' ),
'desc' => __( 'Your facebook business ID. <a href="https://wpsimple.chat/find-your-facebook-page-id/">Found in your Facebook page.</a>', 'wp-simple-chat' ),
],
[
'type' => 'input',
Expand Down
12 changes: 6 additions & 6 deletions wp-simple-chat.php
Original file line number Diff line number Diff line change
@@ -1,11 +1,11 @@
<?php
/*
* Plugin Name: WP Simple Chat
* Plugin URI: https://wpsimplechat.com/?utm_source=wp-plugins&utm_campaign=plugin-uri&utm_medium=wp-dash
* Plugin URI: https://wpsimple.chat/?utm_source=wp-plugins&utm_campaign=plugin-uri&utm_medium=wp-dash
* Description: A simple way to include the Facebook Chat Plugin on your website.
* Version: 1.1.8
* Version: 1.1.9
* Author: Groundhogg Inc.
* Author URI: https://wpsimplechat.com/?utm_source=wp-plugins&utm_campaign=author-uri&utm_medium=wp-dash
* Author URI: https://wpsimple.chat/?utm_source=wp-plugins&utm_campaign=author-uri&utm_medium=wp-dash
* Text Domain: wp-simple-chat
* Domain Path: /languages
*
Expand All @@ -22,8 +22,8 @@

if ( ! defined( 'ABSPATH' ) ) exit;

define( 'SIMPLE_CHAT_VERSION', '1.1.8' );
define( 'SIMPLE_CHAT_PREVIOUS_STABLE_VERSION', '1.1.6' );
define( 'SIMPLE_CHAT_VERSION', '1.1.9' );
define( 'SIMPLE_CHAT_PREVIOUS_STABLE_VERSION', '1.1.8' );

define( 'SIMPLE_CHAT__FILE__', __FILE__ );
define( 'SIMPLE_CHAT_PLUGIN_BASE', plugin_basename( SIMPLE_CHAT__FILE__ ) );
Expand Down Expand Up @@ -98,4 +98,4 @@ function simple_chat_fail_wp_version() {
$message = sprintf( esc_html__( 'WP Simple Chat requires WordPress version %s+. Because you are using an earlier version, the plugin is currently NOT RUNNING.', 'wp-simple-chat' ), '4.9' );
$html_message = sprintf( '<div class="error">%s</div>', wpautop( $message ) );
echo wp_kses_post( $html_message );
}
}

0 comments on commit 9026ad4

Please sign in to comment.