Version Description
- 2018-02-10
- Small CSS update for login form.
- Small CSS update for .gb-entry.
- Small CSS update for Twenty Fifteen.
- Update strings for add-on 1.0.7.
Download this release
Release Info
Developer | mpol |
Plugin | Gwolle Guestbook |
Version | 2.3.10 |
Comparing to | |
See all releases |
Code changes from version 2.3.9 to 2.3.10
- add-on/gb-add-on.php +2 -0
- frontend/css/gwolle-gb-frontend.css +4 -2
- gwolle-gb.php +4 -2
- readme.txt +8 -1
add-on/gb-add-on.php
CHANGED
@@ -141,6 +141,8 @@ function gwolle_gb_addon_translation_strings() {
|
|
141 |
esc_html_e('Sharing Services', 'gwolle-gb');
|
142 |
/* translators: Commercial Add-On */
|
143 |
esc_html_e('Select the Social Media services you want enabled for sharing.', 'gwolle-gb');
|
|
|
|
|
144 |
|
145 |
// function gwolle_gb_addon_page_settingstab_starrating() {
|
146 |
/* translators: Commercial Add-On */
|
141 |
esc_html_e('Sharing Services', 'gwolle-gb');
|
142 |
/* translators: Commercial Add-On */
|
143 |
esc_html_e('Select the Social Media services you want enabled for sharing.', 'gwolle-gb');
|
144 |
+
/* translators: Commercial Add-On. Location of the display. */
|
145 |
+
esc_html_e('Location for display', 'gwolle-gb');
|
146 |
|
147 |
// function gwolle_gb_addon_page_settingstab_starrating() {
|
148 |
/* translators: Commercial Add-On */
|
frontend/css/gwolle-gb-frontend.css
CHANGED
@@ -42,7 +42,8 @@
|
|
42 |
/* Overwrite shizzle from fancy themes */
|
43 |
body .gwolle_gb_content a,
|
44 |
body .gwolle-gb-content a {
|
45 |
-
box-shadow: none !important; /* Fuck Twenty Sixteen and Twenty Seventeen */
|
|
|
46 |
}
|
47 |
|
48 |
/* Submit AJAX icon */
|
@@ -93,7 +94,7 @@ body .gwolle-gb-content a {
|
|
93 |
#gwolle_gb .label {
|
94 |
width: 30%;
|
95 |
}
|
96 |
-
#gwolle_gb .input {
|
97 |
width: 40%;
|
98 |
border: 0px;
|
99 |
}
|
@@ -180,6 +181,7 @@ body .gwolle-gb-content a {
|
|
180 |
border-top: 1px #ddd solid;
|
181 |
padding: 10px 0;
|
182 |
margin: 0;
|
|
|
183 |
}
|
184 |
#gwolle_gb .gwolle-gb-first {
|
185 |
border-width: 0px;
|
42 |
/* Overwrite shizzle from fancy themes */
|
43 |
body .gwolle_gb_content a,
|
44 |
body .gwolle-gb-content a {
|
45 |
+
box-shadow: none !important; /* Fuck Twenty Fifteen, Twenty Sixteen and Twenty Seventeen */
|
46 |
+
border: 0;
|
47 |
}
|
48 |
|
49 |
/* Submit AJAX icon */
|
94 |
#gwolle_gb .label {
|
95 |
width: 30%;
|
96 |
}
|
97 |
+
#gwolle_gb div.input {
|
98 |
width: 40%;
|
99 |
border: 0px;
|
100 |
}
|
181 |
border-top: 1px #ddd solid;
|
182 |
padding: 10px 0;
|
183 |
margin: 0;
|
184 |
+
clear: left;
|
185 |
}
|
186 |
#gwolle_gb .gwolle-gb-first {
|
187 |
border-width: 0px;
|
gwolle-gb.php
CHANGED
@@ -3,7 +3,7 @@
|
|
3 |
Plugin Name: Gwolle Guestbook
|
4 |
Plugin URI: http://zenoweb.nl
|
5 |
Description: Gwolle Guestbook is not just another guestbook for WordPress. The goal is to provide an easy and slim way to integrate a guestbook into your WordPress powered site. Don't use your 'comment' section the wrong way - install Gwolle Guestbook and have a real guestbook.
|
6 |
-
Version: 2.3.
|
7 |
Author: Marcel Pol
|
8 |
Author URI: http://zenoweb.nl
|
9 |
License: GPLv2 or later
|
@@ -32,7 +32,7 @@ Domain Path: /lang/
|
|
32 |
|
33 |
|
34 |
// Plugin Version
|
35 |
-
define('GWOLLE_GB_VER', '2.3.
|
36 |
|
37 |
|
38 |
/*
|
@@ -52,6 +52,8 @@ define('GWOLLE_GB_VER', '2.3.9');
|
|
52 |
* - Add Filter for get_entry_count SQL, like get_entries.
|
53 |
* - Add filters similar to pre_get_posts.
|
54 |
* - Add datetime WHERE clause in get_functions? Support filter for the function parameters inside the function?
|
|
|
|
|
55 |
*
|
56 |
* 2.4.0:
|
57 |
* - Add proper docblocks to filters in the code.
|
3 |
Plugin Name: Gwolle Guestbook
|
4 |
Plugin URI: http://zenoweb.nl
|
5 |
Description: Gwolle Guestbook is not just another guestbook for WordPress. The goal is to provide an easy and slim way to integrate a guestbook into your WordPress powered site. Don't use your 'comment' section the wrong way - install Gwolle Guestbook and have a real guestbook.
|
6 |
+
Version: 2.3.10
|
7 |
Author: Marcel Pol
|
8 |
Author URI: http://zenoweb.nl
|
9 |
License: GPLv2 or later
|
32 |
|
33 |
|
34 |
// Plugin Version
|
35 |
+
define('GWOLLE_GB_VER', '2.3.10');
|
36 |
|
37 |
|
38 |
/*
|
52 |
* - Add Filter for get_entry_count SQL, like get_entries.
|
53 |
* - Add filters similar to pre_get_posts.
|
54 |
* - Add datetime WHERE clause in get_functions? Support filter for the function parameters inside the function?
|
55 |
+
* - Think about a cancel button for the form:
|
56 |
+
* https://wordpress.org/support/topic/missing-cancel-button-in-new-entry-from/
|
57 |
*
|
58 |
* 2.4.0:
|
59 |
* - Add proper docblocks to filters in the code.
|
readme.txt
CHANGED
@@ -3,7 +3,7 @@ Contributors: Gwolle, mpol
|
|
3 |
Tags: guestbook, guest book, livre d'or, Gästebuch, libro de visitas
|
4 |
Requires at least: 3.7
|
5 |
Tested up to: 4.9
|
6 |
-
Stable tag: 2.3.
|
7 |
License: GPLv2 or later
|
8 |
|
9 |
Gwolle Guestbook is the WordPress guestbook you've just been looking for. Beautiful and easy.
|
@@ -396,6 +396,13 @@ But if you don't use standard comments, you can just as easily use the comment s
|
|
396 |
|
397 |
== Changelog ==
|
398 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
399 |
= 2.3.9 =
|
400 |
* 2018-01-26
|
401 |
* Support book_id for export and import (thanks therab).
|
3 |
Tags: guestbook, guest book, livre d'or, Gästebuch, libro de visitas
|
4 |
Requires at least: 3.7
|
5 |
Tested up to: 4.9
|
6 |
+
Stable tag: 2.3.10
|
7 |
License: GPLv2 or later
|
8 |
|
9 |
Gwolle Guestbook is the WordPress guestbook you've just been looking for. Beautiful and easy.
|
396 |
|
397 |
== Changelog ==
|
398 |
|
399 |
+
= 2.3.10 =
|
400 |
+
* 2018-02-10
|
401 |
+
* Small CSS update for login form.
|
402 |
+
* Small CSS update for .gb-entry.
|
403 |
+
* Small CSS update for Twenty Fifteen.
|
404 |
+
* Update strings for add-on 1.0.7.
|
405 |
+
|
406 |
= 2.3.9 =
|
407 |
* 2018-01-26
|
408 |
* Support book_id for export and import (thanks therab).
|