This page shows how to create custom fields on a product page and I was able to get this to work: https://www.amember.com/docs/How_to_add_fields_to_a_product Is there a way to add these custom fields onto the product page?
Here is code to access field value from product object: PHP: $product->data()->get('field_name'); But I guess you ask how to access product object. What is file where you want to access it?
The detail page that the cart takes you to when you click on a product. /amember/product/product-title
Template responsible for this page is: application/cart/views/blocks/product.phtml You can use this code within template file: PHP: <?php p($product->data()->get('field_name')) ?>
Thank you Caesar! That works wonderfully. I had not realized you could also copy the templates from the cart folder over. I thought that only worked on \application\default\views. That makes stuff much easier. Thanks again. I just purchased my updates again. I love amember!
Yes, you can copy any template to theme folder in order to customize it. Just keep same relative folder path. You are welcome!