Version Description
This update fixes a fatal error when adding a new location.
Download this release
Release Info
Developer | NateWr |
Plugin | Business Profile |
Version | 1.2.5 |
Comparing to | |
See all releases |
Code changes from version 1.2.4 to 1.2.5
- business-profile.php +1 -1
- includes/class-sap-scheduler-meta.php +2 -2
- package.json +1 -1
- readme.txt +7 -1
business-profile.php
CHANGED
@@ -89,7 +89,7 @@ if ( ! class_exists( 'bpfwpInit', false ) ) :
|
|
89 |
define( 'BPFWP_PLUGIN_DIR', untrailingslashit( plugin_dir_path( __FILE__ ) ) );
|
90 |
define( 'BPFWP_PLUGIN_URL', untrailingslashit( plugin_dir_url( __FILE__ ) ) );
|
91 |
define( 'BPFWP_PLUGIN_FNAME', plugin_basename( __FILE__ ) );
|
92 |
-
define( 'BPFWP_VERSION', '1.2.
|
93 |
}
|
94 |
|
95 |
/**
|
89 |
define( 'BPFWP_PLUGIN_DIR', untrailingslashit( plugin_dir_path( __FILE__ ) ) );
|
90 |
define( 'BPFWP_PLUGIN_URL', untrailingslashit( plugin_dir_url( __FILE__ ) ) );
|
91 |
define( 'BPFWP_PLUGIN_FNAME', plugin_basename( __FILE__ ) );
|
92 |
+
define( 'BPFWP_VERSION', '1.2.5' );
|
93 |
}
|
94 |
|
95 |
/**
|
includes/class-sap-scheduler-meta.php
CHANGED
@@ -15,7 +15,7 @@ defined( 'ABSPATH' ) || exit;
|
|
15 |
|
16 |
require_once BPFWP_PLUGIN_DIR . '/lib/simple-admin-pages/classes/AdminPageSetting.Scheduler.class.php';
|
17 |
|
18 |
-
if ( ! class_exists( 'bpfwpSAPSchedulerMeta', false ) && class_exists( '
|
19 |
|
20 |
/**
|
21 |
* Class to extend the Simple Admin Pages Scheduler component for use on
|
@@ -23,7 +23,7 @@ if ( ! class_exists( 'bpfwpSAPSchedulerMeta', false ) && class_exists( 'sapAdmin
|
|
23 |
*
|
24 |
* @since 1.1
|
25 |
*/
|
26 |
-
class bpfwpSAPSchedulerMeta extends
|
27 |
|
28 |
/**
|
29 |
* Generate an option input field name. The default component appends
|
15 |
|
16 |
require_once BPFWP_PLUGIN_DIR . '/lib/simple-admin-pages/classes/AdminPageSetting.Scheduler.class.php';
|
17 |
|
18 |
+
if ( ! class_exists( 'bpfwpSAPSchedulerMeta', false ) && class_exists( 'sapAdminPageSettingScheduler_2_1_2' ) ) :
|
19 |
|
20 |
/**
|
21 |
* Class to extend the Simple Admin Pages Scheduler component for use on
|
23 |
*
|
24 |
* @since 1.1
|
25 |
*/
|
26 |
+
class bpfwpSAPSchedulerMeta extends sapAdminPageSettingScheduler_2_1_2 {
|
27 |
|
28 |
/**
|
29 |
* Generate an option input field name. The default component appends
|
package.json
CHANGED
@@ -1,7 +1,7 @@
|
|
1 |
{
|
2 |
"name": "business-profile",
|
3 |
"description": "Contact information, Google Maps and opening hours made easy for businesses.",
|
4 |
-
"version": "1.2.
|
5 |
"author": {
|
6 |
"name": "Theme of the Crop",
|
7 |
"url": "https://themeofthecrop.com"
|
1 |
{
|
2 |
"name": "business-profile",
|
3 |
"description": "Contact information, Google Maps and opening hours made easy for businesses.",
|
4 |
+
"version": "1.2.5",
|
5 |
"author": {
|
6 |
"name": "Theme of the Crop",
|
7 |
"url": "https://themeofthecrop.com"
|
readme.txt
CHANGED
@@ -5,7 +5,7 @@ Plugin URL: http://themeofthecrop.com
|
|
5 |
Requires at Least: 4.4
|
6 |
Tested Up To: 5.1
|
7 |
Tags: business profile, seo, local seo, schema, address, google map, contact, phone
|
8 |
-
Stable tag: 1.2.
|
9 |
License: GPLv2 or later
|
10 |
Donate link: http://themeofthecrop.com
|
11 |
|
@@ -86,6 +86,9 @@ You'll find more help in the [User Guide](http://doc.themeofthecrop.com/plugins/
|
|
86 |
|
87 |
== Changelog ==
|
88 |
|
|
|
|
|
|
|
89 |
= 1.2.4 (2019-03-18) =
|
90 |
* Fix: date and time picker error in Chrome in pickadate.js library
|
91 |
|
@@ -177,6 +180,9 @@ You'll find more help in the [User Guide](http://doc.themeofthecrop.com/plugins/
|
|
177 |
|
178 |
== Upgrade Notice ==
|
179 |
|
|
|
|
|
|
|
180 |
= 1.2.4 =
|
181 |
This update fixes a bug in the latest version of Chrome with the date and time picker in the scheduler.
|
182 |
|
5 |
Requires at Least: 4.4
|
6 |
Tested Up To: 5.1
|
7 |
Tags: business profile, seo, local seo, schema, address, google map, contact, phone
|
8 |
+
Stable tag: 1.2.5
|
9 |
License: GPLv2 or later
|
10 |
Donate link: http://themeofthecrop.com
|
11 |
|
86 |
|
87 |
== Changelog ==
|
88 |
|
89 |
+
= 1.2.5 (2019-04-04) =
|
90 |
+
* Fix: error when adding a new location
|
91 |
+
|
92 |
= 1.2.4 (2019-03-18) =
|
93 |
* Fix: date and time picker error in Chrome in pickadate.js library
|
94 |
|
180 |
|
181 |
== Upgrade Notice ==
|
182 |
|
183 |
+
= 1.2.5 =
|
184 |
+
This update fixes a fatal error when adding a new location.
|
185 |
+
|
186 |
= 1.2.4 =
|
187 |
This update fixes a bug in the latest version of Chrome with the date and time picker in the scheduler.
|
188 |
|