Plugin Directory

Changeset 3074025


Ignore:
Timestamp:
04/19/2024 07:24:23 PM (2 years ago)
Author:
wallkit
Message:

tagging version 3.3.5

Location:
wallkit
Files:
6 edited
1 copied

Legend:

Unmodified
Added
Removed
  • wallkit/tags/3.3.5/admin/class-wallkit-wp-admin.php

    r3071590 r3074025  
    482482    private function get_content_intro_paragraph($content, $cut_paragraph_count = 1) {
    483483        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) );
    485485        }
    486486
     
    545545        $content .= '<div class="wkwp-paywall">';
    546546        $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"))));
    549549        $content .= '</div>';
    550550
     
    573573        $result_content = $content;
    574574        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) );
    579581    }
    580582
  • wallkit/tags/3.3.5/readme.txt

    r3071590 r3074025  
    2828== Changelog ==
    2929
     30= 3.3.5 =
     31*Release Date - 19 April 2024*
     32
     33#### Updates including:
     34- Fixed - first paragraph is broken, content formatting.
     35
    3036= 3.3.4 =
    3137*Release Date - 08 April 2024*
  • wallkit/tags/3.3.5/wallkit-wp.php

    r3071590 r3074025  
    1010 * Plugin URI:        https://wallkit.net
    1111 * Description:       A Plug & Play paid-content system to manage subscribers, gather fees and drive additional content sales.
    12  * Version:           3.3.4
     12 * Version:           3.3.5
    1313 * Author:            Wallkit <dev@wallkit.net>
    1414 * Author URI:        https://wallkit.net/
     
    2727 * Rename this for your plugin and update it as you release new versions.
    2828 */
    29 define( 'WPWKP_VERSION', '3.3.4' );
     29define( 'WPWKP_VERSION', '3.3.5' );
    3030
    3131/**
  • wallkit/trunk/admin/class-wallkit-wp-admin.php

    r3071590 r3074025  
    482482    private function get_content_intro_paragraph($content, $cut_paragraph_count = 1) {
    483483        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) );
    485485        }
    486486
     
    545545        $content .= '<div class="wkwp-paywall">';
    546546        $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"))));
    549549        $content .= '</div>';
    550550
     
    573573        $result_content = $content;
    574574        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) );
    579581    }
    580582
  • wallkit/trunk/readme.txt

    r3071590 r3074025  
    2828== Changelog ==
    2929
     30= 3.3.5 =
     31*Release Date - 19 April 2024*
     32
     33#### Updates including:
     34- Fixed - first paragraph is broken, content formatting.
     35
    3036= 3.3.4 =
    3137*Release Date - 08 April 2024*
  • wallkit/trunk/wallkit-wp.php

    r3071590 r3074025  
    1010 * Plugin URI:        https://wallkit.net
    1111 * Description:       A Plug & Play paid-content system to manage subscribers, gather fees and drive additional content sales.
    12  * Version:           3.3.4
     12 * Version:           3.3.5
    1313 * Author:            Wallkit <dev@wallkit.net>
    1414 * Author URI:        https://wallkit.net/
     
    2727 * Rename this for your plugin and update it as you release new versions.
    2828 */
    29 define( 'WPWKP_VERSION', '3.3.4' );
     29define( 'WPWKP_VERSION', '3.3.5' );
    3030
    3131/**
Note: See TracChangeset for help on using the changeset viewer.