Changeset 3357333
- Timestamp:
- 09/07/2025 07:17:35 AM (5 months ago)
- Location:
- export-wp-page-to-static-html/tags/4.2.8
- Files:
-
- 3 edited
- 1 copied
-
. (copied) (copied from export-wp-page-to-static-html/trunk)
-
README.txt (modified) (2 diffs)
-
admin/includes/data/data.js (modified) (1 diff)
-
export-wp-page-to-static-html.php (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
export-wp-page-to-static-html/tags/4.2.8/README.txt
r3357077 r3357333 4 4 Requires at least: 4.1 5 5 Tested up to: 6.8 6 Stable tag: 4.2. 76 Stable tag: 4.2.8 7 7 License: GPLv2 or later 8 8 License URI: https://www.gnu.org/licenses/gpl-2.0.html … … 91 91 92 92 == Changelog == 93 94 = 4.2.8 - 7 September 2025 = 95 * Updated little thing. 96 93 97 94 98 = 4.2.7 - 6 September 2025 = -
export-wp-page-to-static-html/tags/4.2.8/admin/includes/data/data.js
r3335694 r3357333 29 29 }); 30 30 31 $(document).on('click', '. static_html_settings .go_pro a', function (e) {31 $(document).on('click', '.go-pro-btn', function (e) { 32 32 e.preventDefault(); 33 33 var goProLink = $(this).attr('href'); 34 const url = new URL(goProLink); 35 const ref = url.searchParams.get('ref'); 36 34 37 $.post(wpptshData.ajaxUrl, { 35 38 action: 'wpptsh_click_go_pro', 36 button: 'go_pro'39 button: ref 37 40 }, function () { 38 41 window.location.href = goProLink; 39 42 }); 40 43 }); 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 });48 44 }); -
export-wp-page-to-static-html/tags/4.2.8/export-wp-page-to-static-html.php
r3357077 r3357333 10 10 * Plugin URI: https://myrecorp.com 11 11 * 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. 712 * Version: 4.2.8 13 13 * Author: ReCorp 14 14 * Author URI: https://www.upwork.com/fl/rayhan1 … … 57 57 * Rename this for your plugin and update it as you release new versions. 58 58 */ 59 define( 'EXPORT_WP_PAGE_TO_STATIC_HTML_VERSION', '4.2. 7' );59 define( 'EXPORT_WP_PAGE_TO_STATIC_HTML_VERSION', '4.2.8' ); 60 60 define( 'EWPPTSH_PLUGIN_DIR_URL', plugin_dir_url(__FILE__) ); 61 61 define( 'EWPPTSH_PLUGIN_DIR_PATH', plugin_dir_path(__FILE__) );
Note: See TracChangeset
for help on using the changeset viewer.