Changeset 2332358
- Timestamp:
- 06/29/2020 12:54:00 PM (6 years ago)
- Location:
- boostools/trunk
- Files:
-
- 3 edited
-
README.txt (modified) (2 diffs)
-
admin/class-boostools-admin.php (modified) (1 diff)
-
boostools.php (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
boostools/trunk/README.txt
r2247543 r2332358 2 2 Tags: web push notifications, on-site messages, conversion rate optimization, retargeting, social proof, nudges 3 3 Requires at least: 3.0.1 4 Tested up to: 5. 24 Tested up to: 5.4 5 5 Stable tag: 4.3 6 6 License: GPLv2 or later … … 52 52 * First Version 53 53 54 = 1.0.1 = 55 * First Version 56 54 57 55 58 == Configuration == -
boostools/trunk/admin/class-boostools-admin.php
r2172679 r2332358 140 140 $val_t = str_replace("https://", "", $val_t); 141 141 142 $resp = json_decode(wp_remote_retrieve_body( wp_remote_get("https://boostools.app/help/config?subdomain=".urlencode($val_t) )));143 142 $resp = json_decode(wp_remote_retrieve_body( wp_remote_get("https://boostools.app/help/config?subdomain=".urlencode($val_t), array('sslverify' => FALSE)))); 143 144 144 if(!$resp){ return "Domain not found!"; } 145 145 if(isset($resp->errors) && $resp->errors ){ return "Domain not found!"; } -
boostools/trunk/boostools.php
r2172679 r2332358 17 17 * Plugin URI: https://boostools.app/wp/ 18 18 * Description: Welcome to boostools – this is very simple WordPress plugin that helps turn your website visitors into web push notification subscribers. 19 * Version: 1.0. 019 * Version: 1.0.1 20 20 * Author: Boostools Team 21 21 * License: GPL-2.0+ … … 31 31 /** 32 32 * Currently plugin version. 33 * Start at version 1.0. 0and use SemVer - https://semver.org33 * Start at version 1.0.1 and use SemVer - https://semver.org 34 34 * Rename this for your plugin and update it as you release new versions. 35 35 */ 36 define( 'BOOSTOOLS_VERSION', '1.0. 0' );36 define( 'BOOSTOOLS_VERSION', '1.0.1' ); 37 37 38 38 /**
Note: See TracChangeset
for help on using the changeset viewer.