PluginProbe
Boxzilla – WordPress Popup Builder / 3.1
Boxzilla – WordPress Popup Builder v3.1
3.4.11 3.4.10 3.4.9 3.4.3 3.4.4 3.4.5 3.4.6 3.4.7 3.4.8 trunk 3.0 3.0.1 3.0.2 3.0.3 3.1 3.1.1 3.1.10 3.1.11 3.1.12 3.1.13 3.1.14 3.1.15 3.1.16 3.1.17 3.1.18 All 72 releases
boxzilla / readme.txt

readme.txt in Boxzilla – WordPress Popup Builder 3.1, at readme.txt

220 lines 7.7 KB
No matching file
Up and down to move Enter to open Esc to close
Raw Download Zip
1 === Boxzilla ===
2 Contributors: Ibericode, DvanKooten, hchouhan, lapzor
3 Donate link: https://boxzillaplugin.com/#utm_source=wp-plugin-repo&utm_medium=boxzilla&utm_campaign=donate-link
4 Tags: scroll triggered box, cta, social, pop-up, newsletter, call to action, mailchimp, contact form 7, social media, mc4wp, ibericode
5 Requires at least: 3.8
6 Tested up to: 4.5.3
7 Stable tag: 3.1
8 License: GPLv2 or later
9 License URI: http://www.gnu.org/licenses/gpl-2.0.html
10
11 Flexible call to action boxes, popping up or sliding in at just the right time.
12
13 == Description ==
14
15 ### Boxzilla for WordPress
16
17 Boxzilla is a *lightweight* plugin for adding flexible call-to-actions to your WordPress site. Boxes can slide or fade in at any point and can contain whatever content you like.
18
19 > This is the successor of the old [Scroll Triggered Boxes](https://wordpress.org/plugins/scroll-triggered-boxes/) plugin.
20
21 #### Some of Boxzilla's features
22
23 - Boxes can contain _any_ content you like.
24 - Various box triggers:
25 - Scroll percentage
26 - Reaching a certain page element
27 - X amount of time on the page
28 - Exit Intent (premium)
29 - Time on Site (premium)
30 - Manually by clicking a link or button
31 - Customizable box position on the screen.
32 - Various visibility animations.
33 - Advanced page targeting.
34 - Full control over how long (and whether) boxes should stay hidden.
35 - Customizable box appearance using a simple & intuitive interface.
36 - Mobile optimized.
37
38 [Read more about Boxzilla](https://boxzillaplugin.com/#utm_source=wp-plugin-repo&utm_medium=boxzilla&utm_campaign=description).
39
40 #### Documentation
41
42 Please have a look at the [Boxzilla KB](https://kb.boxzillaplugin.com/).
43
44 #### Demo
45
46 There's a [Boxzilla demo](https://demo.boxzillaplugin.com#utm_source=wp-plugin-repo&utm_medium=boxzilla&utm_campaign=description) with some examples.
47
48 #### Add-on plugins
49
50 The core Boxzilla plugin is and always will be free. Additional advanced functionality is available through several add-ons. Not only do they extend the core functionality of the plugin, they also help to fund further development of the core (free) plugin.
51
52 [Browse available add-ons for Boxzilla](https://boxzillaplugin.com/add-ons/#utm_source=wp-plugin-repo&utm_medium=boxzilla&utm_campaign=description).
53
54 #### Contributing and reporting bugs=
55
56 You can contribute to [Boxzilla on GitHub](https://github.com/ibericode/boxzilla).
57
58 #### Support
59
60 Please use the [WordPress.org plugin support forums](https://wordpress.org/support/plugin/boxzilla) for community support where we try to help all users.
61
62 If you think you've found a bug, please [report it on GitHub](https://github.com/ibericode/boxzilla/issues).
63
64 If you're on [one of the available premium plans](https://boxzillaplugin.com/pricing#utm_source=wp-plugin-repo&utm_medium=boxzilla&utm_campaign=description), please use the support email for a faster reply.
65
66 == Frequently Asked Questions ==
67
68 = What does this plugin do? =
69
70 Have a look at the [Boxzilla demo site](https://demo.boxzillaplugin.com/#utm_source=wp-plugin-repo&utm_medium=boxzilla&utm_campaign=description).
71
72 = How to display a form in the box? =
73
74 Boxzilla will work with any plugin that offers shortcodes, like [MailChimp for WordPress](https://wordpress.org/plugins/mailchimp-for-wp/).
75
76 = Can I have a box open after clicking a certain link or button? =
77
78 Sure, by linking to the box element.
79
80 *Example (box ID is 94 in this example)*
81 `
82 <a href="#boxzilla-94">Open Box</a>
83 `
84
85 = Can I have a box to open right after opening a page? =
86
87 Sure, just include `boxzilla-` followed by the box ID in the URL.
88
89 *Example (box ID is 94 in this example)*
90 `
91 http://your-wordpress-site.com/some-page/#boxzilla-94
92 `
93
94 = Can I customize the appearance of a box =
95
96 Boxzilla comes with a simple interface for customizing most box colors & borders. You can apply your own CSS by utilizing any of the following element selectors.
97
98 `
99 .boxzilla { } /* all boxes */
100 .boxzilla-5 { } /* box with ID 5 */
101 `
102
103 = I want to disable auto-paragraphs in the box content =
104
105 All default WordPress filters are added to the `stb_content` filter hook. If you want to remove any of them, add the respectable line to your theme its `functions.php` file.
106
107 `
108 remove_filter( 'boxzilla_box_content', 'wptexturize') ;
109 remove_filter( 'boxzilla_box_content', 'convert_smilies' );
110 remove_filter( 'boxzilla_box_content', 'convert_chars' );
111 remove_filter( 'boxzilla_box_content', 'wpautop' );
112 remove_filter( 'boxzilla_box_content', 'do_shortcode' );
113 remove_filter( 'boxzilla_box_content', 'shortcode_unautop' );
114 `
115
116 = I want to make it impossible to close a box =
117 `
118 add_filter( 'boxzilla_box_options', function( $opts, $box ) {
119 $opts['closable'] = false;
120 return $opts;
121 }, 10, 2 );
122 `
123
124 == Installation ==
125
126 = Installing the plugin =
127
128 1. In your WordPress admin panel, go to *Plugins > New Plugin*, search for *Boxzilla* and click "Install now"
129 1. Alternatively, download the plugin and upload the contents of `boxzilla.zip` to your plugins directory, which usually is `/wp-content/plugins/`.
130 1. Activate the plugin.
131
132 = Creating a Boxzilla box =
133
134 1. Go to *Boxzilla > Add New*
135 1. Add some content to the box
136 1. (Optional) customize the appearance of the box by changing the *Appearance Settings*
137
138 = Additional Customization =
139
140 Have a look at the [frequently asked questions](https://wordpress.org/plugins/boxzilla/faq/) section for some examples of additional customization.
141
142 == Screenshots ==
143
144 1. A scroll triggered box with a newsletter sign-up form.
145 2. Another scroll triggered box, this time with social media sharing options.
146 3. A differently styled social triggered box.
147 4. Configuring and customizing your boxes is easy.
148
149 == Changelog ==
150
151
152 #### 3.1 - July 19, 2016
153
154 **Improvements**
155
156 - Completely removed jQuery dependency, resulting in better performance & smoother animations.
157 - Completely removed CSS file dependency.
158 - Box position is now visually hinted in box settings.
159 - Event binding improvements for [Exit Intent detection](https://boxzillaplugin.com/add-ons/exit-intent/).
160
161 **Additions**
162
163 - You can now set a cookie after the box is triggered, to prevent consecutively showing the box if a visitor does not explicitly dismiss it.
164
165
166 #### 3.0.3 - July 5, 2016
167
168 **Improvements**
169
170 - Add `id` attribute to box element.
171 - Automatically fix links in box content that use HTTP when HTTPS is needed.
172 - Restore global jQuery object after running user scripts, to failsafe errors.
173
174 **Additions**
175
176 - When using [MailChimp for WordPress](https://wordpress.org/plugins/mailchimp-for-wp/) without AJAX, the box will now automatically re-open after reloading the page.
177
178
179 #### 3.0.2 - June 21, 2016
180
181 **Fixes**
182
183 - Box condition "is post" was not working with an empty value.
184
185 **Improvements**
186
187 - Prevent PHP notice when saving box without changing box rules.
188
189 **Additions**
190
191 - Added French translation files, thanks to Benoit Mercusot.
192
193
194 #### 3.0.1 - May 23, 2016
195
196 **Improvements**
197
198 - You can now use `<script>` tags directly in box content (again).
199
200 **Additions**
201
202 - Add "post tag is / is not" loading condition.
203 - Plugin will now show a notice to deactivate old Scroll Triggered Boxes plugin.
204 - Internal changes to dependency container for use in add-on plugins.
205 - Add-on: [Boxzilla Pageviews Trigger](https://boxzillaplugin.com/add-ons/pageviews/).
206 - Add-on: [Boxzilla WooCommerce](https://boxzillaplugin.com/add-ons/woocommerce/)
207
208
209 #### 3.0 - May 11, 2016
210
211 Initial release of [Boxzilla](https://boxzillaplugin.com/), formerly known as [Scroll Triggered Boxes](https://wordpress.org/plugins/scroll-triggered-boxes/).
212
213 If you're upgrading from the old plugin, please check [updating to Boxzilla from Scroll Triggered Boxes](https://kb.boxzillaplugin.com/updating-from-scroll-triggered-boxes/) for a list of changes you should be aware of.
214
215
216 == Upgrade Notice ==
217
218 = 2.1 =
219 Added autocomplete to box filters & minor bux fixes for filter rules.
220