Version Description
- Maintenance Update.
Download this release
Release Info
Developer | VelvetBlues.com |
Plugin | Velvet Blues Update URLs |
Version | 3.2.7 |
Comparing to | |
See all releases |
Code changes from version 3.2.6 to 3.2.7
- readme.txt +14 -4
- velvet-blues-update-urls.php +26 -12
readme.txt
CHANGED
@@ -1,10 +1,10 @@
|
|
1 |
=== Velvet Blues Update URLs ===
|
2 |
-
Contributors:
|
3 |
-
Donate link:
|
4 |
Tags: permalinks, urls, links, update links, move wordpress, location, update urls, update permalinks, move, link, url, permalink, excerpt, content links, excerpt links, custom field links, meta, post meta
|
5 |
Requires at least: 4.5
|
6 |
Tested up to: 4.7
|
7 |
-
Stable tag: 3.2.
|
8 |
License: GPLv2 or later
|
9 |
|
10 |
Updates all urls and content links in your website.
|
@@ -48,18 +48,28 @@ URLs are only replaced when an exact match is found. Be sure that you have enter
|
|
48 |
|
49 |
Make sure that the plugin is activated and that you are an administrator level user.
|
50 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
51 |
== Screenshots ==
|
52 |
|
53 |
1. The Admin screen for the plugin. screenshot-1.png
|
54 |
|
55 |
== Change Log ==
|
56 |
|
|
|
|
|
|
|
57 |
= 3.2.6 =
|
58 |
* Tested with 4.6.
|
59 |
* Version Update.
|
60 |
|
61 |
= 3.2.5 =
|
62 |
-
* This plugin is not maintained and updated by justingreerbbi (Justin Greer Interactive, LLC)
|
63 |
* Updated label ID for better UX when selecting url location options.
|
64 |
* Added use if is_serialized() to remove PHP NOTICES about offsets during url update process.
|
65 |
* Confirmed compatibility to with WP 4.6 and updated stable tag.
|
1 |
=== Velvet Blues Update URLs ===
|
2 |
+
Contributors: VelvetBlues.com
|
3 |
+
Donate link: http://www.velvetblues.com/go/updateurlsdonate/
|
4 |
Tags: permalinks, urls, links, update links, move wordpress, location, update urls, update permalinks, move, link, url, permalink, excerpt, content links, excerpt links, custom field links, meta, post meta
|
5 |
Requires at least: 4.5
|
6 |
Tested up to: 4.7
|
7 |
+
Stable tag: 3.2.7
|
8 |
License: GPLv2 or later
|
9 |
|
10 |
Updates all urls and content links in your website.
|
48 |
|
49 |
Make sure that the plugin is activated and that you are an administrator level user.
|
50 |
|
51 |
+
= This plugin saved me a lot of work. Where can I donate? =
|
52 |
+
|
53 |
+
Thanks, donations help us to continue improving our plugins. [Donate Here via PayPal.](http://www.velvetblues.com/go/updateurlsdonate/)
|
54 |
+
|
55 |
+
= I'm afraid to screw this up. Will you do it for me? =
|
56 |
+
|
57 |
+
Of course! Velvet Blues will backup your website and replace your URLs for only $29. If you need your website moved, we charge a flat fee of $65 and will finish your move within 48 hours - week days only. For same-day or weekend jobs, we charge a flat rate of $105. Contact us at info@velvetblues.com for more information.
|
58 |
+
|
59 |
== Screenshots ==
|
60 |
|
61 |
1. The Admin screen for the plugin. screenshot-1.png
|
62 |
|
63 |
== Change Log ==
|
64 |
|
65 |
+
= 3.2.7 =
|
66 |
+
* Maintenance Update.
|
67 |
+
|
68 |
= 3.2.6 =
|
69 |
* Tested with 4.6.
|
70 |
* Version Update.
|
71 |
|
72 |
= 3.2.5 =
|
|
|
73 |
* Updated label ID for better UX when selecting url location options.
|
74 |
* Added use if is_serialized() to remove PHP NOTICES about offsets during url update process.
|
75 |
* Confirmed compatibility to with WP 4.6 and updated stable tag.
|
velvet-blues-update-urls.php
CHANGED
@@ -1,21 +1,16 @@
|
|
1 |
<?php
|
2 |
/*
|
3 |
Plugin Name: Velvet Blues Update URLs
|
4 |
-
Plugin URI:
|
5 |
Description: This plugin <strong>updates all urls in your website</strong> by replacing old urls with new urls. To get started: 1) Click the "Activate" link to the left of this description, and 2) Go to your <a href="tools.php?page=velvet-blues-update-urls.php">Update URLs</a> page to use it.
|
6 |
-
Author:
|
7 |
-
Author URI:
|
8 |
-
Author Email: info@
|
9 |
-
Version: 3.2.
|
10 |
License: GPLv2 or later
|
11 |
Text Domain: velvet-blues-update-urls
|
12 |
*/
|
13 |
-
|
14 |
-
/*
|
15 |
-
Copyright 2016 Justin Greer Interactive, LLC
|
16 |
-
|
17 |
-
Original Author Copyright! Kudos.
|
18 |
-
Copyright 2015 Velvet Blues Web Design
|
19 |
|
20 |
This program is free software; you can redistribute it and/or
|
21 |
modify it under the terms of the GNU General Public License
|
@@ -188,7 +183,12 @@ function VelvetBluesUU_management_page(){
|
|
188 |
</u><?php echo $resultstring; ?></p>
|
189 |
<?php echo ($empty)? '<p>'.$emptystring.'</p>' : ''; ?></td>
|
190 |
<td width="60"></td>
|
191 |
-
<td align="center"
|
|
|
|
|
|
|
|
|
|
|
192 |
</tr>
|
193 |
</table>
|
194 |
</div>
|
@@ -287,6 +287,20 @@ function VelvetBluesUU_management_page(){
|
|
287 |
<input class="button-primary" name="VBUU_settings_submit" value="<?php _e('Update URLs NOW','velvet-blues-update-urls'); ?>" type="submit" />
|
288 |
</p>
|
289 |
</form>
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
290 |
<?php
|
291 |
}
|
292 |
add_action('admin_menu', 'VelvetBluesUU_add_management_page');
|
1 |
<?php
|
2 |
/*
|
3 |
Plugin Name: Velvet Blues Update URLs
|
4 |
+
Plugin URI: http://www.velvetblues.com/web-development-blog/wordpress-plugin-update-urls/
|
5 |
Description: This plugin <strong>updates all urls in your website</strong> by replacing old urls with new urls. To get started: 1) Click the "Activate" link to the left of this description, and 2) Go to your <a href="tools.php?page=velvet-blues-update-urls.php">Update URLs</a> page to use it.
|
6 |
+
Author: VelvetBlues.com
|
7 |
+
Author URI: http://www.velvetblues.com/
|
8 |
+
Author Email: info@velvetblues.com
|
9 |
+
Version: 3.2.7
|
10 |
License: GPLv2 or later
|
11 |
Text Domain: velvet-blues-update-urls
|
12 |
*/
|
13 |
+
/* Copyright 2016 Velvet Blues Web Design (email : info@velvetblues.com)
|
|
|
|
|
|
|
|
|
|
|
14 |
|
15 |
This program is free software; you can redistribute it and/or
|
16 |
modify it under the terms of the GNU General Public License
|
183 |
</u><?php echo $resultstring; ?></p>
|
184 |
<?php echo ($empty)? '<p>'.$emptystring.'</p>' : ''; ?></td>
|
185 |
<td width="60"></td>
|
186 |
+
<td align="center"><?php if( !$empty ): ?>
|
187 |
+
<p>
|
188 |
+
<?php //You can now uninstall this plugin.<br/> ?>
|
189 |
+
<?php printf(__('If you found our plugin useful, %s please consider donating','velvet-blues-update-urls'),'<br/>'); ?>.</p>
|
190 |
+
<p><a style="outline:none;" href="http://www.velvetblues.com/go/updateurlsdonate/" target="_blank"><img src="https://www.paypal.com/en_US/i/btn/btn_donateCC_LG.gif" border="0" alt="PayPal -<?php _e('The safer, easier way to pay online!','velvet-blues-update-urls'); ?>"></a></p>
|
191 |
+
<?php endif; ?></td>
|
192 |
</tr>
|
193 |
</table>
|
194 |
</div>
|
287 |
<input class="button-primary" name="VBUU_settings_submit" value="<?php _e('Update URLs NOW','velvet-blues-update-urls'); ?>" type="submit" />
|
288 |
</p>
|
289 |
</form>
|
290 |
+
<p> <br/>
|
291 |
+
<strong>
|
292 |
+
<?php _e('Need help?','velvet-blues-update-urls'); ?>
|
293 |
+
</strong> <?php printf(__("Get support at the %s plugin page%s.",'velvet-blues-update-urls'),'<a href="http://www.velvetblues.com/web-development-blog/wordpress-plugin-update-urls/" target="_blank">Velvet Blues Update URLs','</a>'); ?>
|
294 |
+
<?php if( !isset( $empty ) ): ?>
|
295 |
+
<br/>
|
296 |
+
<strong>
|
297 |
+
<?php _e('Want us to do it for you?','velvet-blues-update-urls'); ?>
|
298 |
+
</strong>
|
299 |
+
<?php _e('Contact us at','velvet-blues-update-urls'); ?>
|
300 |
+
<a href="mailto:info@velvetblues.com?subject=Move%20My%20WP%20Site">info@velvetblues.com</a>.
|
301 |
+
<?php _e('We will backup your website and move it for $65 OR update your URLs for only $29.','velvet-blues-update-urls'); ?>
|
302 |
+
<?php endif; ?>
|
303 |
+
</p>
|
304 |
<?php
|
305 |
}
|
306 |
add_action('admin_menu', 'VelvetBluesUU_add_management_page');
|