Plugin Directory

Changeset 517155


Ignore:
Timestamp:
03/10/2012 08:27:25 AM (14 years ago)
Author:
WhiteCubes
Message:

tagging version 1.10

Location:
worldcurrency
Files:
2 edited
8 copied

Legend:

Unmodified
Added
Removed
  • worldcurrency/tags/1.10/readme.txt

    r512360 r517155  
    55Requires at least: 2.8.0
    66Tested up to: 3.3.1
    7 Stable tag: 1.9
     7Stable tag: 1.10
    88
    99Recognises users by IP address and shows them converted values in their local currency, you can write post/pages in multiple currencies.
     
    9292== Changelog ==
    9393
    94 = 1.9 (29th February 2012) =
     94= 1.10 (10 March 2012) =
     95* Added: it is possible to add "wc_force" = 1 custom field to post to force the loading of worldcurrency code, in case of conflict with other plugins
     96
     97= 1.9 (29 February 2012) =
    9598* Added: is now possible to choose the decimal and thousands separator for the output formatting
    9699
    97 = 1.8 (29th February 2012) =
     100= 1.8 (29 February 2012) =
    98101* Fix: ajax was not working if wordpress admin is under forced SSL with: define('FORCE_SSL_LOGIN', true);
    99102* Added: possibility to choose to make ajax calls over SSL
    100103* Added: Fijian dollar (FJD) - if using historic rates you shuld delete "wc_rates" custom field in each post to have it updated with the new currency
    101104
    102 = 1.7 (28th February 2012) =
     105= 1.7 (28 February 2012) =
    103106* Fix: now plugin uses wordpress ajax handler and should work also with wp-config.php in different locations
    104107
    105 = 1.6 (22th February 2012) =
     108= 1.6 (22 February 2012) =
    106109* Added option to use a jQuery.noconflict to increase compatibility with other themes/plugins
    107110
    108 = 1.5 (21th February 2012) =
     111= 1.5 (21 February 2012) =
    109112* Hides the widget if no currency on page/post
    110113
    111 = 1.4 (20th February 2012) =
     114= 1.4 (20t February 2012) =
    112115* Estetic improvements
    113116
    114 = 1.2 (20th February 2012) =
     117= 1.2 (20 February 2012) =
    115118* Minor corrections
    116119* Possibility to choose to hide conversion if target and origin currency are the same
    117120
    118 = 1.1 (20th February 2012) =
     121= 1.1 (20 February 2012) =
    119122* Minor improvements and Currency selection box shorttag
    120123
    121 = 1.0 (19th February 2012) =
     124= 1.0 (19 February 2012) =
    122125* Initial Release
    123126
  • worldcurrency/tags/1.10/worldcurrency.php

    r512360 r517155  
    44Plugin URI: http://www.cometicucinoilweb.it/blog/en/worldcurrency-plugin-for-wordpress/
    55Description: Recognises users by IP address and shows them converted values in their local currency, you can write post/pages in multiple currencies.
    6 Version: 1.9
    7 Date: 29th February 2012
     6Version: 1.10
     7Date: 10 March 2012
    88Author: Daniele Tieghi
    99Author URI: http://www.cometicucinoilweb.it/blog/chi-siamo/daniele-tieghi/
     
    106106           
    107107            // Include the script only if necessary
    108             if (strpos($post->post_content, 'worldcurrency') !== false) {
     108            if (get_post_meta($post->ID, 'wc_force', true) == 1 || strpos($post->post_content, 'worldcurrency') !== false) {
    109109               
    110110                $usercurrency = dt_wc_userlocation();
  • worldcurrency/trunk/readme.txt

    r512360 r517155  
    55Requires at least: 2.8.0
    66Tested up to: 3.3.1
    7 Stable tag: 1.9
     7Stable tag: 1.10
    88
    99Recognises users by IP address and shows them converted values in their local currency, you can write post/pages in multiple currencies.
     
    9292== Changelog ==
    9393
    94 = 1.9 (29th February 2012) =
     94= 1.10 (10 March 2012) =
     95* Added: it is possible to add "wc_force" = 1 custom field to post to force the loading of worldcurrency code, in case of conflict with other plugins
     96
     97= 1.9 (29 February 2012) =
    9598* Added: is now possible to choose the decimal and thousands separator for the output formatting
    9699
    97 = 1.8 (29th February 2012) =
     100= 1.8 (29 February 2012) =
    98101* Fix: ajax was not working if wordpress admin is under forced SSL with: define('FORCE_SSL_LOGIN', true);
    99102* Added: possibility to choose to make ajax calls over SSL
    100103* Added: Fijian dollar (FJD) - if using historic rates you shuld delete "wc_rates" custom field in each post to have it updated with the new currency
    101104
    102 = 1.7 (28th February 2012) =
     105= 1.7 (28 February 2012) =
    103106* Fix: now plugin uses wordpress ajax handler and should work also with wp-config.php in different locations
    104107
    105 = 1.6 (22th February 2012) =
     108= 1.6 (22 February 2012) =
    106109* Added option to use a jQuery.noconflict to increase compatibility with other themes/plugins
    107110
    108 = 1.5 (21th February 2012) =
     111= 1.5 (21 February 2012) =
    109112* Hides the widget if no currency on page/post
    110113
    111 = 1.4 (20th February 2012) =
     114= 1.4 (20t February 2012) =
    112115* Estetic improvements
    113116
    114 = 1.2 (20th February 2012) =
     117= 1.2 (20 February 2012) =
    115118* Minor corrections
    116119* Possibility to choose to hide conversion if target and origin currency are the same
    117120
    118 = 1.1 (20th February 2012) =
     121= 1.1 (20 February 2012) =
    119122* Minor improvements and Currency selection box shorttag
    120123
    121 = 1.0 (19th February 2012) =
     124= 1.0 (19 February 2012) =
    122125* Initial Release
    123126
  • worldcurrency/trunk/worldcurrency.php

    r512360 r517155  
    44Plugin URI: http://www.cometicucinoilweb.it/blog/en/worldcurrency-plugin-for-wordpress/
    55Description: Recognises users by IP address and shows them converted values in their local currency, you can write post/pages in multiple currencies.
    6 Version: 1.9
    7 Date: 29th February 2012
     6Version: 1.10
     7Date: 10 March 2012
    88Author: Daniele Tieghi
    99Author URI: http://www.cometicucinoilweb.it/blog/chi-siamo/daniele-tieghi/
     
    106106           
    107107            // Include the script only if necessary
    108             if (strpos($post->post_content, 'worldcurrency') !== false) {
     108            if (get_post_meta($post->ID, 'wc_force', true) == 1 || strpos($post->post_content, 'worldcurrency') !== false) {
    109109               
    110110                $usercurrency = dt_wc_userlocation();
Note: See TracChangeset for help on using the changeset viewer.