How can I increase the HTML text limit for the product description.
Products Description: HTML / TEXT editor.
How can I increase the HTML text limit for the product description.
Products Description: HTML / TEXT editor.
I don't have an answer, but I have just run up against this snag too. I use the tabbed products lite, which makes it easy to include a lot of information while keeping it neat. If I can find a solution, I will post it.
Todd, a grateful New Zenner
my sites:
http://www.certifiedbattery.com
http://www.pccapital.ca
http://www.upstartbattery.com
Ok the solution is here in this post. I will not duplicate it here so that this thread can die.
Best Wishes,
Todd, a grateful New Zenner
my sites:
http://www.certifiedbattery.com
http://www.pccapital.ca
http://www.upstartbattery.com
I had already created a work around for the limit by editing the tbl_products_info_display.php
I placed a if / else statement with a php include for the product type then it would include the extra text.
I hope that others can use this trick as well.Code:<?php if($_GET['products_id']==1) { include("CD1.php"); } elseif($_GET['products_id']==2) { include("CD2.php"); } elseif($_GET['products_id']==3) { include("CD3.php"); } elseif($_GET['products_id']==4) { include("CD4.php"); } elseif($_GET['products_id']==5) { include("CD5.php"); } elseif($_GET['products_id']==6) { include("CD6.php"); } elseif($_GET['products_id']==7) { include("CD7.php"); } ?>
Bookmarks