Changeset 917041
- Timestamp:
- 05/19/2014 09:10:19 AM (12 years ago)
- Location:
- pricemesh
- Files:
-
- 4 added
- 4 edited
-
assets/screenshot-1.png (added)
-
assets/screenshot-2.png (added)
-
assets/screenshot-3.png (added)
-
assets/screenshot-4.png (added)
-
trunk/admin/pricemesh-admin.php (modified) (5 diffs)
-
trunk/pricemesh.php (modified) (1 diff)
-
trunk/public/pricemesh-public.php (modified) (1 diff)
-
trunk/readme.txt (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
pricemesh/trunk/admin/pricemesh-admin.php
r892911 r917041 216 216 //debug 217 217 $option = "pricemesh_option_debug"; 218 $option_name = "Hinweise und Warnungen anzeigen";218 $option_name = "Hinweise und Warnungen"; 219 219 $option_callback = "settings_basic_debug_callback"; 220 220 add_settings_field( … … 281 281 //stock 282 282 $option = "pricemesh_option_stock"; 283 $option_name = "Versandinfo zeigen";283 $option_name = "Versandinfo"; 284 284 $option_callback = "settings_config_stock_callback"; 285 285 add_settings_field( … … 417 417 $opts = self::get_pricemesh_settings(); 418 418 $setting = $opts["debug"]; 419 if($setting == "on"){ 420 echo '<input type="checkbox" name="pricemesh_option_debug" value="on" checked>'; 421 }else{ 422 echo '<input type="checkbox" name="pricemesh_option_debug" value="on">'; 419 $options = array("on" => __("Anzeigen"), "off" => __("Nicht anzeigen")); 420 foreach($options as $value => $string) { 421 if($setting == $value){ 422 $checked = "checked"; 423 }else{ 424 $checked = ""; 425 } 426 echo "<p><label><input type='radio' name='pricemesh_option_debug' value='$value' $checked>$string</label></p>"; 423 427 } 424 428 } … … 516 520 $opts = self::get_pricemesh_settings(); 517 521 $setting = $opts["stock"]; 518 if($setting == "on"){ 519 echo '<input type="checkbox" name="pricemesh_option_stock" value="on" checked>'; 520 }else{ 521 echo '<input type="checkbox" name="pricemesh_option_stock" value="on">'; 522 $options = array("on" => __("Versandinfo anzeigen"), "off" => __("Versandinfo nicht anzeigen")); 523 foreach($options as $value => $string) { 524 if($setting == $value){ 525 $checked = "checked"; 526 }else{ 527 $checked = ""; 528 } 529 echo "<p><label><input type='radio' name='pricemesh_option_stock' value='$value' $checked>$string</label></p>"; 522 530 } 523 531 … … 532 540 $opts = self::get_pricemesh_settings(); 533 541 $setting = $opts["duplicates"]; 534 $options = array("off" => _("Nicht filtern"), "all" => _("Alle duplikate filtern (Händler darf nur einmal vorkommen)"), "same-price" => _("Bei gleichem Preis filtern (Händler darf nur einmal pro Preis vorkommen)"));542 $options = array("off" => _("Nicht filtern"), "all" => _("Alle Duplikate filtern (Händler darf nur einmal vorkommen)"), "same-price" => _("Bei gleichem Preis filtern (Händler darf nur einmal pro Preis vorkommen)")); 535 543 foreach($options as $value => $string) { 536 544 if($setting == $value){ -
pricemesh/trunk/pricemesh.php
r892911 r917041 4 4 Plugin URI: https://www.pricemesh.io/plugins/wordpress/ 5 5 Description: Mit diesem Plugin ist es möglich Wordpress um einen eigenen Preisvergleich zu erweitern. 6 Version: 1.4 6 Version: 1.4.1 7 7 Author: pricemesh 8 8 Author URI: https://www.pricemesh.io -
pricemesh/trunk/public/pricemesh-public.php
r892911 r917041 22 22 * @var string 23 23 */ 24 const VERSION = '1.4 ';24 const VERSION = '1.4.1'; 25 25 26 26 /** -
pricemesh/trunk/readme.txt
r892911 r917041 3 3 Tags: affiliate, commerce, e-commerce, ecommerce, sales, sell, shop, shopping, widgets, wordpress ecommerce, amazon, preisvergleich, ads, advertising 4 4 Requires at least: 3.4 5 Tested up to: 3. 8.26 Stable tag: 1.4 5 Tested up to: 3.9.1 6 Stable tag: 1.4.1 7 7 License: GPLv2 or later 8 8 License URI: http://www.gnu.org/licenses/gpl-2.0.html … … 73 73 == Changelog == 74 74 75 = 1.4.1 = 76 * Bugfix 77 75 78 = 1.4 = 76 79 * Der Titel des Produktes kann nun optional ein- und ausgeblendet werden
Note: See TracChangeset
for help on using the changeset viewer.