Skip to content

Commit 724d8a3

Browse files
committed
EFAQ 6.1.3 released
6.1.3 released with: * Redirection bug fixed for updating the plugin from plugins page. * Left-over CSS classes and PHP code removed.
1 parent 672ea39 commit 724d8a3

File tree

13 files changed

+18
-132
lines changed

13 files changed

+18
-132
lines changed

Controllers/Front/ShortcodeController.php

Lines changed: 0 additions & 21 deletions
Original file line numberDiff line numberDiff line change
@@ -8,28 +8,7 @@
88
* @license MIT License. See Legal/License.txt for details.
99
*/
1010
namespace ExpandableFAQ\Controllers\Front;
11-
use ExpandableFAQ\Controllers\Front\Shortcodes\AddEditRespondentController;
12-
use ExpandableFAQ\Controllers\Front\Shortcodes\AddEditReviewController;
13-
use ExpandableFAQ\Controllers\Front\Shortcodes\BenefitsController;
14-
use ExpandableFAQ\Controllers\Front\Shortcodes\OrganizationContactController;
15-
use ExpandableFAQ\Controllers\Front\Shortcodes\OrganizationController;
16-
use ExpandableFAQ\Controllers\Front\Shortcodes\ContactController;
17-
use ExpandableFAQ\Controllers\Front\Shortcodes\ChangeOrderController;
18-
use ExpandableFAQ\Controllers\Front\Shortcodes\DealsController;
1911
use ExpandableFAQ\Controllers\Front\Shortcodes\FAQsController;
20-
use ExpandableFAQ\Controllers\Front\Shortcodes\ItemsAvailabilityController;
21-
use ExpandableFAQ\Controllers\Front\Shortcodes\DecisionMakersController;
22-
use ExpandableFAQ\Controllers\Front\Shortcodes\ManufacturersController;
23-
use ExpandableFAQ\Controllers\Front\Shortcodes\ReviewsController;
24-
use ExpandableFAQ\Controllers\Front\Shortcodes\DecisionMakerController;
25-
use ExpandableFAQ\Controllers\Front\Shortcodes\ExtrasAvailabilityController;
26-
use ExpandableFAQ\Controllers\Front\Shortcodes\ExtrasPricesController;
27-
use ExpandableFAQ\Controllers\Front\Shortcodes\EntriesAvailabilityController;
28-
use ExpandableFAQ\Controllers\Front\Shortcodes\EntriesController;
29-
use ExpandableFAQ\Controllers\Front\Shortcodes\EntriesPriceController;
30-
use ExpandableFAQ\Controllers\Front\Shortcodes\SearchController;
31-
use ExpandableFAQ\Controllers\Front\Shortcodes\EntryController;
32-
use ExpandableFAQ\Controllers\Front\Shortcodes\ServicesController;
3312
use ExpandableFAQ\Models\Configuration\ConfigurationInterface;
3413
use ExpandableFAQ\Models\Language\LanguageInterface;
3514
use ExpandableFAQ\Models\Validation\StaticValidator;

ExpandableFAQ.php

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
* Plugin Name: Expandable FAQ
44
* Plugin URI: https://wordpress.org/plugins/expandable-faq/
55
* Description: It’s a high quality, native and responsive WordPress plugin to create and view F.A.Q.'s
6-
* Version: 6.1.2
6+
* Version: 6.1.3
77
* Author: KestutisIT
88
* Author URI: https://profiles.wordpress.org/KestutisIT
99
* Text Domain: expandable-faq
@@ -43,7 +43,7 @@ final class ExpandableFAQ
4343
const REQUIRED_PHP_VERSION = '5.6.0';
4444
const REQUIRED_WP_VERSION = 4.6;
4545
const OLDEST_COMPATIBLE_PLUGIN_SEMVER = '6.0.0';
46-
const PLUGIN_SEMVER = '6.1.2';
46+
const PLUGIN_SEMVER = '6.1.3';
4747

4848
// Settings
4949
/**

Models/Status/NetworkStatus.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -75,7 +75,7 @@ public function getAdditionalActionLinks()
7575
if($allBlogsWithPluginDataUpToDate === FALSE && $this->canUpdatePluginDataInSomeBlog())
7676
{
7777
// Show the network-update link, but only if it is allowed to update from current version
78-
$networkUpdatePageURL = network_admin_url('admin.php?page='.$this->conf->getPluginURL_Prefix().'network-status&update=1');
78+
$networkUpdatePageURL = network_admin_url('admin.php?page='.$this->conf->getPluginURL_Prefix().'network-status&update=1&noheader=true');
7979
$retLinks[] = '<a href="'.esc_url($networkUpdatePageURL).'">'.$this->lang->escHTML('LANG_UPDATE_TEXT').'</a>';
8080
}
8181

Models/Status/SingleStatus.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -90,7 +90,7 @@ public function getActionLinks()
9090
if($pluginDataUpToDate === FALSE && $this->canUpdatePluginDataInDatabase())
9191
{
9292
// Show update link, but only if the plugin is not network enabled and is allowed to update from current version
93-
$updatePageURL = admin_url('admin.php?page='.$this->conf->getPluginURL_Prefix().'single-status&update=1');
93+
$updatePageURL = admin_url('admin.php?page='.$this->conf->getPluginURL_Prefix().'single-status&update=1&noheader=true');
9494
$retLinks[] = '<a href="'.esc_url($updatePageURL).'">'.$this->lang->escHTML('LANG_UPDATE_TEXT').'</a>';
9595
}
9696
}

Models/Update/Patches61Z.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ final class Patches61Z extends AbstractDatabase implements StackInterface, Datab
1717
{
1818
const CURRENT_MAJOR = 6; // Positive integer [X]
1919
const CURRENT_MINOR = 1; // Positive integer [Y]
20-
const LATEST_PATCH = 2; // Positive integer [Z]
20+
const LATEST_PATCH = 3; // Positive integer [Z]
2121
const LATEST_RELEASE = ''; // String
2222
const LATEST_BUILD_METADATA = ''; // String
2323
const PLUGIN_PREFIX = "expandable_faq_";

README.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -108,6 +108,10 @@ to your website's FAQ page and make automatically expand specific FAQ with a pag
108108

109109
# Changelog
110110

111+
= 6.1.3 =
112+
* Redirection bug fixed for updating the plugin from plugins page.
113+
* Left-over CSS classes and PHP code removed.
114+
111115
= 6.1.2 =
112116
* Fixed wrong admin JS filename issue.
113117
* Improved variable naming to `FAQ_`, where was still missing.

UI/Assets/Front/CSS/Compatibility/Avada.css

Lines changed: 0 additions & 14 deletions
Original file line numberDiff line numberDiff line change
@@ -5,18 +5,4 @@
55
*/
66
.single-navigation {
77
display: none;
8-
}
9-
/*Single item page - item block*/
10-
/*NOTE: Extension-Specific CSS !*/
11-
#wrapper #main div.type-car_rental_item {
12-
/*padding-top: 76px;*/
13-
padding-top: 19px;
14-
margin-bottom: 19px;
15-
}
16-
/*Single location page - location block*/
17-
/*NOTE: Extension-Specific CSS !*/
18-
#wrapper #main div.type-car_rental_location {
19-
/*padding-top: 76px;*/
20-
padding-top: 19px;
21-
margin-bottom: 19px;
228
}

UI/Assets/Front/CSS/Compatibility/betheme.css

Lines changed: 1 addition & 13 deletions
Original file line numberDiff line numberDiff line change
@@ -2,16 +2,4 @@
22
* Additional plugin styles for compatibility with BeTheme
33
* Theme Name: BeTheme
44
* License: Licensed under the AGPL license.
5-
*/
6-
/*Single item page - item block*/
7-
/*NOTE: Extension-Specific CSS !*/
8-
#wrapper #main div.type-car_rental_item {
9-
padding-top: 19px;
10-
margin-bottom: 19px;
11-
}
12-
/*Single location page - location block*/
13-
/*NOTE: Extension-Specific CSS !*/
14-
#wrapper #main div.type-car_rental_location {
15-
padding-top: 19px;
16-
margin-bottom: 19px;
17-
}
5+
*/

UI/Assets/Front/CSS/Compatibility/twentysixteen.css

Lines changed: 1 addition & 13 deletions
Original file line numberDiff line numberDiff line change
@@ -2,16 +2,4 @@
22
* Additional plugin styles for compatibility with Twenty Sixteen
33
* Theme Name: Twenty Sixteen
44
* License: Licensed under the AGPL license.
5-
*/
6-
/*Single item page - item block*/
7-
/*NOTE: Extension-Specific CSS !*/
8-
#wrapper #main div.type-car_rental_item {
9-
padding-top: 19px;
10-
margin-bottom: 19px;
11-
}
12-
/*Single location page - location block*/
13-
/*NOTE: Extension-Specific CSS !*/
14-
#wrapper #main div.type-car_rental_location {
15-
padding-top: 19px;
16-
margin-bottom: 19px;
17-
}
5+
*/

UI/Assets/Front/CSS/Sitewide/CrimsonRed.css

Lines changed: 1 addition & 22 deletions
Original file line numberDiff line numberDiff line change
@@ -2,25 +2,4 @@
22
* Plugin Global Stylesheet (Accessible in all site pages)
33
* Style Name: Crimson Red
44
* License: Licensed under the AGPL license.
5-
*/
6-
.car_rental_page {
7-
margin-top: 45px;
8-
}
9-
/* Single item page heading title - item name */
10-
#wrapper #main div.type-car_rental_item > h2.entry-title,
11-
.car_rental_item > h2.entry-title {
12-
margin-top: 10px;
13-
font-size: 26px;
14-
font-weight: bold;
15-
text-transform: uppercase;
16-
color: #747474;
17-
}
18-
/* Single location page heading title - location name */
19-
#wrapper #main div.type-car_rental_location > h2.entry-title,
20-
.car_rental_location > h2.entry-title {
21-
margin-top: 10px;
22-
font-size: 26px;
23-
font-weight: bold;
24-
text-transform: uppercase;
25-
color: #747474;
26-
}
5+
*/

0 commit comments

Comments
 (0)