-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathreadme.txt
More file actions
76 lines (56 loc) · 2.62 KB
/
readme.txt
File metadata and controls
76 lines (56 loc) · 2.62 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
=== Smart-Navbar ===
Contributors: loudlever, heypublisher
Donate link: https://www.paypal.com/cgi-bin/webscr?cmd=_s-xclick&hosted_button_id=Y8SL68GN5J2PL
Tags: navigation, bookmark, favorite, loudlever, heypublisher
Requires at least: 4.0
Tested up to: 4.7.3
Stable tag: 0.2.0
License: GPLv2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Give readers the ability to favorite and bookmark POSTs with this simply styled navigation bar.
== Description ==
This plugin give you a simple way to allow your readers to bookmark or favorite the POSTs on your site. The plugin supports both logged in and unauthenticated visitors.
== Installation ==
**From your WordPress dashboard**
1. Visit 'Plugins > Add New'
2. Search for 'Smart-Navbar'
3. Activate Smart-Navbar from your Plugins page.
**From WordPress.org**
1. Download Smart-Navbar.
2. Upload the 'smart-navbar' directory to your '/wp-content/plugins/' directory, using your favorite method (ftp, sftp, scp, etc...)
3. Activate Smart-Navbar from your Plugins page.
**Styling the Plugin**
The text displayed in the Smart-Navbar is contained within the element
`#smart-navbar #smart-navbar-center H3`
You can change the text that displays before the author's name by adding something similar to your theme's style.css:
`
#smart-navbar #smart-navbar-center H3 .author:before {
content: '~ by ';
}
`
You can change the text that displays before the author's name by adding something similar to your theme's style.css:
`
#smart-navbar #smart-navbar-center H3 .categories:before {
content: ' posted in ';
}
`
== Screenshots ==
1. Simple bar automatically displays at the top of page on all POSTs as readers scroll down the page. When displayed, readers can favorite or bookmark the POSTs by simply clicking on the icon.
2. The page readers will see when they click on settings icon, allowing them to see all of the POSTs they have favorited or bookmarked.
== Changelog ==
= 0.2.0 =
* Added ability to toggle on/off display of author name and category in the nav bar.
* Added logic so nav bar does not display on archive pages (it now only displays on Posts and, if enabled, on Pages and Home page.)
* Moved the additional text that's displayed (like the "by" for the author and "posted in" for the categories) to a style that you can control. See the "Styling" section.
* Cleaned up some more of the code.
= 0.1.0 =
* Added ability to display smart-navbar on Pages and Home page.
* Cleaned up a bunch of the code.
= 0.0.4 =
* Fixed bug with enqueing of admin stylesheet
= 0.0.3 =
* Fixed bug with plugins_url() call
= 0.0.2 =
* Fixed bug with Settings link registration
= 0.0.1 =
* Plugin release.