Changeset 3074025
- Timestamp:
- 04/19/2024 07:24:23 PM (2 years ago)
- Location:
- wallkit
- Files:
-
- 6 edited
- 1 copied
-
tags/3.3.5 (copied) (copied from wallkit/trunk)
-
tags/3.3.5/admin/class-wallkit-wp-admin.php (modified) (3 diffs)
-
tags/3.3.5/readme.txt (modified) (1 diff)
-
tags/3.3.5/wallkit-wp.php (modified) (2 diffs)
-
trunk/admin/class-wallkit-wp-admin.php (modified) (3 diffs)
-
trunk/readme.txt (modified) (1 diff)
-
trunk/wallkit-wp.php (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
wallkit/tags/3.3.5/admin/class-wallkit-wp-admin.php
r3071590 r3074025 482 482 private function get_content_intro_paragraph($content, $cut_paragraph_count = 1) { 483 483 if($cut_paragraph_count < 0) { 484 return force_balance_tags( apply_filters('wallkit_customize_post_ locked_content', $content) );484 return force_balance_tags( apply_filters('wallkit_customize_post_preview_content', $content) ); 485 485 } 486 486 … … 545 545 $content .= '<div class="wkwp-paywall">'; 546 546 $content .= '<div class="wkwp-paywall-block">'; 547 $content .= base64_decode($this->collection->get_settings()548 ->get_option("wk_content_access_html")) ;547 $content .= force_balance_tags(wpautop(base64_decode($this->collection->get_settings() 548 ->get_option("wk_content_access_html")))); 549 549 $content .= '</div>'; 550 550 … … 573 573 $result_content = $content; 574 574 if( empty($this->collection->get_settings()->get_custom_content_selector()) ) { 575 $result_content = '<div class="' . $this->collection->get_settings()->get_content_class_selector() . '">' . $content . '</div>'; 576 } 577 578 return $result_content; 575 $result_content = '<div class="' . $this->collection->get_settings()->get_content_class_selector() . '">' . PHP_EOL . PHP_EOL 576 . $content . PHP_EOL. PHP_EOL 577 . '</div>'; 578 } 579 580 return force_balance_tags( apply_filters('wallkit_customize_post_frontend_wrapping', $result_content) ); 579 581 } 580 582 -
wallkit/tags/3.3.5/readme.txt
r3071590 r3074025 28 28 == Changelog == 29 29 30 = 3.3.5 = 31 *Release Date - 19 April 2024* 32 33 #### Updates including: 34 - Fixed - first paragraph is broken, content formatting. 35 30 36 = 3.3.4 = 31 37 *Release Date - 08 April 2024* -
wallkit/tags/3.3.5/wallkit-wp.php
r3071590 r3074025 10 10 * Plugin URI: https://wallkit.net 11 11 * Description: A Plug & Play paid-content system to manage subscribers, gather fees and drive additional content sales. 12 * Version: 3.3. 412 * Version: 3.3.5 13 13 * Author: Wallkit <dev@wallkit.net> 14 14 * Author URI: https://wallkit.net/ … … 27 27 * Rename this for your plugin and update it as you release new versions. 28 28 */ 29 define( 'WPWKP_VERSION', '3.3. 4' );29 define( 'WPWKP_VERSION', '3.3.5' ); 30 30 31 31 /** -
wallkit/trunk/admin/class-wallkit-wp-admin.php
r3071590 r3074025 482 482 private function get_content_intro_paragraph($content, $cut_paragraph_count = 1) { 483 483 if($cut_paragraph_count < 0) { 484 return force_balance_tags( apply_filters('wallkit_customize_post_ locked_content', $content) );484 return force_balance_tags( apply_filters('wallkit_customize_post_preview_content', $content) ); 485 485 } 486 486 … … 545 545 $content .= '<div class="wkwp-paywall">'; 546 546 $content .= '<div class="wkwp-paywall-block">'; 547 $content .= base64_decode($this->collection->get_settings()548 ->get_option("wk_content_access_html")) ;547 $content .= force_balance_tags(wpautop(base64_decode($this->collection->get_settings() 548 ->get_option("wk_content_access_html")))); 549 549 $content .= '</div>'; 550 550 … … 573 573 $result_content = $content; 574 574 if( empty($this->collection->get_settings()->get_custom_content_selector()) ) { 575 $result_content = '<div class="' . $this->collection->get_settings()->get_content_class_selector() . '">' . $content . '</div>'; 576 } 577 578 return $result_content; 575 $result_content = '<div class="' . $this->collection->get_settings()->get_content_class_selector() . '">' . PHP_EOL . PHP_EOL 576 . $content . PHP_EOL. PHP_EOL 577 . '</div>'; 578 } 579 580 return force_balance_tags( apply_filters('wallkit_customize_post_frontend_wrapping', $result_content) ); 579 581 } 580 582 -
wallkit/trunk/readme.txt
r3071590 r3074025 28 28 == Changelog == 29 29 30 = 3.3.5 = 31 *Release Date - 19 April 2024* 32 33 #### Updates including: 34 - Fixed - first paragraph is broken, content formatting. 35 30 36 = 3.3.4 = 31 37 *Release Date - 08 April 2024* -
wallkit/trunk/wallkit-wp.php
r3071590 r3074025 10 10 * Plugin URI: https://wallkit.net 11 11 * Description: A Plug & Play paid-content system to manage subscribers, gather fees and drive additional content sales. 12 * Version: 3.3. 412 * Version: 3.3.5 13 13 * Author: Wallkit <dev@wallkit.net> 14 14 * Author URI: https://wallkit.net/ … … 27 27 * Rename this for your plugin and update it as you release new versions. 28 28 */ 29 define( 'WPWKP_VERSION', '3.3. 4' );29 define( 'WPWKP_VERSION', '3.3.5' ); 30 30 31 31 /**
Note: See TracChangeset
for help on using the changeset viewer.