Plugin Directory

Changeset 1122404


Ignore:
Timestamp:
03/27/2015 07:14:26 PM (11 years ago)
Author:
mainehost
Message:

Updating 1.0.2

Location:
shopp-seo/trunk
Files:
3 edited

Legend:

Unmodified
Added
Removed
  • shopp-seo/trunk/admin.js

    r1083154 r1122404  
    1313
    1414        if (len >= max) {
    15             $('#'+area).html('<span style="color: red;">-' + char + ' characters left</span>');
     15            $('#'+area).html('<span style="color: red;">' + len + ' characters</span>');
    1616        } else {
    17             $('#'+area).html('<span style="color: green;">' + char + ' characters left</span>');
     17            $('#'+area).html('<span style="color: green;">' + len + ' characters</span>');
    1818        }
    1919    }
     
    2525
    2626        if (len >= max) {
    27             $('#'+area).html('<span style="color: red;">-' + char + ' characters left</span>');
     27            $('#'+area).html('<span style="color: red;">' + len + ' characters</span>');
    2828        } else {
    29             $('#'+area).html('<span style="color: green;">' + char + ' characters left</span>');
     29            $('#'+area).html('<span style="color: green;">' + len + ' characters</span>');
    3030        }
    3131    }
  • shopp-seo/trunk/readme.txt

    r1094304 r1122404  
    33Tags: SEO, Shopp, WordPress SEO
    44Requires at least: 3.9
    5 Tested up to: 4.1.1
     5Tested up to: 4.1
    66Stable tag: 1.0.2
    77License: GPLv2 or later
     
    4545
    4646= 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.
    4852
    4953= 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.
    5158
    5259= 1.0.0 =
  • shopp-seo/trunk/sseo.php

    r1094304 r1122404  
    296296            echo '
    297297                <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%;">
    299299                <div id="mhs_seo_title_area"></div>
    300300                </p>
Note: See TracChangeset for help on using the changeset viewer.