Hu,
Yes, I see, remove it please and I will take a look
Pm, was sent to you also
Hu,
Yes, I see, remove it please and I will take a look
Pm, was sent to you also
Are You Vulnerable for an Accessibility Lawsuit?
myZenCartHost.com - Zen Cart Certified, PCI Compatible Hosting by JEANDRET
Free SSL, Domain, and MagicThumb with semi-annual and longer hosting
Same issue in ZC 1.3.9h
I like to move the product description to under the price and left align with the price.
I had a look in CSS file, didn't find .main
You will find the featured here:
admin panel/ configuration/ featured listing
Are You Vulnerable for an Accessibility Lawsuit?
myZenCartHost.com - Zen Cart Certified, PCI Compatible Hosting by JEANDRET
Free SSL, Domain, and MagicThumb with semi-annual and longer hosting
Product description cannot be done in the above panel.
I found the template file and jig it there sucessfully.
Now , can't find reference to "more info". I wamt to move that too, if I could
Hello,
I have exactly the same issue with "All Listings". I would like the image to be to the left and description to the right - below the product name, but above the price and add to cart button. Just like it is on the individual product page.
Searched for it on the forums and found this thread, which is not finished. Can someone explain how to do this please?
I have the newest Zen Cart 1.5.0
Thank you.
OK, my husband fixed it for me, but I thought I'd share a little bit.
You need this file: tpl_modules_products_all_listing.php, which is in \includes\templates\template_default\templates.
Copy the whole templates folder into includes\templates\classic before you make changes.
The description - look for $display_products_description - is under the picture, because it is in its own row in the table. What you have to do is to remove the row and copy the code into the same column as the name. Make sure you put it inside the "if" statement that checks for the name so you will only have one description per name.
Here's the code:Code:if ($disp_sort_order->fields['configuration_key'] == 'PRODUCT_ALL_LIST_NAME') { echo $display_products_name; if (PRODUCT_ALL_LIST_DESCRIPTION > '0') { echo $display_products_description; echo '<br /><br />'; } }
Actually, it should be copied to includes/templates/your_custom_template. One should not use classic or template_default for edited/changed files.You need this file: tpl_modules_products_all_listing.php, which is in \includes\templates\template_default\templates.
Copy the whole templates folder into includes\templates\classic before you make changes.