
Originally Posted by
gameoverbeyond
Fully tested and integrated with SNAF plugin for sort options, works great. I would like to make the items per page options to be of a strong font like the "Displaying X to X of (XXX products)" Looking with firebug, both share the same CSS but appears the html would need to be hardcoded to make the links <strong> to display this way. However, I'm having a hard time finding the code to change. Any directions would be great.
/includes/templates/YOUR_TEMPLATE_NAME/templates/tpl_modules_product_listing.php
find:
PHP Code:
<?php } else { ?> <!--bof set num products -->
<?php
if (PRODUCT_LISTING_MAX_DISPLAY_STEPS !='') { ?>
<div id="maxProductsListingTop" class="navSplitPagesResult forward"><?php echo TEXT_DISPLAY_STEPS_NUMBER_OF_PRODUCTS;
echo draw_max_display($_GET['main_page'], $listing_split->page_name, (int)PRODUCT_LISTING_COLUMNS_PER_ROW, $listing_split->number_of_rows);
?>
</div>
<?php } ?>
<!--eof set num products -->
change to:
PHP Code:
<?php } else { ?> <!--bof set num products -->
<?php
if (PRODUCT_LISTING_MAX_DISPLAY_STEPS !='') { ?>
<div id="maxProductsListingTop" class="navSplitPagesResult forward"><?php echo TEXT_DISPLAY_STEPS_NUMBER_OF_PRODUCTS;
echo '<strong>';
echo draw_max_display($_GET['main_page'], $listing_split->page_name, (int)PRODUCT_LISTING_COLUMNS_PER_ROW, $listing_split->number_of_rows);
echo '</strong>';
?>
</div>
<?php } ?>
<!--eof set num products -->
Bookmarks