Linux 软件免费装
Banner图

Scroll Triggered Boxes

开发者 Ibericode
DvanKooten
hchouhan
lapzor
更新时间 2016年5月11日 23:29
捐献地址: 去捐款
PHP版本: 3.8 及以上
WordPress版本: 4.5.2
版权: GPLv2 or later
版权网址: 版权信息

标签

newsletter social mailchimp social media call to action contact form 7 pop-up cta scroll triggered box mc4wp

下载

1.0.6 1.1 1.1.1 1.1.2 1.1.3 1.1.4 1.1.5 1.1.6 1.1.7 1.1.8 1.1.9 1.1.9.1 1.1.9.2 1.1.9.3 1.2 1.2.1 1.2.2 1.3 1.3.1 1.4 1.4.1 1.4.2 1.4.3 1.4.4 2.0 2.0.1 2.0.2 2.0.3 2.0.4 2.1 2.1.1 2.1.2 2.1.3 2.1.4 2.2 2.2.1 2.2.2 2.2.3

详情介绍:

Scroll Triggered Boxes Scroll Triggered Boxes 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.
This plugin is the predecessor of the Boxzilla Plugin, which you should use instead.
Features Read more about Scroll Triggered Boxes. Boxzilla In May 2016, this plugin was replaced by Boxzilla, which is also available on the WordPress.org plugin repository. Contributing and reporting bugs You can contribute to this plugin using GitHub: ibericode/scroll-triggered-boxes Support Please use the WordPress.org plugin support forums for community support where we try to help all users. If you think you've found a bug, please report it on GitHub.

安装:

This plugin has been replaced by Boxzilla. It is highly recommended you use that instead.

屏幕截图:

  • A scroll triggered box with a newsletter sign-up form.
  • Another scroll triggered box, this time with social media sharing options.
  • A differently styled social triggered box.
  • Configuring and customizing your boxes is easy.

常见问题:

Should I use this or Boxzilla?

We are no longer actively pushing out new features to this plugin, so it highly recommended you use the Boxzilla Plugin instead.

What does this plugin do?

Have a look at the Scroll Triggered Boxes demo site.

How to display a form in the box?

The plugin is battle-tested with the plugins below but will work with any plugin that uses shortcodes.

How to display sharing options in the box?

The plugin is tested with the plugins below but will work with any plugin that uses shortcodes.

How do I set more advanced rules for on which pages to show a box?

You can use conditional tags to set super-customized rules. Example: only show for posts in category 'cars' is_single() && in_category( 'cars' ) *Example: show everywhere except on pages with slug 'contact' and 'checkout' ! is_page( array( 'contact', 'checkout' ) )

Can I have a box to open after clicking a certain link or button?

Sure, just link to the box element. Example (box ID is 94 in this example) <a href="#stb-94">Open Box</a>

Can I have a box to open right after opening a page?

Sure, just include stb- followed by the box ID in the URL. Example (box ID is 94 in this example) http://your-wordpress-site.com/some-page/#stb-94

How to set more advanced styling rules

If you want more advanced styling, you can use CSS to further style the boxes. Every box gets its own unique #id as well as various CSS classes. .stb-{id} { } /* 1 particular box */ .stb { } /* all boxes */ .stb-close{ } /* the close button of the box */

I want to disable auto-paragraphs in the box content

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. remove_filter( 'stb_box_content', 'wptexturize') ; remove_filter( 'stb_box_content', 'convert_smilies' ); remove_filter( 'stb_box_content', 'convert_chars' ); remove_filter( 'stb_box_content', 'wpautop' ); remove_filter( 'stb_box_content', 'do_shortcode' ); remove_filter( 'stb_box_content', 'shortcode_unautop' );

I want to disable closing of the box

add_filter( 'stb_box_options', function( $opts ) { $opts['unclosable'] = true; return $opts; });

更新日志:

2.2.3 - May 11, 2016 Scroll Triggered Boxes is now Boxzilla! Because of the new name accompanied with some breaking changes, Boxzilla is released as a new plugin on the WordPress.org plugin repository. While it is highly recommend you start using Boxzilla, you can do so at your own pace. Whenever you're ready to make the switch, please read through the upgrade guide for a full list of changes. 2.2.2 - April 11, 2016 Fixes Improvements 2.2.1 - March 2, 2016 Fixes 2.2 - March 2, 2016 Fixes Additions Improvements 2.1.4 - November 19, 2015 Fixes 2.1.3 - October 19, 2015 Fixes Improvements 2.1.2 - October 15, 2015 Fixes Improvements Additions 2.1.1 - August 20, 2015 Fixes Additions 2.1 - July 8, 2015 Fixes Improvements Additions 2.0.4 - July 6, 2015 Fixes Improvements Additions 2.0.3 - July 2, 2015 Fixes 2.0.2 - May 18, 2015 Fixes Improvements 2.0.1 - May 12, 2015 Fixes 2.0 - May 12, 2015 Major revamp of the plugin, maintaining backwards compatibility. Important changes If you encounter a bug, please open an issue on GitHub. 1.4.4 - April 4, 2015 Additions 1.4.3 - January 29, 2015 Improvements 1.4.2 - December 4, 2014 Fixes 1.4.1 - December 3, 2014 Fixes Improvements 1.4 - November 17, 2014 Additions 1.3.1 - September 4, 2014 Bugfixes Improvements 1.3 - July 30, 2014 Improvements Additions 1.2.2 - July 7, 2014 Additions Improvements 1.2.1 - May 21, 2014 Additions Improvements 1.2 - April 18, 2014 2.1 Added autocomplete to box filters & minor bux fixes for filter rules.