SEO Redirection Plugin - Version 8.6

Version Description

  • CSS fixing
Download this release

Release Info

Developer osamaesh
Plugin Icon 128x128 SEO Redirection Plugin
Version 8.6
Comparing to
See all releases

Code changes from version 8.5 to 8.6

Files changed (3) hide show
  1. common/custom.css +0 -166
  2. readme.txt +6 -2
  3. seo-redirection.php +2 -1
common/custom.css CHANGED
@@ -1,169 +1,3 @@
1
- @import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;500;600&display=swap');
2
- ul.tabs{
3
- display: flex;
4
- align-items: center;
5
- height: 55px;
6
- font-family: 'Poppins', sans-serif;
7
- background-color: #6c79e025 !important;
8
- }
9
- ul.tabs li{
10
- border:none;
11
- background: transparent !important;
12
- margin: 0;
13
- position: relative;
14
- border-radius: 0 !important;
15
- overflow:inherit;
16
- height: 55px;
17
- line-height: 55px;
18
- transition: .3s all;
19
- }
20
-
21
- ul.tabs li a{
22
- display: inline-block;
23
- border:none;
24
- color: #666;
25
- transition: .3s all;
26
- text-align: center;
27
- height:55px;
28
- line-height: 55px;
29
- font-size: 14px;
30
- padding: 1px 28px 1px 40px;
31
- }
32
- ul.tabs li:nth-child(1):before ,ul.tabs li:nth-child(2):before ,ul.tabs li:nth-child(3):before ,ul.tabs li:nth-child(4):before , ul.tabs li:nth-child(5):before,ul.tabs li:nth-child(6):before {
33
- font-size: 24px;
34
- position: absolute;
35
- left: 10px;
36
- color: #6C7AE0 ;
37
- }
38
- ul.tabs li:nth-child(2):before {
39
- content: "✎";
40
- }
41
- ul.tabs li:nth-child(1)::before{
42
- content: "✔";
43
- }
44
- ul.tabs li:nth-child(3)::before{
45
- content: "✉";
46
- }
47
- ul.tabs li:nth-child(4)::before{
48
- font-size: 23px;
49
- content: "✘";
50
- }
51
- ul.tabs li:nth-child(5)::before{
52
- content: "☰";
53
- }
54
- ul.tabs li:nth-child(6)::before{
55
- content: "✇";
56
- }
57
- html ul.tabs li.active{
58
- border-top: 3px solid #6C7AE0;
59
- height: 57px;
60
- }
61
- html ul.tabs li:nth-of-type(1).active{
62
- border-left: 1px solid #ddd;
63
- }
64
- ul.tabs li.active a {
65
- color: #6C7AE0 ;
66
- background: #fff !important;
67
- }
68
- html ul.tabs li a:focus{
69
- box-shadow: none !important;
70
- }
71
- html ul.tabs li.active a:hover{
72
- border-bottom: none !important;
73
- }
74
- .tabContainer{
75
- border: 1px solid #ddd;
76
- border-top: none !important;
77
- }
78
-
79
- /* btn */
80
- .btn-custom{
81
- padding: 1px 10px !important;
82
- border-radius: 2px !important;
83
- border: none !important;
84
- color: #fff !important;
85
- transition: .3s all;
86
- font-family: 'Poppins', sans-serif;
87
- }
88
- .btn-add{
89
- background-color: #00C851 !important;
90
- box-shadow: #00c8507e 0px 10px 15px -10px ;
91
- }
92
- .btn-search{
93
- background-color: #4285F4 !important;
94
- box-shadow: #4286f48a 0px 10px 15px -10px ;
95
- }
96
- .btn-showAll{
97
- background-color: #212121 !important;
98
- box-shadow: #21212193 0px 10px 15px -10px ;
99
- }
100
- .btn-delete{
101
- background-color: #FF3547 !important;
102
- box-shadow: #ff35469f 0px 10px 15px -10px ;
103
- }
104
- .btn-custom:hover {
105
- transform: translateY(-2px);
106
- }
107
- .link_buttons a{
108
- margin: 0 2px auto !important;
109
- }
110
- .btn-right{
111
- display: flex ;
112
- align-items: flex-start;
113
- justify-content: flex-end;
114
- }
115
-
116
- .dashicons-admin-media{
117
- line-height: 2 !important;
118
- }
119
-
120
- /**** table ****/
121
- table.widefat {
122
- border: 1px solid #eee !important;
123
- box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px !important;
124
- border-radius: 5px !important;
125
- }
126
- .widefat tfoot tr td, .widefat tfoot tr th, .widefat thead tr td, .widefat thead tr th {
127
- background-color: #6C7AE0 !important;
128
- color: #fff !important;
129
- font-family: 'Poppins', sans-serif;
130
- padding: 12px !important;
131
- }
132
- .widefat td, .widefat th {
133
- padding: 12px ;
134
- transition: .3s all;
135
- }
136
- .widefat tr:hover{
137
- background-color: #6c79e025 !important;
138
- }
139
- .widefat tr{
140
- background-color: #fff !important;
141
- border-bottom: 1px solid #eee;
142
- }
143
- .cform tbody tr:nth-child(odd){
144
- background-color: transparent !important;
145
- }
146
- .pagination a{
147
- background: #212121;
148
- color: #fff;
149
- padding: 3px 20px;
150
- box-shadow: #21212193 0px 10px 20px -10px ;
151
- transition: .3s all;
152
- border-radius: 3px !important;
153
- }
154
- .pagination a:hover{
155
- background-color: #111111 !important;
156
- box-shadow: #21212193 0px 10px 20px -5px ;
157
- transform: translateY(-2px);
158
- }
159
- .Page_background_1 , .widefat td, .widefat th , .modal-title , #myform .cform select , .cform tbody td.label , h3 , td{
160
- font-family: 'Poppins', sans-serif;
161
- }
162
- .wp-core-ui select{
163
- border-radius: 5px !important;
164
- border-color: #c4ccd3 !important;
165
- }
166
-
167
  /* modal */
168
  .close{
169
  color:#212121 ;
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
  /* modal */
2
  .close{
3
  color:#212121 ;
readme.txt CHANGED
@@ -2,8 +2,8 @@
2
  Contributors: wp-buy, osama.esh
3
  Tags: post, admin, seo, pages, manage, 301, 404, soft 404, redirect, permalink, redirection, redirection, https, automatic redirection, htaccess, ssl, https redirection, ssl certificate, secure page, secure, force ssl, force https, seo redirection, post redirect, 404 to 301
4
  Requires at least: 4.1
5
- Tested up to: 5.9.1
6
- Stable tag: 8.5
7
 
8
  SEO Redirection is a powerful redirect manager to manage 301 redirects without requiring knowledge of Apache .htaccess files.
9
 
@@ -75,6 +75,10 @@ Yes, here is the plugin full knowledge base http://www.clogica.com/kb/
75
 
76
  == Changelog ==
77
 
 
 
 
 
78
  = 8.5 =
79
  * Security bug fixing
80
 
2
  Contributors: wp-buy, osama.esh
3
  Tags: post, admin, seo, pages, manage, 301, 404, soft 404, redirect, permalink, redirection, redirection, https, automatic redirection, htaccess, ssl, https redirection, ssl certificate, secure page, secure, force ssl, force https, seo redirection, post redirect, 404 to 301
4
  Requires at least: 4.1
5
+ Tested up to: 6.0
6
+ Stable tag: 8.6
7
 
8
  SEO Redirection is a powerful redirect manager to manage 301 redirects without requiring knowledge of Apache .htaccess files.
9
 
75
 
76
  == Changelog ==
77
 
78
+ = 8.6 =
79
+ * CSS fixing
80
+
81
+
82
  = 8.5 =
83
  * Security bug fixing
84
 
seo-redirection.php CHANGED
@@ -4,7 +4,7 @@ Plugin Name: SEO Redirection
4
  Plugin URI: https://www.wp-buy.com/product/seo-redirection-premium-wordpress-plugin/
5
  Description: By this plugin you can manage all your website redirection types easily.
6
  Author: wp-buy
7
- Version: 8.5
8
  Author URI: https://www.wp-buy.com
9
  Text Domain: seo-redirection
10
  */
@@ -1279,6 +1279,7 @@ function WPSR_after_plugin_row($plugin_file, $plugin_data, $status)
1279
 
1280
  if (get_option('nsr_upgrade_message') != 'yes') {
1281
  $class_name = $plugin_data['slug'];
 
1282
 
1283
  echo '<tr id="' . $class_name . '-plugin-update-tr" class="plugin-update-tr active">';
1284
  echo '<td colspan="6" class="plugin-update">';
4
  Plugin URI: https://www.wp-buy.com/product/seo-redirection-premium-wordpress-plugin/
5
  Description: By this plugin you can manage all your website redirection types easily.
6
  Author: wp-buy
7
+ Version: 8.6
8
  Author URI: https://www.wp-buy.com
9
  Text Domain: seo-redirection
10
  */
1279
 
1280
  if (get_option('nsr_upgrade_message') != 'yes') {
1281
  $class_name = $plugin_data['slug'];
1282
+ $class_name = isset($plugin_data['slug']) ? $plugin_data['slug'] : 'seo-redirection';
1283
 
1284
  echo '<tr id="' . $class_name . '-plugin-update-tr" class="plugin-update-tr active">';
1285
  echo '<td colspan="6" class="plugin-update">';