Results 1 to 4 of 4
  1. #1
    Join Date
    Feb 2008
    Location
    Washington State
    Posts
    238
    Plugin Contributions
    0

    Default Product description text limit

    How can I increase the HTML text limit for the product description.

    Products Description: HTML / TEXT editor.

  2. #2
    Join Date
    Sep 2007
    Location
    Vancouver, CA
    Posts
    94
    Plugin Contributions
    0

    Default Re: Product description text limit

    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.

  3. #3
    Join Date
    Sep 2007
    Location
    Vancouver, CA
    Posts
    94
    Plugin Contributions
    0

    Default Re: Product description text limit

    Ok the solution is here in this post. I will not duplicate it here so that this thread can die.

    Best Wishes,

  4. #4
    Join Date
    Feb 2008
    Location
    Washington State
    Posts
    238
    Plugin Contributions
    0

    Default Re: Product description text limit

    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.

    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");
     }
    ?>
    I hope that others can use this trick as well.

 

 

Similar Threads

  1. Text color changes on product description page
    By outpostmontana in forum Templates, Stylesheets, Page Layout
    Replies: 0
    Last Post: 13 Oct 2007, 11:17 PM
  2. Add 'out-of-stock' text to product description list
    By leeudon in forum Templates, Stylesheets, Page Layout
    Replies: 1
    Last Post: 27 Jun 2007, 03:53 AM
  3. Help me fix this text wrap on product description please
    By redge in forum Templates, Stylesheets, Page Layout
    Replies: 3
    Last Post: 24 Oct 2006, 11:32 PM
  4. Move product description text
    By onisama in forum Templates, Stylesheets, Page Layout
    Replies: 2
    Last Post: 14 Jul 2006, 04:36 PM

Bookmarks

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •