Changeset 2262365
- Timestamp:
- 03/17/2020 11:05:51 AM (6 years ago)
- Location:
- ecalypse-rental-starter/trunk
- Files:
-
- 2 edited
-
class.ecalypse-rental-theme.php (modified) (1 diff)
-
ecalypse-rental-starter.php (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
ecalypse-rental-starter/trunk/class.ecalypse-rental-theme.php
r1783457 r2262365 213 213 include(self::get_file_template_path('booking-javascript.php')); 214 214 } 215 216 $showvat = get_option('ecalypse_rental_show_vat'); 217 if ((float) $vehicle->price_from > 0){ 218 $vehicle->prices['price'] = $vehicle->price_from; 219 } elseif ((float) $vehicle->prices['vat'] > 0 && $showvat && $showvat == 'yes') { 220 $vehicle->prices['price'] = $vehicle->prices['price_with_tax']; 221 } 215 222 216 223 wp_register_style('jquery-ui.css', 'https://ajax.googleapis.com/ajax/libs/jqueryui/1.11.0/themes/smoothness/jquery-ui.css', array()); -
ecalypse-rental-starter/trunk/ecalypse-rental-starter.php
r2238173 r2262365 7 7 Plugin URI: http://ecalypse.com/wordpressecalypse-rental/ 8 8 Description: Ecalypse Rental Starter enables complete rental management of cars, bikes and other equipment. 9 Version: 4.0. 199 Version: 4.0.20 10 10 Author: Ecalypse s.r.o. 11 11 Author URI: http://ecalypse.com/ … … 74 74 } else { 75 75 76 define('ECALYPSERENTALSTARTER_VERSION', '4.0. 19');76 define('ECALYPSERENTALSTARTER_VERSION', '4.0.20'); 77 77 define('ECALYPSERENTALSTARTER__MINIMUM_WP_VERSION', '3.9'); 78 78 define('ECALYPSERENTALSTARTER__PLUGIN_URL', plugin_dir_url(__FILE__));
Note: See TracChangeset
for help on using the changeset viewer.