Changeset 3149849
- Timestamp:
- 09/11/2024 07:59:11 AM (19 months ago)
- Location:
- rightmessage
- Files:
-
- 1 added
- 4 edited
-
includes (added)
-
trunk/admin/section/class-rightmessage-settings-general.php (modified) (1 diff)
-
trunk/includes/class-rightmessage.php (modified) (3 diffs)
-
trunk/readme.txt (modified) (2 diffs)
-
trunk/wp-rightmessage.php (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
rightmessage/trunk/admin/section/class-rightmessage-settings-general.php
r2125332 r3149849 74 74 ); 75 75 76 $html .= '<p class="description">If set, the above embedded widget will be included at the bottom of every post or page (in single view only) across your site. Take the name in your embedded widget\'s " Where To Display" field and set it above.</p>';76 $html .= '<p class="description">If set, the above embedded widget will be included at the bottom of every post or page (in single view only) across your site. Take the name in your embedded widget\'s "Internal Widget Id" field and set it above.</p>'; 77 77 78 78 echo $html; -
rightmessage/trunk/includes/class-rightmessage.php
r3147599 r3149849 43 43 public static function shortcode_area( $attributes, $content = null ) { 44 44 if (isset($attributes['name'])) { 45 return '<div class="rm-area-' . esc_attr($attributes['name']) .'"></div>';45 return '<div class="rm-area-'.$attributes['name'].'"></div>'; 46 46 } 47 47 } … … 67 67 68 68 public static function add_vars($content) { 69 70 69 if ( ! in_the_loop() || ! is_main_query() ) { 71 70 return $content; … … 98 97 include(RIGHTMESSAGE_PLUGIN_PATH . "/views/rm-variables.php"); 99 98 $included_content = ob_get_clean(); 100 $content .= wp_kses_post($included_content); 99 add_action('wp_footer', function() use ($included_content) { 100 echo $included_content; 101 }); 101 102 } 102 103 -
rightmessage/trunk/readme.txt
r3147599 r3149849 4 4 Requires at least: 3.6 5 5 Tested up to: 6.6.1 6 Stable tag: 0.9. 66 Stable tag: 0.9.7 7 7 Requires PHP: 5.2.0 8 8 License: GPL2 … … 27 27 == Changelog == 28 28 29 = 0.9.7 = 30 * Fixed: Default Embed Widget rendering issue 31 * Updated: Default Embed Widget explanation is clearer 32 29 33 = 0.9.6 = 30 34 * Fixed: Issue with incorrect stable tag. -
rightmessage/trunk/wp-rightmessage.php
r3147599 r3149849 8 8 * Plugin URI: https://rightmessage.com/ 9 9 * Description: Integrate RightMessage into your website 10 * Version: 0.9. 610 * Version: 0.9.7 11 11 * Author: RightMessage 12 12 * License: GPL2 … … 25 25 define( 'RIGHTMESSAGE_PLUGIN_URL', plugin_dir_url( __FILE__ ) ); 26 26 define( 'RIGHTMESSAGE_PLUGIN_PATH', plugin_dir_path( __FILE__ ) ); 27 define( 'RIGHTMESSAGE_PLUGIN_VERSION', '0.9. 6' );27 define( 'RIGHTMESSAGE_PLUGIN_VERSION', '0.9.7' ); 28 28 29 29 require_once RIGHTMESSAGE_PLUGIN_PATH . '/includes/class-rightmessage.php';
Note: See TracChangeset
for help on using the changeset viewer.