Opis
As descibed in-depth on SitePoint a hello bar is a thin bar of content that slides into view once the user scrolls past a set point on a page.
The message content is up to you, but is ideal for advertising, product annoncements or other messages.
This plugin provides an admin interface to create multiple hello bar messages that can then be randomly displayed on user facing pages.
By setting weightings for each message you can determine how often each is displayed. On each page load a message is randomly selected
(respecting the weightings given). A random number is generated client side before fetching the message content to ensure it is compatible
with caching services such as W3 Total Cache.
All the required javascript and css is included in the plugin and can be set to enqueue via settings.
Alternatively you can roll your own. To help with that the core javascript has been extracted into the sp-hello-bar
npm module for you to include in your own scripts.
Snimke zaslona
Instalacija
- Upload the entire
/sp-random-hello-bar/
folder to the/wp-content/plugins/
directory. - Aktiviranje dodatka kroz izbornik ‘Dodaci’ u WordPressu.
- Navigate to the SP Random Hello Bar section of the Settings menu. At
example.com
this page would be found athttp://example.com/wp-admin/options-general.php?page=sp-random-hello-bar
. - Enable the hello bar to display in pages.
- Select which javascript, if any, you would like to enqueue.
- Select if you would like to enqueue basic css styles fror the hello bar.
- Enter content for one or more hello bars and set a weighting.
ČPP
- Can I use the javascript module without npm?
-
Sure. The plugin contains the SpHelloBar source as an ES6 Module at
src/js/SpHelloBar.js
and as a common.js module atlib/SpHelloBar.js
. - Does the javascript require other libraries such as jQuery to function?
-
The SpHelloBar module does not have any external dependencies but it would then be up to you to provide a throttle function and to load the hello bar content into the page (usually via ajax).
However the Basic and Basic with storage scripts assume that jquery and underscore have been enqueued. Those two libraries are enqueued in the default setup of WordPress unless you have dequeued them. - Can I customise the content?
-
Go for it. The basic scripts assume the default css class names are being used but the only one that is required is
.SpHelloBar
.
The javascript has been designed to be as flexible as possible so see the docs for all the options that can be overridden
when writing your own script. - How did you build something so wonderful?
-
I’m glad you asked. You can read about how it was put together on SitePoint.
Recenzije
Nema recenzija za ovaj dodatak.
Suradnici i Programeri
“SitePoint Random Hello Bar” je softver otvorenog koda. Sljedeće osobe su doprinijele ovom dodatku.
SuradniciPrevedite “SitePoint Random Hello Bar” na svoj jezik.
Zainteresirani ste za razvoj?
Pregledajte kôd, pogledajte SVN spremišteili se pretplatite na dnevnik razvoja od RSS.
Dnevnik promjena
0.0.1
- Submitted to WordPress for approval
0.0.2
- Added assets
1.0.0
- Ready for use