From 7b46ed639ef696fd2df3769689d0fb665a8d251f Mon Sep 17 00:00:00 2001 From: Steve Sutton Date: Wed, 20 Dec 2017 08:09:16 -0500 Subject: [PATCH] Plugin release for version 1.2.16 updates to version numbers and readme.txt --- index.php | 6 +++--- readme.txt | 11 +++++++++++ setup/frontHooks.php | 5 +++-- 3 files changed, 17 insertions(+), 5 deletions(-) diff --git a/index.php b/index.php index 8fb6619..8a23fdf 100644 --- a/index.php +++ b/index.php @@ -3,7 +3,7 @@ * Plugin Name: GLM Members Database Packaging * Plugin URI: http://www.gaslightmedia.com/ * Description: Gaslight Media Members Database. - * Version: 1.2.15 + * Version: 1.2.16 * Author: Gaslight Media * Author URI: http://www.gaslightmedia.com/ * License: GPL2 @@ -19,7 +19,7 @@ * @package glmMembersDatabasePackagingAddOn * @author Chuck Scott * @license http://www.gaslightmedia.com Gaslightmedia - * @version 1.2.15 + * @version 1.2.16 */ // Check that we're being called by WordPress. @@ -43,7 +43,7 @@ if (!defined('ABSPATH')) { * so that we're sure the other add-ons see an up to date * version from this plugin. */ -define('GLM_MEMBERS_PACKAGING_PLUGIN_VERSION', '1.2.15'); +define('GLM_MEMBERS_PACKAGING_PLUGIN_VERSION', '1.2.16'); define('GLM_MEMBERS_PACKAGING_PLUGIN_DB_VERSION', '1.1.6'); // This is the minimum version of the GLM Members DB plugin require for this plugin. diff --git a/readme.txt b/readme.txt index 5d7d410..c06f53d 100644 --- a/readme.txt +++ b/readme.txt @@ -27,6 +27,17 @@ e.g. == Changelog == += 1.2.16 = +* Member detail packages display now has collapsable description for each package. + += 1.2.15 = +* Add check for packages and detail s link in the package detail view +* Removing refs to addNotice +* Updating the display of packages. Description areas now have collapsable section. + += 1.2.14 = +* Update name to Packages + = 1.2.13 = * Update name in navigation to Packages * Adding the member column to the package dashboard. diff --git a/setup/frontHooks.php b/setup/frontHooks.php index d0791ac..184db3e 100644 --- a/setup/frontHooks.php +++ b/setup/frontHooks.php @@ -132,8 +132,9 @@ if (isset($this->config['addOns']['glm-member-db'])) { // Add internal page content links to member detail page add_filter('glm-member-db-front-members-detail-linksBottom', function($content, $id) { - $packageData = do_shortcode('[glm-members-packaging-list member='.$id.', template="detail-packages-link" order="title"]'); - $content .= $packageData; + // Removing the link for the packages & deals on the member detail page per Charis request + // $packageData = do_shortcode('[glm-members-packaging-list member='.$id.', template="detail-packages-link" order="title"]'); + // $content .= $packageData; return $content; }, 10, -- 2.17.1