Version Description
- fix show more link on network sites
Download this release
Release Info
Developer | wp-buy |
Plugin | SEO Redirection Plugin |
Version | 8.7 |
Comparing to | |
See all releases |
Code changes from version 8.6 to 8.7
- readme.txt +4 -2
- seo-redirection.php +4 -2
readme.txt
CHANGED
@@ -3,7 +3,7 @@ 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.
|
7 |
|
8 |
SEO Redirection is a powerful redirect manager to manage 301 redirects without requiring knowledge of Apache .htaccess files.
|
9 |
|
@@ -75,10 +75,12 @@ Yes, here is the plugin full knowledge base http://www.clogica.com/kb/
|
|
75 |
|
76 |
== Changelog ==
|
77 |
|
|
|
|
|
|
|
78 |
= 8.6 =
|
79 |
* CSS fixing
|
80 |
|
81 |
-
|
82 |
= 8.5 =
|
83 |
* Security bug fixing
|
84 |
|
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.7
|
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.7 =
|
79 |
+
* fix show more link on network sites
|
80 |
+
|
81 |
= 8.6 =
|
82 |
* CSS fixing
|
83 |
|
|
|
84 |
= 8.5 =
|
85 |
* Security bug fixing
|
86 |
|
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.
|
8 |
Author URI: https://www.wp-buy.com
|
9 |
Text Domain: seo-redirection
|
10 |
*/
|
@@ -46,7 +46,9 @@ register_uninstall_hook(__FILE__, 'WPSR_uninstall');
|
|
46 |
if(!function_exists("WPSR__filter_action_links")){
|
47 |
function WPSR__filter_action_links( $links ) {
|
48 |
$links['settings'] = sprintf('<a href="%s">Settings</a>', admin_url( 'options-general.php?page=seo-redirection.php' ));
|
49 |
-
$
|
|
|
|
|
50 |
return $links;
|
51 |
}
|
52 |
add_filter( 'plugin_action_links_'.plugin_basename(__FILE__), 'WPSR__filter_action_links', 10, 1 );
|
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.7
|
8 |
Author URI: https://www.wp-buy.com
|
9 |
Text Domain: seo-redirection
|
10 |
*/
|
46 |
if(!function_exists("WPSR__filter_action_links")){
|
47 |
function WPSR__filter_action_links( $links ) {
|
48 |
$links['settings'] = sprintf('<a href="%s">Settings</a>', admin_url( 'options-general.php?page=seo-redirection.php' ));
|
49 |
+
$network_dir_append = "";
|
50 |
+
If (is_multisite()) $network_dir_append = "network/";
|
51 |
+
$links['MorePlugins'] = sprintf('<a href="%s"><b style="color:#f18500">More Plugins</b></a>', admin_url( $network_dir_append . 'plugin-install.php?s=wp-buy&tab=search&type=author' ));
|
52 |
return $links;
|
53 |
}
|
54 |
add_filter( 'plugin_action_links_'.plugin_basename(__FILE__), 'WPSR__filter_action_links', 10, 1 );
|