Changeset 2514366
- Timestamp:
- 04/13/2021 06:31:49 PM (5 years ago)
- Location:
- holler-box
- Files:
-
- 42 added
- 3 edited
-
tags/1.5.6 (added)
-
tags/1.5.6/assets (added)
-
tags/1.5.6/assets/css (added)
-
tags/1.5.6/assets/css/holler-admin.css (added)
-
tags/1.5.6/assets/css/holler-frontend.css (added)
-
tags/1.5.6/assets/css/holler-frontend.min.css (added)
-
tags/1.5.6/assets/font (added)
-
tags/1.5.6/assets/font/fontello.eot (added)
-
tags/1.5.6/assets/font/fontello.svg (added)
-
tags/1.5.6/assets/font/fontello.ttf (added)
-
tags/1.5.6/assets/font/fontello.woff (added)
-
tags/1.5.6/assets/font/fontello.woff2 (added)
-
tags/1.5.6/assets/img (added)
-
tags/1.5.6/assets/img/bottom-left-icon.png (added)
-
tags/1.5.6/assets/img/bottom-right-icon.png (added)
-
tags/1.5.6/assets/img/chat-icon.png (added)
-
tags/1.5.6/assets/img/ebook-mockup-300.png (added)
-
tags/1.5.6/assets/img/ebook-mockup-cropped.png (added)
-
tags/1.5.6/assets/img/fomo-small.png (added)
-
tags/1.5.6/assets/img/loading.gif (added)
-
tags/1.5.6/assets/img/mystery-man.png (added)
-
tags/1.5.6/assets/img/popup-icon.png (added)
-
tags/1.5.6/assets/img/popup-template-0.png (added)
-
tags/1.5.6/assets/img/popup-template-1.png (added)
-
tags/1.5.6/assets/img/popup-template-2.png (added)
-
tags/1.5.6/assets/img/popup-template-3.png (added)
-
tags/1.5.6/assets/img/popup-template-progress.png (added)
-
tags/1.5.6/assets/img/top-left-icon.png (added)
-
tags/1.5.6/assets/img/top-right-icon.png (added)
-
tags/1.5.6/assets/js (added)
-
tags/1.5.6/assets/js/holler-admin.js (added)
-
tags/1.5.6/assets/js/holler-frontend.js (added)
-
tags/1.5.6/assets/js/holler-frontend.min.js (added)
-
tags/1.5.6/assets/lang (added)
-
tags/1.5.6/assets/lang/holler-box.mo (added)
-
tags/1.5.6/assets/lang/holler-box.po (added)
-
tags/1.5.6/holler-box.php (added)
-
tags/1.5.6/includes (added)
-
tags/1.5.6/includes/class-holler-admin.php (added)
-
tags/1.5.6/includes/class-holler-ajax.php (added)
-
tags/1.5.6/includes/class-holler-functions.php (added)
-
tags/1.5.6/readme.txt (added)
-
trunk/holler-box.php (modified) (2 diffs)
-
trunk/includes/class-holler-functions.php (modified) (5 diffs)
-
trunk/readme.txt (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
holler-box/trunk/holler-box.php
r2506068 r2514366 4 4 * Plugin URI: https://hollerwp.com 5 5 * Description: A lightweight popup plugin with lead generation opt-in forms. 6 * Version: 1.5. 66 * Version: 1.5.7 7 7 * Author: Scott Bolinger 8 8 * Author URI: https://scottbolinger.com … … 63 63 private function setup_constants() { 64 64 // Plugin version 65 define( 'Holler_Box_VER', '1.5. 6' );65 define( 'Holler_Box_VER', '1.5.7' ); 66 66 67 67 // Plugin path -
holler-box/trunk/includes/class-holler-functions.php
r2506068 r2514366 72 72 public function scripts_styles( $hook ) { 73 73 74 $box _id = $this->get_box_for_this_page();75 76 if( $box_id) {74 $boxes = $this->get_boxes_for_this_page(); 75 76 if( !empty( $boxes ) ) { 77 77 78 78 // Use minified libraries if SCRIPT_DEBUG is turned off … … 155 155 public function maybe_display_items() { 156 156 157 $ box_id = $this->get_box_for_this_page();158 159 if($box_id ) {157 $active_boxes = $this->get_boxes_for_this_page(); 158 159 foreach( $active_boxes as $box_id ) { 160 160 self::$instance->show_box_types( $box_id ); 161 161 } 162 162 163 } 163 164 … … 168 169 * @return string 169 170 */ 170 public function get_box_for_this_page() { 171 public function get_boxes_for_this_page() { 172 173 $active_boxes = []; 171 174 172 175 // do checks for page conditionals, logged in, etc here … … 229 232 continue; 230 233 231 return $box_id; 232 233 } 234 $active_boxes[] = $box_id; 235 236 } 237 238 return $active_boxes; 234 239 235 240 } … … 540 545 $post_content = get_post($id); 541 546 $content = $post_content->post_content; 542 $content = apply_filters('the_content', $content );543 547 $content = apply_filters('hollerbox_content', $content, $id ); 544 548 return do_shortcode( $content ); -
holler-box/trunk/readme.txt
r2506068 r2514366 5 5 Requires at least: 4.5 6 6 Tested up to: 5.7 7 Stable tag: 1.5. 67 Stable tag: 1.5.7 8 8 License: GPLv2 or later 9 9 License URI: http://www.gnu.org/licenses/gpl-2.0.html … … 149 149 = 1.5.6 = 150 150 151 * Fix for multiple boxes on one page 152 * Fix for Elementor and WPBakery showing page content in box 153 154 = 1.5.6 = 155 151 156 * Fix broken icons 152 157 * Fix for Elementor
Note: See TracChangeset
for help on using the changeset viewer.