Plugin Directory

Changeset 2872592


Ignore:
Timestamp:
02/28/2023 07:18:16 PM (3 years ago)
Author:
mdshuvo
Message:

3.3.0 up

Location:
ajax-filter-posts
Files:
16 added
2 edited

Legend:

Unmodified
Added
Removed
  • ajax-filter-posts/trunk/ajax-filter-posts.php

    r2824635 r2872592  
    11<?php
    22/**
    3  * Plugin Name:  Post Grid with Ajax Filter
     3 * Plugin Name:  Post Grid Ajax
    44 * Plugin URI:   http://addonmaster.com
    55 * Author:       AddonMaster
    66 * Author URI:   http://addonmaster.com/plugins/post-grid-with-ajax-filter
    7  * Version:      3.2.2
     7 * Version:      3.3.0
    88 * Description:  Post Grid with Ajax Filter helps you filter your posts by category terms with Ajax. Infinite scroll function included.
    99 * License:      GPL2
     
    2222
    2323// Defines
    24 define('AM_POST_GRID_VERSION', '3.2.2');
     24define('AM_POST_GRID_VERSION', '3.3.0');
    2525
    2626/**
     
    386386}
    387387//add_filter( 'plugin_action_links_' . plugin_basename( __FILE__ ), 'am_ajax_post_grid_plugin_action_links' );
     388
     389
     390/**
     391 * Initialize the plugin tracker
     392 *
     393 * @return void
     394 */
     395function appsero_init_tracker_ajax_filter_posts() {
     396
     397    if ( ! class_exists( 'Appsero\Client' ) ) {
     398      require_once __DIR__ . '/appsero/src/Client.php';
     399    }
     400
     401    $client = new Appsero\Client( 'dc1dc5f0-8c32-4208-b217-b8b1a1a0b85f', 'Post Grid Ajax', __FILE__ );
     402
     403    // Active insights
     404    $client->insights()->init();
     405
     406}
     407
     408appsero_init_tracker_ajax_filter_posts();
  • ajax-filter-posts/trunk/readme.txt

    r2824635 r2872592  
    1 === Post Grid with Ajax Filter ===
     1=== Post Grid Ajax ===
    22Contributors: mdshuvo, addonmaster, mdashikul
    33Tags: infinite scroll, post grid, grid, post type grid, pagination, ajax pagination, grid display, filter, filtering, grid, layout, post, post filter, post layout, taxonomy, taxonomy filter,ajax grid, displaypost gridpost, type grid, wp post frid, ajax post filter, filter post ajax, ajaxify, mixitup, isotop, category filter, filter without reload, ajax filter, ajax plugin
    44Tested up to: 6.1.1
    5 Stable tag: 3.2.2
     5Stable tag: 3.3.0
    66License: GPLv2 or later
    77License URI: http://www.gnu.org/licenses/gpl-2.0.html
     
    99
    1010== Description ==
    11 Post Grid with Ajax Filter plugin is a simple WordPress plugin that helps you filter your post by category terms with Ajax including Infinite scroll. Ajax post grid will help you Load posts with grid layout and you can also filter by post category.
     11Post Grid Ajax plugin is a simple, clean, and easy to use WordPress plugin that helps you filter your post by category terms with Ajax including Infinite scroll. Ajax post grid will help you Load posts with grid layout and you can also filter by post category.
    1212
    1313Just use below shortcodes anywhere. Below you can see all available shortcodes.
     
    9595
    9696
     97
     98## Privacy Policy
     99Post Grid with Ajax Filter uses [Appsero](https://appsero.com) SDK to collect some telemetry data upon user's confirmation. This helps us to troubleshoot problems faster & make product improvements.
     100
     101Appsero SDK **does not gather any data by default.** The SDK only starts gathering basic telemetry data **when a user allows it via the admin notice**. We collect the data to ensure a great user experience for all our users.
     102
     103Integrating Appsero SDK **DOES NOT IMMEDIATELY** start gathering data, **without confirmation from users in any case.**
     104
     105Learn more about how [Appsero collects and uses this data](https://appsero.com/privacy-policy/).
     106
    97107== Installation ==
    981081. Upload "ajax-filter-posts.zip\" to the "/wp-content/plugins/" directory.
     
    116126
    117127== Changelog ==
     128
     129= 3.3.0 =
     130* March 1, 2023
     131- WordPress 6.1.1 Compatible
    118132
    119133= 3.2.1 =
Note: See TracChangeset for help on using the changeset viewer.