Plugin Directory

Changeset 2934419

Timestamp:
07/05/2023 10:55:30 AM (13 months ago)
Author:
iamjafran
Message:

Updated version and contributors

Location:
ajaxpress
Files:
61 added
2 edited

Legend:

Unmodified
Added
Removed
  • ajaxpress/trunk/ajaxpress.php

    r2577541 r2934419  
    22
    33/**
    4  * Plugin Name: ajaxPress - Faster Loading
    5  * Plugin URI:  https://returnxero.com/ajaxpress
    6  * Description: Simply turn your website into a Single Page Application within seconds. Load page content without loading browser. Search and Comment faster than ever,.. No configuration need, just plug and play.
    7  * Version:     1.0.1
    8  * Author:      Jafran Hasan
    9  * Author URI:  http://facebook.com/iamjafran
    10  * Text Domain: ajaxpress
    11  * License:     GPL-2.0+
    12  * License URI: http://www.gnu.org/licenses/gpl-2.0.txt
    13  */
     4 * Plugin Name:       AjaxPress
     5 * Plugin URI:        https://github.com/iamjafran/Ajaxpress
     6 * Description:       AjaxPress is an WordPress plugin for loading self pages, posts, products and contents without reloading the page. It allowed users to submit comments and search using without reloading the page.
     7 * Version:           1.0.2
     8 * Requires at least: 5.2
     9 * Requires PHP:      7.2
     10 * Author:            WPFY Ltd
     11 * Author URI:        https://wpfy.co.uk
     12 * License:           GPL v2 or later
     13 * License URI:       https://www.gnu.org/licenses/gpl-2.0.html
     14 * Text Domain:       ajaxpress
     15 **/
    1416
    15 define('ajaxPress_Handler', __FILE__);
    16 require_once __DIR__ . '/inc/functions.php';
     17
     18// Check if the plugin is loaded under WordPress environment
     19defined('ABSPATH') or die('Direct Script not Allowed');
     20
     21// Check if the plugin is already loaded
     22 ! defined('_AjaxPress') or die('AjaxPress is already installed.');
     23
     24// Define root path of the plugin
     25define('_AjaxPress', __FILE__);
     26
     27// Require Boot class
     28require_once __DIR__ . '/includes/Boot.php';
  • ajaxpress/trunk/readme.txt

    r2577542 r2934419  
    11=== AjaxPress ===
    2 Contributors: iamjafran
    3 Tags: ajax, ajaxpress, no-loading, loading, fetch, load, fast
    4 Requires at least: 5.0
    5 Tested up to: 5.8
    6 Requires PHP: 5.6
    7 Stable tag: 1.0.1
     2Contributors: iamjafran, benniledl
     3Donate link: https://donate.stripe.com/28ocOibVj6YWff2000
     4Tags: ajax, ajaxpress, reload, reloading, load, loading, loader, page loader
     5Requires at least: 4.7
     6Tested up to: 6.2
     7Stable tag: 1.0.2
     8Requires PHP: 5.7
    89License: GPLv2 or later
    9 License URI: http://www.gnu.org/licenses/gpl-2.0.html
     10License URI: http://www.gnu.org/licenses/gpl-2.0.html
    1011
    11 AjaxPress is a simple tool that turns your website into Single Page Application, with no loading features.
     12AjaxPress is a.
    1213
    1314== Description ==
    1415
    15 AjaxPress is a simple tool that turns your website into Single Page Application, with no loading features.
    16 
    17 === Features ===
    18 
    19 1. **Ajax Loading** – Load your whole website' content without loading browser
    20 2. **Ajax Comment** – Post comment on post, page or WooCommerce Product Page without loading browser 
    21 2. **Ajax Search** – Search on your website without loading browser
    22 2. **Excluding List** – Set exclude list to ignore ajax loading
    23 2. **Custom Loading Message** – Set custom loading message on frontend
    24 
    25 
    26 === How to Use ===
    27 This is a Plug & Play plugin, install and activate to run it. You can change settings later.
    28 
    29 ## Privacy Policy
    30 We don't any information, cookies or not sending any data to any server.
     16AjaxPress is an WordPress plugin for loading self pages, posts, products and contents without reloading the page. It allowed users to submit comments and search using without reloading the page.
    3117
    3218== Frequently Asked Questions ==
    3319
    34 = How can I turn off the plugin? =
    35 Simply goto settings, turn off Enable checkbox
     20= A question that someone might have =
     21
     22An answer to that question.
     23
     24= What about HTML Selector? =
     25
     26HTML Selector is a wrapper which will store and replace your contents. Its maybe a class name or ID name or any kind of selector supprted by javascript. Please try to use HTML Wrapper an unique seelctor such as #main / main selecotr.
     27
     28== Screenshots ==
     29
    3630
    3731== Changelog ==
    3832
    39 = 1.0.0 =
    40 * Initial Release
     33= 1.0 =
     34* Initilization
     35
     36== A brief Markdown Example ==
     37
     38It shows without reloading:
     39
     401. Internal Page, url, post, posts, custom post type, category, tag, custom taxonomy any kind of dynamic permalink
     411. Ajax Search, without reloading the page
     421. Submit comment to a post / page without reloading the page
     43
     44It will ignore:
     45
     46* External link
     47* Admin panel dashboard
     48* Link with new tab
     49
     50
     51
Note: See TracChangeset for help on using the changeset viewer.