Changeset 508115
- Timestamp:
- 02/21/2012 08:53:32 AM (14 years ago)
- Location:
- worldcurrency/trunk
- Files:
-
- 3 edited
-
readme.txt (modified) (3 diffs)
-
worldcurrency.php (modified) (1 diff)
-
worldcurrency.widget.php (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
worldcurrency/trunk/readme.txt
r507848 r508115 5 5 Requires at least: 2.8.0 6 6 Tested up to: 3.3.1 7 Stable tag: 1. 47 Stable tag: 1.5 8 8 9 9 Recognises users by IP address and shows them converted values in their local currency, you can write post/pages in multiple currencies. … … 86 86 == Changelog == 87 87 88 = 1. 0 (19th February 2012) =89 * Initial Release88 = 1.5 (21th February 2012) = 89 * Hides the widget if no currency on page/post 90 90 91 = 1. 1(20th February 2012) =92 * Minor improvements and Currency selection box shorttag91 = 1.4 (20th February 2012) = 92 * Estetic improvements 93 93 94 94 = 1.2 (20th February 2012) = … … 96 96 * Possibility to choose to hide conversion if target and origin currency are the same 97 97 98 = 1.4 (20th February 2012) = 99 * Estetic improvements 98 = 1.1 (20th February 2012) = 99 * Minor improvements and Currency selection box shorttag 100 101 = 1.0 (19th February 2012) = 102 * Initial Release 100 103 101 104 == Credits == -
worldcurrency/trunk/worldcurrency.php
r507848 r508115 4 4 Plugin URI: http://www.cometicucinoilweb.it/blog/en/worldcurrency-plugin-for-wordpress/ 5 5 Description: 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. 47 Date: 2 0th February 20126 Version: 1.5 7 Date: 21th February 2012 8 8 Author: Daniele Tieghi 9 9 Author URI: http://www.cometicucinoilweb.it/blog/chi-siamo/daniele-tieghi/ -
worldcurrency/trunk/worldcurrency.widget.php
r507788 r508115 15 15 16 16 function widget($args, $instance) { 17 echo dt_wc_getCurrencySelectionBox(); 17 global $post; 18 if (strpos($post->post_content, 'worldcurrency') !== false) 19 echo dt_wc_getCurrencySelectionBox(); 18 20 } 19 21
Note: See TracChangeset
for help on using the changeset viewer.