このプラグインは WordPress の最新3回のメジャーリリースに対してテストされていません。もうメンテナンスやサポートがされていないかもしれず、最新バージョンの WordPress で使用した場合は互換性の問題が発生する可能性があります。

SearchWP Modal Search Form

説明

Use SearchWP Modal Search Form to easily integrate an accessible, lightweight modal search form into your WordPress website! SearchWP Modal Search Form does not require SearchWP but it will utilize SearchWP if it’s installed and activated! 👍

Beyond the information made available in this README there is full documentation available as well.

What makes it different from other modals?

The philosophy behind SearchWP Modal Search Form is to make it easy to implement accessible and lightweight modal search forms but perhaps even more important make it a great developer (and user) experience.

SearchWP Modal Search Form directly integrates with WordPress in the way you use it, and the default modal form theme builds upon the styles put in place by your active theme, making the overhead as small as possible. There’s a full template loader built in as well, allowing you to fully customize your SearchWP Modal Search Form with minimal hassle.

Check out the default template for an example of how easy it is to customize 🤓

Adding modal forms to your site

SearchWP Modal Search Form makes it easy to implement modal search forms anywhere in your WordPress website. The following methods are built in and available to you:

  1. As a Menu Item
  2. Using a Shortcode
  3. As a Gutenberg Block
  4. Within your template(s) programmatically

Template Customization

SearchWP Modal Search Form integrates a proper template loader for displaying search forms in any number of templates, allowing you to fully customize what the modal looks like per template.

The most straightforward way to create a custom template is as follows:

  1. Create a folder named searchwp-modal-form within your theme
  2. Create a file within that folder named template.php (or any name ending in .php)
  3. Copy the contents of the default template into that file
  4. Customize the SearchWP Modal Form Name value in the header comment block
  5. Make any other customizations you\’d like to the markup/style, paying attention to the documentation

There are (jQuery) events that fire when modals are opened and closed. jQuery is not a dependency, but if jQuery is loaded the events will fire.

// Add a callback when a modal is opened:
jQuery('body').on('searchwpModalOnShow', function(e) {
    // Focus an input in the template.
    e.el.find('input').focus();
});

// Add a callback when a modal is closed:
jQuery('body').on('searchwpModalOnClose', function(e) {
    alert('Modal closed!');
});

Please review the full template documentation for more detailed information.

スクリーンショット

  • SearchWP Modal Search Form adapts to your theme
  • SearchWP Modal Search Form adapts to your theme
  • SearchWP Modal Search Form adapts to your theme
  • Insert modal triggers directly within your Menus
  • Insert modal triggers as Gutenberg Blocks

ブロック

このプラグインは1個のブロックを提供します。

  • Modal Form

インストール

SearchWP Modal Search Form is installed like all WordPress plugins. You can install this plugin using the Plugins > Add New entry in the Admin Menu when logged into your WordPress Dashboard and searching for SearchWP Modal Search Form.

Alternatively, you can manually install the plugin as well:

  1. Download the plugin and extract the files
  2. Upload the searchwp-modal-form folder to your ~/wp-content/plugins/ directory
  3. Activate the plugin through the \’Plugins\’ menu in WordPress
  4. Add one or more modal form(s) using the available methods

FAQ

Documentation?

Of course! View full documentation

How do I add a modal form to my website?

There are multiple ways to add modal form triggers to your site. You can add as many as you’d like wherever you’d like:

  1. As a Menu Item
  2. Using a Shortcode
  3. As a Gutenberg Block
  4. Within your template(s) programmatically

How do I customize the modal?

Please review the full template documentation for detailed information.

評価

2023年7月6日
Very helpful support, thanks for everything that you do!
2022年10月18日
I have used this plugin on all my websites and it works great. Simple install and set-up. I even have it on the top right corner of my website and as a menu item so mobile users can easily access it. I highly recommend this plugin. Great job programmer's!
6件のレビューをすべて表示

貢献者と開発者

SearchWP Modal Search Form はオープンソースソフトウェアです。以下の人々がこのプラグインに貢献しています。

貢献者

“SearchWP Modal Search Form” は1ロケールに翻訳されています。 翻訳者のみなさん、翻訳へのご協力ありがとうございます。

“SearchWP Modal Search Form” をあなたの言語に翻訳しましょう。

開発に興味がありますか ?

コードを閲覧するか、SVN リポジトリをチェックするか、開発ログRSS で購読してみてください。

変更履歴

0.5.3
– Fixes “Call to undefined method” error appearing on some themes.

0.5.2
– Fixes deprecation notices on PHP 8.2.
– Improves default template HTML tags semantics.
– Fixes the error on adding a Modal Form Gutenberg block to the page.
– Changes settings page appearance and menu structure to work seamlessly with a current version of SearchWP.

0.5.1
– Adds In-plugin notification system to get the latest updates from SearchWP.

0.5.0
– Adds new Settings admin page to control the behavior of the plugin easier.

0.4.1
– PHP 8 compatibility

0.4.0
– Fixes issue with character encoding in some cases
– Updates dependencies
– Updates bundler and associated NPM commands

0.3.4
– Fixes Error when using SearchWP 4

0.3.3
– Fixes Error in some cases introduced in 0.3.2

0.3.2
– SearchWP 4.0 compatibility (when it becomes available)
– Fixes issue with HTML output of Menu items

0.3.1
– Removes unused stylesheet enqueue
– Updates dependencies

0.3
– Updates dependencies
– Adds jQuery events when modals open and close

0.2.3
– Fixes regression introduced in 0.2.2 that prevented search with Enter key

0.2.2
– Fixes an issue with modal trigger not working in some cases

0.2.1
– Fixes $this context Fatal error

0.2
– Adds support for class argument
– Fixes issue with button type

0.1
Initial release