Custom Product Types

Hi Guys,

Just want to put this in here in case it helps anyone in the future as I could not find the answer in the docs.

If you have made any custom product types (e.g product_car) you will need to add that into the file /includes/extra_datafiles/ceon_uri_mapping_product_pages.php or else these will not output on your page correctly.

For Example

PHP Code:
$ceon_uri_mapping_product_pages array_merge(array(
    
FILENAME_DOCUMENT_GENERAL_INFO,
    
FILENAME_DOCUMENT_PRODUCT_INFO,
    
FILENAME_PRODUCT_INFO,
    
FILENAME_PRODUCT_CAR_INFO,
    
FILENAME_PRODUCT_BOOK_INFO,
    
FILENAME_PRODUCT_FREE_SHIPPING_INFO,
    
FILENAME_PRODUCT_MUSIC_INFO
    
), $ceon_uri_mapping_product_pages);