Plugin Directory

Changeset 3357333


Ignore:
Timestamp:
09/07/2025 07:17:35 AM (5 months ago)
Author:
recorp
Message:

Tagging 4.2.8

Location:
export-wp-page-to-static-html/tags/4.2.8
Files:
3 edited
1 copied

Legend:

Unmodified
Added
Removed
  • export-wp-page-to-static-html/tags/4.2.8/README.txt

    r3357077 r3357333  
    44Requires at least: 4.1 
    55Tested up to: 6.8
    6 Stable tag: 4.2.7
     6Stable tag: 4.2.8
    77License: GPLv2 or later 
    88License URI: https://www.gnu.org/licenses/gpl-2.0.html 
     
    9191
    9292== Changelog ==
     93
     94= 4.2.8 - 7 September 2025 =
     95* Updated little thing.
     96
    9397
    9498= 4.2.7 - 6 September 2025 =
  • export-wp-page-to-static-html/tags/4.2.8/admin/includes/data/data.js

    r3335694 r3357333  
    2929    });
    3030
    31     $(document).on('click', '.static_html_settings .go_pro a', function (e) {
     31    $(document).on('click', '.go-pro-btn', function (e) {
    3232        e.preventDefault();
    3333        var goProLink = $(this).attr('href');
     34        const url = new URL(goProLink);
     35        const ref = url.searchParams.get('ref');
     36
    3437        $.post(wpptshData.ajaxUrl, {
    3538            action: 'wpptsh_click_go_pro',
    36             button: 'go_pro'
     39            button: ref
    3740        }, function () {
    3841            window.location.href = goProLink;
    3942        });
    4043    });
    41     $(document).on('click', '.export_html.main_settings_page .go_pro2 #purchase', function (e) {
    42         e.preventDefault();
    43         $.post(wpptshData.ajaxUrl, {
    44             action: 'wpptsh_click_go_pro',
    45             button: 'go_pro2'
    46         });
    47     });
    4844});
  • export-wp-page-to-static-html/tags/4.2.8/export-wp-page-to-static-html.php

    r3357077 r3357333  
    1010 * Plugin URI:        https://myrecorp.com
    1111 * Description:       Seamlessly export any WordPress page or post into lightweight, fully responsive static HTML/CSS and print-ready PDF with a single click. Boost your site’s performance and security by serving pre-rendered pages, create offline-friendly backups. Perfect for developers, content creators, and businesses needing fast, reliable exports of WordPress content.
    12  * Version:           4.2.7
     12 * Version:           4.2.8
    1313 * Author:            ReCorp
    1414 * Author URI:        https://www.upwork.com/fl/rayhan1
     
    5757         * Rename this for your plugin and update it as you release new versions.
    5858         */
    59         define( 'EXPORT_WP_PAGE_TO_STATIC_HTML_VERSION', '4.2.7' );
     59        define( 'EXPORT_WP_PAGE_TO_STATIC_HTML_VERSION', '4.2.8' );
    6060        define( 'EWPPTSH_PLUGIN_DIR_URL', plugin_dir_url(__FILE__) );
    6161        define( 'EWPPTSH_PLUGIN_DIR_PATH', plugin_dir_path(__FILE__) );
Note: See TracChangeset for help on using the changeset viewer.