
Originally Posted by
Get Em Fast
Hey Scott, I've got a question...........This mod pulls the Page Title from the Contact Us page, which end up putting a Title on top of the page like: Ask a Question: Store Title/Tagline - Mozilla FireFox.
What I was wanting to know is how can I make it display the Title like it would for the product page......ie...
Ask a Question: Sterling Silver Money Clip - Mozilla Firefox ?
take includes\modules\meta_tags.php and copy over to your template folder then line 186-187
Code:
// case 'product_info':
case (strstr($_GET['main_page'], 'product_') or strstr($_GET['main_page'], 'document_')):
add to the end
Code:
// case 'product_info':
case (strstr($_GET['main_page'], 'product_') or strstr($_GET['main_page'], 'document_') or strstr($_GET['main_page'], 'ask_a_question')):
Working out for me so far...