Quote Originally Posted by top hatt View Post
Hi:

I have a quick question. Is the Dynamic Price Updater compatible with this template?

I have tried to get it to work but I am not having any success.

Dave
Quote Originally Posted by barco57 View Post
I also could not get the Dynamic Price Updater to work with the template.
Quote Originally Posted by top hatt View Post
Thanks for the reply. I'm not a coder and didn't know if it was just me or the plugin wasn't compatible.

Too bad, because I like the template but I need the Dynamic Price Updater.

Dave
The plugin Dynamic Price Updater DOES WORK with this template.

You have to use the plugins included configuration to change the ID of the element where your price is displayed.

Simply changing productPrices to productsPriceTop-productPriceTopPrice

Unfortunately the plugin DOES NOT UPDATE but instead ADDS the second price, you will have to remove the following from

/includes/templates/bootstrap/templates/tpl_product_info_display.php
PHP Code:
<h2 id="productsPriceBottom-productPriceBottomPrice" class="productPriceBottomPrice">
  <?php  
// base price
  
if ($show_onetime_charges_description == 'true') {
    
$one_time TEXT_ONETIME_CHARGE_SYMBOL TEXT_ONETIME_CHARGE_DESCRIPTION;
  } else {
    
$one_time '';
  }
  
?>

<?php
  
echo $one_time . ((zen_has_product_attributes_values((int)$_GET['products_id']) and $flag_show_product_info_starting_at == 1) ? TEXT_BASE_PRICE '') . zen_get_products_display_price((int)$_GET['products_id']);
?>
</h2>