Plugin Directory

Changeset 3344929


Ignore:
Timestamp:
08/15/2025 01:31:12 AM (8 months ago)
Author:
grocerslist
Message:

8/14/2025 - v1.0.6 - Removes GatingContentFilter plugin which was injecting a div between .entry-content and the actual post content, which caused Raptive's ad injection to fail.

Location:
grocerslist
Files:
218 added
1 deleted
5 edited

Legend:

Unmodified
Added
Removed
  • grocerslist

    • Property svn:mergeinfo changed (with no actual effect on merging)
  • grocerslist/trunk/README.md

    r3343686 r3344929  
    44Author: Grocers List, Engineering
    55Tested up to: 6.8
    6 Stable tag: 1.0.5
     6Stable tag: 1.0.6
    77Requires PHP: 7.0
    88License: GPLv3
     
    3939#### - 8/12/2025 - v1.0.5 - Sends plugin version in header of all requests that include x-api-key
    4040
     41#### - 8/14/2025 - v1.0.6 - Removes GatingContentFilter plugin which was injecting a div between .entry-content and the actual post content, which caused Raptive's ad injection to fail.
     42
    4143### Resources:
    4244
  • grocerslist/trunk/grocerslist.php

    r3343686 r3344929  
    77Requires PHP: 7.0
    88Tested up to: 6.8
    9 Version: 1.0.5
    10 Stable tag: 1.0.5
     9Version: 1.0.6
     10Stable tag: 1.0.6
    1111Author: Grocers List Engineering
    1212License: GPLv3
     
    1818if (!defined('ABSPATH')) exit;
    1919
    20 define('GROCERS_LIST_VERSION', '1.0.5');
     20define('GROCERS_LIST_VERSION', '1.0.6');
    2121define('GROCERS_LIST_PLUGIN_FILE', __FILE__);
    2222define('GROCERS_LIST_PLUGIN_DIR', __DIR__);
  • grocerslist/trunk/includes/Plugin.php

    r3341811 r3344929  
    1414use GrocersList\Support\WordPressHooks;
    1515use GrocersList\Support\ContentFilter;
    16 use GrocersList\Support\GatingContentFilter;
    1716use GrocersList\Admin\AjaxController;
    1817use GrocersList\Frontend\PublicAjaxController;
     
    8180        $postGating->register();
    8281
    83         $gatingContentFilter = new GatingContentFilter($this->hooks);
    84         $gatingContentFilter->register();
    85 
    8682        self::$registered = true;
    8783    }
  • grocerslist/trunk/vendor/composer/installed.php

    r3343686 r3344929  
    44        'pretty_version' => 'dev-master',
    55        'version' => 'dev-master',
    6         'reference' => 'a8e6c4a1326302f3a38236221f630e5b52722fd5',
     6        'reference' => '9a9cc00ea6d7badec6c025eaa343bb6ff43e9115',
    77        'type' => 'library',
    88        'install_path' => __DIR__ . '/../../',
     
    1414            'pretty_version' => 'dev-master',
    1515            'version' => 'dev-master',
    16             'reference' => 'a8e6c4a1326302f3a38236221f630e5b52722fd5',
     16            'reference' => '9a9cc00ea6d7badec6c025eaa343bb6ff43e9115',
    1717            'type' => 'library',
    1818            'install_path' => __DIR__ . '/../../',
Note: See TracChangeset for help on using the changeset viewer.