Changeset 1122404
- Timestamp:
- 03/27/2015 07:14:26 PM (11 years ago)
- Location:
- shopp-seo/trunk
- Files:
-
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
shopp-seo/trunk/admin.js
r1083154 r1122404 13 13 14 14 if (len >= max) { 15 $('#'+area).html('<span style="color: red;"> -' + char + ' characters left</span>');15 $('#'+area).html('<span style="color: red;">' + len + ' characters</span>'); 16 16 } else { 17 $('#'+area).html('<span style="color: green;">' + char + ' characters left</span>');17 $('#'+area).html('<span style="color: green;">' + len + ' characters</span>'); 18 18 } 19 19 } … … 25 25 26 26 if (len >= max) { 27 $('#'+area).html('<span style="color: red;"> -' + char + ' characters left</span>');27 $('#'+area).html('<span style="color: red;">' + len + ' characters</span>'); 28 28 } else { 29 $('#'+area).html('<span style="color: green;">' + char + ' characters left</span>');29 $('#'+area).html('<span style="color: green;">' + len + ' characters</span>'); 30 30 } 31 31 } -
shopp-seo/trunk/readme.txt
r1094304 r1122404 3 3 Tags: SEO, Shopp, WordPress SEO 4 4 Requires at least: 3.9 5 Tested up to: 4.1 .15 Tested up to: 4.1 6 6 Stable tag: 1.0.2 7 7 License: GPLv2 or later … … 45 45 46 46 = 1.0.2 = 47 * Verified compatability with WordPress 4.1.1 47 48 * **Changes** 49 50 * Titles are no longer cut off at 70 characters. You can go as long as you like with it. 51 * The title and description field will just show you how many characters you've typed. If you've exceeded 70 characters on the title, or 160 on the description, the character count will show in red to let you know you've exceeded the recommended lengths. 48 52 49 53 = 1.0.1 = 50 * Fixed an issue where the plugin would not activate if WordPress SEO Premium was installed instead of the free version. It should now activate for either version of WordPress SEO. 54 55 * **Bug Fixes** 56 57 * Fixed an issue where the plugin would not activate if WordPress SEO Premium was installed instead of the free version. It should now activate for either version of WordPress SEO. 51 58 52 59 = 1.0.0 = -
shopp-seo/trunk/sseo.php
r1094304 r1122404 296 296 echo ' 297 297 <p> 298 <b>SEO Title:</b><br /><input type="text" name="' . ((!$tax) ? 'mhs_seo_title' : 'wpseo_title') . '" size="50" maxlength="70"value="' . $title . '" id="mhs_seo_title" class="mhs_seo_title" style="width: 100%;">298 <b>SEO Title:</b><br /><input type="text" name="' . ((!$tax) ? 'mhs_seo_title' : 'wpseo_title') . '" size="50" value="' . $title . '" id="mhs_seo_title" class="mhs_seo_title" style="width: 100%;"> 299 299 <div id="mhs_seo_title_area"></div> 300 300 </p>
Note: See TracChangeset
for help on using the changeset viewer.