Posted - 12/12/2025 : 07:07:21
quote: QUESTION Is there a way to FORCE the product page, to go to another, renamed PRODDETAIL page?
Just follow the link Vince posted and create your own product detail page for that particular product, then set it in the admin to point to that page name. So take a copy of your proddetail.php file, rename it to anything you like, for example my-new-product.php, look up the product ID, then add the following<?php session_cache_limiter('none'); session_start(); ob_start(); include "vsadmin/db_conn_open.php"; include "vsadmin/inc/languagefile.php"; include "vsadmin/includes.php"; include "vsadmin/inc/incfunctions.php"; $explicitid="your-prod-id";?> <?php include "vsadmin/inc/incproddetail.php" ?> Then in the admin set the page name my-new-product.php in the optional url for that product *Contact Us**Buy The PHP Capture Card Plugin**Rate Our Services/View Our Feedback*
Edited by - Phil on 12/12/2025 07:22:54
|