Version Description
Download this release
Release Info
Developer | businessdirectoryplugin |
Plugin | Business Directory Plugin |
Version | 5.3.2.1 |
Comparing to | |
See all releases |
Code changes from version 5.3.2 to 5.3.2.1
README.TXT
CHANGED
@@ -5,8 +5,8 @@ Tags: business directory, directory plugin, company business directory, chamber
|
|
5 |
Requires at least: 4.5
|
6 |
Requires PHP: 5.6
|
7 |
Tested up to: 4.9
|
8 |
-
Last Updated: 2018-Aug-
|
9 |
-
Stable tag: 5.3.2
|
10 |
License: GPLv2 or later
|
11 |
|
12 |
Build any kind of local directory, directory of business providers, a Yellow-Pages business directory, Yelp-like review directory and much more!
|
@@ -143,6 +143,9 @@ If you are having problems please visit [support forum](http://www.businessdirec
|
|
143 |
|
144 |
== Changelog ==
|
145 |
|
|
|
|
|
|
|
146 |
= Version 5.3.2 =
|
147 |
* Add compatibility for ACF plugin used by Bold Move theme.
|
148 |
* Update use-default-picture setting to select which views use default picture.
|
5 |
Requires at least: 4.5
|
6 |
Requires PHP: 5.6
|
7 |
Tested up to: 4.9
|
8 |
+
Last Updated: 2018-Aug-24
|
9 |
+
Stable tag: 5.3.2.1
|
10 |
License: GPLv2 or later
|
11 |
|
12 |
Build any kind of local directory, directory of business providers, a Yellow-Pages business directory, Yelp-like review directory and much more!
|
143 |
|
144 |
== Changelog ==
|
145 |
|
146 |
+
= Version 5.3.2.1 =
|
147 |
+
* Fixed issue where images showed on wrong side of listing.
|
148 |
+
|
149 |
= Version 5.3.2 =
|
150 |
* Add compatibility for ACF plugin used by Bold Move theme.
|
151 |
* Update use-default-picture setting to select which views use default picture.
|
business-directory-plugin.php
CHANGED
@@ -3,7 +3,7 @@
|
|
3 |
* Plugin Name: Business Directory Plugin
|
4 |
* Plugin URI: https://www.businessdirectoryplugin.com
|
5 |
* Description: Provides the ability to maintain a free or paid business directory on your WordPress powered site.
|
6 |
-
* Version: 5.3.2
|
7 |
* Author: D. Rodenbaugh
|
8 |
* Author URI: https://businessdirectoryplugin.com
|
9 |
* Text Domain: WPBDM
|
3 |
* Plugin Name: Business Directory Plugin
|
4 |
* Plugin URI: https://www.businessdirectoryplugin.com
|
5 |
* Description: Provides the ability to maintain a free or paid business directory on your WordPress powered site.
|
6 |
+
* Version: 5.3.2.1
|
7 |
* Author: D. Rodenbaugh
|
8 |
* Author URI: https://businessdirectoryplugin.com
|
9 |
* Text Domain: WPBDM
|
includes/class-wpbdp.php
CHANGED
@@ -19,7 +19,7 @@ final class WPBDP {
|
|
19 |
}
|
20 |
|
21 |
private function setup_constants() {
|
22 |
-
define( 'WPBDP_VERSION', '5.3.2' );
|
23 |
|
24 |
define( 'WPBDP_PATH', wp_normalize_path( plugin_dir_path( WPBDP_PLUGIN_FILE ) ) );
|
25 |
define( 'WPBDP_INC', trailingslashit( WPBDP_PATH . 'includes' ) );
|
19 |
}
|
20 |
|
21 |
private function setup_constants() {
|
22 |
+
define( 'WPBDP_VERSION', '5.3.2.1' );
|
23 |
|
24 |
define( 'WPBDP_PATH', wp_normalize_path( plugin_dir_path( WPBDP_PLUGIN_FILE ) ) );
|
25 |
define( 'WPBDP_INC', trailingslashit( WPBDP_PATH . 'includes' ) );
|
themes/default/templates/single_content.tpl.php
CHANGED
@@ -8,7 +8,7 @@
|
|
8 |
// phpcs:disable WordPress.XSS.EscapeOutput.OutputNotEscaped
|
9 |
?>
|
10 |
<?php if ( $images->main || $images->thumbnail ) : ?>
|
11 |
-
|
12 |
<?php endif; ?>
|
13 |
|
14 |
<div class="listing-details cf">
|
8 |
// phpcs:disable WordPress.XSS.EscapeOutput.OutputNotEscaped
|
9 |
?>
|
10 |
<?php if ( $images->main || $images->thumbnail ) : ?>
|
11 |
+
<?php echo $images->main ? $images->main->html : $images->thumbnail->html; ?>
|
12 |
<?php endif; ?>
|
13 |
|
14 |
<div class="listing-details cf">
|