I'm using 1.39H. I have Extra fields on and TPP, it was the original classic template.
My tpl_product_info_display.php page has the code below on it. Yet none of these details show up on my page. I went through my configuration and could find nothing that disabled this whole section.
Any idea on where to look. I did notice on my Google Feed that everything appears correctly on the feed except the UPC code on the items that I use them, they don't appear. I looked in the DB and they are there.
I have no error logs.
Any help would be appreciated on where I should look, or how to start eliminating possible problems.
Dan
what php page
Code:<ul id="productDetailsList" class="floatingBox back"> <?php if (!empty($product_info->fields['products_upc'])) echo '<li>UPC: ' . $product_info->fields['products_upc'] . '</li>'; ?> <?php if (!empty($product_info->fields['products_isbn'])) echo '<li>ISBN: ' . $product_info->fields['products_isbn'] . '</li>'; ?> <?php echo (($flag_show_product_info_model == 1 and $products_model != '') ? '<li>' . TEXT_PRODUCT_MODEL . $products_model . '</li>' : '') . "\n"; ?> <?php echo (($flag_show_product_info_weight == 1 and $products_weight != 0) ? '<li>' . $products_weight_display . '</li>' : '') . "\n"; ?> <?php echo (($flag_show_product_info_actual_weight == 1 and $products_actual_weight != 0) ? '<li>' . $products_actual_weight_display . '</li>' : '') . "\n"; ?> <?php echo (($flag_show_product_info_dimensions == 1 && ($products_length != 0 || $products_width != 0 || $products_height != 0)) ? '<li>' . $products_dim_display . '</li>' : '') . "\n"; ?> <?php echo (($flag_show_product_info_diameter == 1 && $products_diameter != '') ? '<li>' . $products_diameter_display . '</li>' : '') . "\n"; ?> <?php echo (($flag_show_product_info_quantity == 1) ? '<li>' . $products_quantity . TEXT_PRODUCT_QUANTITY . '</li>' : '') . "\n"; ?> <?php echo (($flag_show_product_info_manufacturer == 1 and !empty($manufacturers_name)) ? '<li>' . TEXT_PRODUCT_MANUFACTURER . $manufacturers_name . '</li>' : '') . "\n"; ?> <?php echo (($flag_show_product_info_condition == 1 and $products_condition != '') ? '<li>' . TEXT_PRODUCTS_CONDITION . $products_condition . '</li>' : '') . "\n"; ?> <?php echo (($flag_show_product_info_upc == 1 and $products_upc != '') ? '<li>' . TEXT_PRODUCTS_UPC . $products_upc . '</li>' : '') . "\n"; ?> <?php echo (($flag_show_product_info_isbn == 1 and $products_isbn != '') ? '<li>' . TEXT_PRODUCTS_ISBN . $products_isbn . '</li>' : '') . "\n"; ?> <?php echo (($flag_show_product_info_sku == 1 and $products_sku != '') ? '<li>' . TEXT_PRODUCTS_SKU . $products_sku . '</li>' : '') . "\n"; ?> </ul>


Reply With Quote
