Hello, the page title on a product page is dynamically created by the product title field. How would I change it so the page title is created by a different method.
Hello, the page title on a product page is dynamically created by the product title field. How would I change it so the page title is created by a different method.
The formatting for the product_info page is controlled by /includes/templates/YOUR_TEMPLATE/templates/tpl_product_info_display.php. Look for
The $products_name (or title) is the default value; change it to your heart's desire!Code:<!--bof Product Name--> <h1 id="productName" class="productGeneral"><?php echo $products_name; ?></h1> <!--eof Product Name-->