From a2cc84204434c722d6524e5aab2010dbaea1a743 Mon Sep 17 00:00:00 2001 From: Tim Carr Date: Thu, 11 Apr 2024 13:04:19 +0100 Subject: [PATCH] 2.4.8 --- ACTIONS-FILTERS.md | 14 +++++++------- languages/convertkit.pot | 2 +- readme.txt | 8 ++++++-- wp-convertkit.php | 4 ++-- 4 files changed, 16 insertions(+), 12 deletions(-) diff --git a/ACTIONS-FILTERS.md b/ACTIONS-FILTERS.md index f82730229..915c10dc8 100644 --- a/ACTIONS-FILTERS.md +++ b/ACTIONS-FILTERS.md @@ -955,7 +955,7 @@ add_filter( 'convertkit_wishlist_settings_get_defaults', function( $defaults ) {

convertkit_output_restrict_content_get_resource_type - includes/class-convertkit-output-restrict-content.php::639 + includes/class-convertkit-output-restrict-content.php::647

Overview

Define the ConvertKit Resource Type that the visitor must be subscribed against to access this content, overriding the Post setting. Return false or an empty string to not restrict content.

Parameters

@@ -986,7 +986,7 @@ add_filter( 'convertkit_output_restrict_content_get_resource_type', function( $r

convertkit_output_restrict_content_get_resource_id - includes/class-convertkit-output-restrict-content.php::677 + includes/class-convertkit-output-restrict-content.php::685

Overview

Define the ConvertKit Resource ID that the visitor must be subscribed against to access this content, overriding the Post setting. Return 0 to not restrict content.

Parameters

@@ -1017,7 +1017,7 @@ add_filter( 'convertkit_output_restrict_content_get_resource_id', function( $res

convertkit_output_restrict_content_content_preview - includes/class-convertkit-output-restrict-content.php::853 + includes/class-convertkit-output-restrict-content.php::861

Overview

Define the output for the content preview when the visitor is not an authenticated subscriber.

Parameters

@@ -1048,7 +1048,7 @@ add_filter( 'convertkit_output_restrict_content_content_preview', function( $con

convertkit_output_restrict_content_call_to_action - includes/class-convertkit-output-restrict-content.php::867 + includes/class-convertkit-output-restrict-content.php::875

Overview

Define the output for the call to action, displayed below the content preview, when the visitor is not an authenticated subscriber.

Parameters

@@ -1079,7 +1079,7 @@ add_filter( 'convertkit_output_restrict_content_call_to_action', function( $call

convertkit_output_restrict_content_is_crawler_permitted_user_agent_ip_ranges - includes/class-convertkit-output-restrict-content.php::1222 + includes/class-convertkit-output-restrict-content.php::1230

Overview

Define the permitted user agents and their IP address ranges that can bypass Restrict Content to index content for search engines.

Parameters

@@ -1373,7 +1373,7 @@ add_filter( 'convertkit_broadcasts_build_post_args', function( $post_args, $broa

convertkit_broadcasts_parse_broadcast_content - includes/class-convertkit-broadcasts-importer.php::300 + includes/class-convertkit-broadcasts-importer.php::328

Overview

Parses the given Broadcast's content, removing unnecessary HTML tags and styles.

Parameters

@@ -1404,7 +1404,7 @@ add_filter( 'convertkit_broadcasts_parse_broadcast_content', function( $content,

convertkit_broadcasts_parse_broadcast_content_permitted_html_tags - includes/class-convertkit-broadcasts-importer.php::394 + includes/class-convertkit-broadcasts-importer.php::426

Overview

Define the HTML tags to retain in the Broadcast Content.

Parameters

diff --git a/languages/convertkit.pot b/languages/convertkit.pot index d9e7f035a..43c432bcf 100644 --- a/languages/convertkit.pot +++ b/languages/convertkit.pot @@ -9,7 +9,7 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"POT-Creation-Date: 2024-04-03T16:28:04+00:00\n" +"POT-Creation-Date: 2024-04-11T11:59:59+00:00\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "X-Generator: WP-CLI 2.9.0\n" "X-Domain: convertkit\n" diff --git a/readme.txt b/readme.txt index 59c1ddcb7..ba849abf2 100755 --- a/readme.txt +++ b/readme.txt @@ -3,9 +3,9 @@ Contributors: nathanbarry, growdev, travisnorthcutt, ggwicz Donate link: https://convertkit.com Tags: email marketing, email newsletter, newsletter, subscribers, membership Requires at least: 5.0 -Tested up to: 6.5 +Tested up to: 6.5.2 Requires PHP: 5.6.20 -Stable tag: 2.4.7 +Stable tag: 2.4.8 License: GPLv2 or later License URI: http://www.gnu.org/licenses/gpl-2.0.html @@ -156,6 +156,10 @@ Full Plugin documentation can be found [here](https://help.convertkit.com/en/art == Changelog == +### 2.4.8 2024-04-11 +* Fix: Member Content: Display Content when using a frontend Page Builder, such as Beaver Builder +* Fix: Forms: Sticky Bar: Set `z-index` CSS property to ensure Sticky Bar Forms correctly display over some WordPress Theme headers and menus + ### 2.4.7 2024-04-08 * Fix: WP-Rocket: Display Forms when WP-Rocket's `Delay JavaScript Execution` option is enabled * Fix: Perfmatters: Display Forms when Perfmatters' `Delay JavaScript` option is enabled diff --git a/wp-convertkit.php b/wp-convertkit.php index fb2258498..9c7b5b702 100644 --- a/wp-convertkit.php +++ b/wp-convertkit.php @@ -9,7 +9,7 @@ * Plugin Name: ConvertKit * Plugin URI: https://convertkit.com/ * Description: Display ConvertKit email subscription forms, landing pages, products, broadcasts and more. - * Version: 2.4.7 + * Version: 2.4.8 * Author: ConvertKit * Author URI: https://convertkit.com/ * Text Domain: convertkit @@ -25,7 +25,7 @@ define( 'CONVERTKIT_PLUGIN_FILE', plugin_basename( __FILE__ ) ); define( 'CONVERTKIT_PLUGIN_URL', plugin_dir_url( __FILE__ ) ); define( 'CONVERTKIT_PLUGIN_PATH', __DIR__ ); -define( 'CONVERTKIT_PLUGIN_VERSION', '2.4.7' ); +define( 'CONVERTKIT_PLUGIN_VERSION', '2.4.8' ); // Load shared classes, if they have not been included by another ConvertKit Plugin. if ( ! class_exists( 'ConvertKit_API' ) ) {