What was the error?
I suspect that, since this section contains a form input, it may not be possible to just skip it entirely.
A refinement that occurred to me last night would put the category-specific code in only one spot and use it to set a flag that could be applied anywhere desired. This eliminates the possibility of changing a category id in one spot and forgetting it in another spot.
PHP Code:
<?php
$notGallery = 1
if (ereg("(^13$|^13_)",$cPath)) { /*no image in gallery*/
$notGallery = 0
} ?>
Put this snippet near the top of tpl_product_info_display, say near line 16:
PHP Code:
<div class="centerColumn" id="productGeneral">
<?php
$notGallery = 1
if (ereg("(^13$|^13_)",$cPath)) { /*no image in gallery*/
$notGallery = 0
} ?>
<!--bof Form start-->
PHP Code:
<!--bof Product Price block -->
<?php if ($notGallery) { ?><!--display if not in gallery -->
<h2 id="productPrices" class="productGeneral">
<?php
// base price
if ($show_onetime_charges_description == 'true') {
$one_time = '<span >' . TEXT_ONETIME_CHARGE_SYMBOL . TEXT_ONETIME_CHARGE_DESCRIPTION . '</span><br />';
} else {
$one_time = '';
}
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>
<?php } ?><!--/display if not in gallery -->
<!--eof Product Price block -->
For the add to cart section, we need a different approach because we can't eliminate it. Give the div that contains the button a different id if in the gallery category, and style that id to "hidden" in the stylesheet.
Hmm... Hold that thought. I just noticed a coding error from your post that *could* be your whole problem. Or maybe not... You replaced the opening <?php with the if test code which then closes php like this ?>. It needs to stay open here.
Try this first:
PHP Code:
<!--bof Add to Cart Box -->
<?php if ($notGallery) { /*display if not in gallery*/
if (CUSTOMERS_APPROVAL == 3 and TEXT_LOGIN_FOR_PRICE_BUTTON_REPLACE_SHOWROOM == '') {
// do nothing
} else {
?>
<?php
$display_qty = (($flag_show_product_info_in_cart_qty == 1 and $_SESSION['cart']->in_cart($_GET['products_id'])) ? '<p>' . PRODUCTS_ORDER_QTY_TEXT_IN_CART . $_SESSION['cart']->get_quantity($_GET['products_id']) . '</p>' : '');
if ($products_qty_box_status == 0 or $products_quantity_order_max== 1) {
// hide the quantity box and default to 1
$the_button = '<input type="hidden" name="cart_quantity" value="1" />' . zen_draw_hidden_field('products_id', (int)$_GET['products_id']) . zen_image_submit(BUTTON_IMAGE_IN_CART, BUTTON_IN_CART_ALT);
} else {
// show the quantity box
$the_button = PRODUCTS_ORDER_QTY_TEXT . '<input type="text" name="cart_quantity" value="' . (zen_get_buy_now_qty($_GET['products_id'])) . '" maxlength="6" size="4" /><br />' . zen_get_products_quantity_min_units_display((int)$_GET['products_id']) . '<br />' . zen_draw_hidden_field('products_id', (int)$_GET['products_id']) . zen_image_submit(BUTTON_IMAGE_IN_CART, BUTTON_IN_CART_ALT);
}
$display_button = zen_get_buy_now_button($_GET['products_id'], $the_button);
?>
<?php if ($display_qty != '' or $display_button != '') { ?>
<div id="cartAdd">
<?php
echo $display_qty;
echo $display_button;
?>
</div>
<?php } // display qty and button ?>
<?php } // CUSTOMERS_APPROVAL == 3 ?>
<?php } ?><!-- /display if not in gallery -->
<!--eof Add to Cart Box-->
If you still get an error (probably a different one), let me know and I'll explain the stylesheet hide method.