Changeset 2830198
- Timestamp:
- 12/07/2022 05:42:13 PM (3 years ago)
- Location:
- quentn-wp/trunk
- Files:
-
- 4 edited
-
includes/class-quentn-wp-restrict-access.php (modified) (1 diff)
-
includes/class-quentn-wp.php (modified) (1 diff)
-
quentn-wp.php (modified) (3 diffs)
-
readme.txt (modified) (3 diffs)
Legend:
- Unmodified
- Added
- Removed
-
quentn-wp/trunk/includes/class-quentn-wp-restrict-access.php
r2640611 r2830198 54 54 public function quentn_content_permission_check( $content ) { 55 55 56 $m = new Mustache_Engine;57 $this->set_replacement_values();58 $content = $m->render($content, $this->get_replacement_values());59 60 //if user can edit posts permission or page restriction is not avtive, return content61 if( current_user_can( 'edit_pages' ) || ! $page_meta = $this->get_quentn_post_restrict_meta() ) {56 $m = new Mustache_Engine; 57 $this->set_replacement_values(); 58 $content = $m->render($content, $this->get_replacement_values()); 59 60 //if user can edit posts permission or page restriction is not avtive, return content 61 if( current_user_can( 'edit_pages' ) || ! $page_meta = $this->get_quentn_post_restrict_meta() ) { 62 62 return $content; 63 } 64 define( 'DONOTCACHEPAGE', 1 ); // Do not cache this page 63 } 64 65 // Do not cache this page 66 if ( ! defined( 'DONOTCACHEPAGE' ) ) { 67 define( 'DONOTCACHEPAGE', 1 ); 68 } 69 65 70 $is_display_content = false; 66 71 -
quentn-wp/trunk/includes/class-quentn-wp.php
r2702135 r2830198 75 75 $this->version = QUENTN_WP_VERSION; 76 76 } else { 77 $this->version = '1.2. 3';77 $this->version = '1.2.4'; 78 78 } 79 79 $this->plugin_name = 'quentn-wp'; -
quentn-wp/trunk/quentn-wp.php
r2702135 r2830198 17 17 * Plugin URI: https://docs.quentn.com/de/beta-quentn-wordpress-plugin/installieren-und-verbinden 18 18 * Description: This plugin allows you to restrict access to specific pages, create custom access links and create dynamic page countdowns. Optionally, you can connect your Quentn account to your WordPress installation to share contacts and manage access restrictions through Quentn. 19 * Version: 1.2. 319 * Version: 1.2.4 20 20 * Author: Quentn.com GmbH 21 21 * Author URI: https://quentn.com/ … … 24 24 * Text Domain: quentn-wp 25 25 * Domain Path: /languages 26 * Elementor tested up to: 3. 6.127 * Elementor Pro tested up to: 3. 6.426 * Elementor tested up to: 3.9.0 27 * Elementor Pro tested up to: 3.9.0 28 28 */ 29 29 … … 37 37 define( "TABLE_QUENTN_RESTRICTIONS", 'qntn_restrictions' ); 38 38 define( "TABLE_QUENTN_USER_DATA", 'qntn_user_data' ); 39 define( 'QUENTN_WP_VERSION', '1.2. 3' );39 define( 'QUENTN_WP_VERSION', '1.2.4' ); 40 40 41 41 /** -
quentn-wp/trunk/readme.txt
r2702135 r2830198 3 3 Tags: Quentn, countdown, page restriction, email, elementor integration, email marketing tool, integration, email automation, marketing automation 4 4 Requires at least: 4.6.0 5 Tested up to: 5.9.26 Stable tag: 1.2. 35 Tested up to: 6.1.1 6 Stable tag: 1.2.4 7 7 Requires PHP: 5.6.0 8 8 License: GPLv2 or later … … 66 66 67 67 == Changelog == 68 = 1.2.4 = 69 * Test with new wordpress ( 6.1.1 ), Elementor ( 3.9.0 ) and Elemnetor PRO ( 3.9.0 ) versions. 70 68 71 = 1.2.3 = 69 72 * Fix: Field mapping issues in Form widget of Elementor PRO … … 147 150 == Upgrade Notice == 148 151 152 = 1.2.4 = 153 Thanks for using Quentn Plugin! Please update the plugin. It is now tested with new wordpress ( 6.1.1 ), Elementor ( 3.9.0 ) and Elemnetor PRO ( 3.9.0 ) versions. 154 149 155 = 1.2.3 = 150 156 Thanks for using Quentn Plugin! Please update the plugin to fix field mapping issues in form widget of Elementor PRO.
Note: See TracChangeset
for help on using the changeset viewer.