Plugin release for version 1.2.16
authorSteve Sutton <steve@gaslightmedia.com>
Wed, 20 Dec 2017 13:09:16 +0000 (08:09 -0500)
committerSteve Sutton <steve@gaslightmedia.com>
Wed, 20 Dec 2017 13:09:16 +0000 (08:09 -0500)
updates to version numbers and readme.txt

index.php
readme.txt
setup/frontHooks.php

index 8fb6619..8a23fdf 100644 (file)
--- 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 <cscott@gaslightmedia.com>
  * @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.
index 5d7d410..c06f53d 100644 (file)
@@ -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.
index d0791ac..184db3e 100644 (file)
@@ -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,