Page 5 of 6 FirstFirst ... 3456 LastLast
Results 41 to 50 of 51
  1. #41
    Join Date
    Oct 2010
    Posts
    46
    Plugin Contributions
    0

    Default Re: Customizing Product Description Text Formatting on Category Page

    Hi - here's the contents of a product which works:-

    <span class=productDescList><img src="http://www.jambaroo.co.uk/images/BBlueSwatch.gif" alt txt='Baby Blue Boys T-shirts Swatch'><br></br>
    <strong>Sizes: 1-2Y/2-3Y/3-4Y/4-5Y</strong><br></br>
    <ul class="ProductDetailsList">
    <li>Made By With Hugs & Kisses</li>
    <li>Made From 100% Cotton.</li>
    <li>Delivery Time - Within 5 days by 1st Class Mail</li>
    </ul></span>

    <span id=productDesc1>A gorgeous short sleeved pale blue t-shirt , appliqued with a cute little monkey. Perfect for any cheeky little monkey. Comfortable and practical!

    T-shirt is 100% cotton and machine washable. Handmade in the UK.</span>

    And one which seems to be missing from the listing:-

    <span class=productDescList><img src="http://www.jambaroo.co.uk/images/BBlueSwatch.gif" alt="Baby Blue Personalised T-shirts"/>
    <img src="http://www.jambaroo.co.uk/images/BlueSwatch.gif" alt="Blue Personalised T-shirt"/>
    <img src="http://www.jambaroo.co.uk/images/WhiteSwatch.gif" alt="White Personalised T-shirts"/>
    <img src="http://www.jambaroo.co.uk/images/BPinkSwatch.gif" alt="Baby Pink Personalised T-shirts"/>
    <img src="http://www.jambaroo.co.uk/images/RedSwatch.gif" alt="Red Personalised T-shirts"/>
    <img src="http://www.jambaroo.co.uk/images/PinkSwatch.gif" alt="Baby Pink Personalised T-shirts"/>
    <br></br>
    <strong>Sizes: 0-3M/3-6M/6-12M/12-18M</strong>
    <ul class="ProductDetailsList">
    <li>Made By Jack Spratt Baby</li>
    <li>Made From Cotton</li>
    <li>Delivery Time - Dispatched within 5 days by 1st Class Royal Mail</li>
    </ul></span>

    <span id=productDesc1>Available in sizes ranging from 0-3 Months to 12-18 Months and in both Hot Pink and Baby Pink colours.

    Personalise with Name and Date of Birth to Front with Angel Wings on reverse, this design is purely angelic. This Edition features stunning 'Glitz' effect print front and reverse to give it that extra wow factor.

    All T Shirts have been designed to be a stylish slim fit. They have envelope necks for no tears dressing (12 -18 months round neck) and are made in England from 100 % luxury cotton. Please provide Babies First Name and Date of Birth (in number format) in the Personalised Details Section.</span>


    and one from the category which is entirely missing:-

    <span class=productDescList><img src="http://www.jambaroo.co.uk/images/BPinkSwatch.gif" alt txt "Pink baby swatch"><br></br><strong>Sizes: 0-3M/3-6M/6-9M/9-12M</strong><br></br>
    <ul class="ProductDetailsList">
    <li>Made By Milk Two Bunnies</li>
    <li>Made From Cotton & Nylon Tulle with Elasticated Legs & Waist
    li>
    <li>Delivery Time - Delivery Time - Dispatched within 5 days by 1st Class Royal Mail</li>
    </ul>
    </span>
    <span id=productDesc1>The perfect gift for a new baby. A beautifully soft organic cotton T-shirt, appliqued with a Liberty print Bunny, complete with beautifully handmade Tutu Knickers nappy cover in a gift box. With an exclusive Milk Two Bunnies woven label and tab.

    The t-shirt is 100% Organic Cotton ex trims, Liberty print cotton, soft nylon tulle.

    Complete with a white gloss gift box

    Hand wash. We do not recommend tumble drying.

    Limited edition

    Hand made in England</span>

    And finally - here is the product_listing.php contents:-

    <?php
    /**
    * product_listing module
    *
    * @package modules
    * @copyright Copyright 2003-2007 Zen Cart Development Team
    * @copyright Portions Copyright 2003 osCommerce
    * @license http://www.zen-cart.com/license/2_0.txt GNU Public License V2.0
    * @version $Id: product_listing.php 6787 2007-08-24 14:06:33Z drbyte $
    * UPDATED TO WORK WITH COLUMNAR PRODUCT LISTING For Zen Cart v1.3.6 - 10/25/2006
    */
    if (!defined('IS_ADMIN_FLAG')) {
    die('Illegal Access');
    }
    // Column Layout Support originally added for Zen Cart v 1.1.4 by Eric Stamper - 02/14/2004
    // Upgraded to be compatible with Zen-cart v 1.2.0d by Rajeev Tandon - Aug 3, 2004
    // Column Layout Support (Grid Layout) upgraded for v1.3.0 compatibility DrByte 04/04/2006
    //
    if (!defined('PRODUCT_LISTING_LAYOUT_STYLE')) define('PRODUCT_LISTING_LAYOUT_STYLE','rows');
    if (!defined('PRODUCT_LISTING_COLUMNS_PER_ROW')) define('PRODUCT_LISTING_COLUMNS_PER_ROW',3);
    $row = 0;
    $col = 0;
    $list_box_contents = array();
    $title = '';

    $max_results = (PRODUCT_LISTING_LAYOUT_STYLE=='columns' && PRODUCT_LISTING_COLUMNS_PER_ROW>0) ? (PRODUCT_LISTING_COLUMNS_PER_ROW * (int)(MAX_DISPLAY_PRODUCTS_LISTING/PRODUCT_LISTING_COLUMNS_PER_ROW)) : MAX_DISPLAY_PRODUCTS_LISTING;


    $show_submit = zen_run_normal();
    $listing_split = new splitPageResults($listing_sql, $max_results, 'p.products_id', 'page');
    $zco_notifier->notify('NOTIFY_MODULE_PRODUCT_LISTING_RESULTCOUNT', $listing_split->number_of_rows);
    $how_many = 0;

    // Begin Row Layout Header
    if (PRODUCT_LISTING_LAYOUT_STYLE == 'rows') { // For Column Layout (Grid Layout) add on module

    $list_box_contents[0] = array('params' => 'class="productListing-rowheading"');

    $zc_col_count_description = 0;
    $lc_align = '';
    for ($col=0, $n=sizeof($column_list); $col<$n; $col++) {
    switch ($column_list[$col]) {
    case 'PRODUCT_LIST_MODEL':
    $lc_text = TABLE_HEADING_MODEL;
    $lc_align = '';
    $zc_col_count_description++;
    break;
    case 'PRODUCT_LIST_NAME':
    $lc_text = TABLE_HEADING_PRODUCTS;
    $lc_align = '';
    $zc_col_count_description++;
    break;
    case 'PRODUCT_LIST_MANUFACTURER':
    $lc_text = TABLE_HEADING_MANUFACTURER;
    $lc_align = '';
    $zc_col_count_description++;
    break;
    case 'PRODUCT_LIST_PRICE':
    $lc_text = TABLE_HEADING_PRICE;
    $lc_align = 'right' . (PRODUCTS_LIST_PRICE_WIDTH > 0 ? '" width="' . PRODUCTS_LIST_PRICE_WIDTH : '');
    $zc_col_count_description++;
    break;
    case 'PRODUCT_LIST_QUANTITY':
    $lc_text = TABLE_HEADING_QUANTITY;
    $lc_align = 'right';
    $zc_col_count_description++;
    break;
    case 'PRODUCT_LIST_WEIGHT':
    $lc_text = TABLE_HEADING_WEIGHT;
    $lc_align = 'right';
    $zc_col_count_description++;
    break;
    case 'PRODUCT_LIST_IMAGE':
    $lc_text = TABLE_HEADING_IMAGE;
    $lc_align = 'center';
    $zc_col_count_description++;
    break;
    }

    if ( ($column_list[$col] != 'PRODUCT_LIST_IMAGE') ) {
    $lc_text = zen_create_sort_heading($_GET['sort'], $col+1, $lc_text);
    }



    $list_box_contents[0][$col] = array('align' => $lc_align,
    'params' => 'class="productListing-heading"',
    'text' => $lc_text );
    }

    } // End Row Layout Header used in Column Layout (Grid Layout) add on module

    ///////////// HEADER ROW ABOVE /////////////////////////////////////////////////

    $num_products_count = $listing_split->number_of_rows;

    if ($listing_split->number_of_rows > 0) {
    $rows = 0;
    // Used for Column Layout (Grid Layout) add on module
    $column = 0;
    if (PRODUCT_LISTING_LAYOUT_STYLE == 'columns') {
    if ($num_products_count < PRODUCT_LISTING_COLUMNS_PER_ROW || PRODUCT_LISTING_COLUMNS_PER_ROW == 0 ) {
    $col_width = floor(100/$num_products_count) - 0.5;
    } else {
    $col_width = floor(100/PRODUCT_LISTING_COLUMNS_PER_ROW) - 0.5;
    }
    }
    // Used for Column Layout (Grid Layout) add on module


    $listing = $db->Execute($listing_split->sql_query);
    $extra_row = 0;
    while (!$listing->EOF) {

    if (PRODUCT_LISTING_LAYOUT_STYLE == 'rows') { // Used in Column Layout (Grid Layout) Add on module
    $rows++;

    if ((($rows-$extra_row)/2) == floor(($rows-$extra_row)/2)) {
    $list_box_contents[$rows] = array('params' => 'class="productListing-even"');
    } else {
    $list_box_contents[$rows] = array('params' => 'class="productListing-odd"');
    }

    $cur_row = sizeof($list_box_contents) - 1;
    } // End of Conditional execution - only for row (regular style layout)

    $product_contents = array(); // Used For Column Layout (Grid Layout) Add on module

    for ($col=0, $n=sizeof($column_list); $col<$n; $col++) {
    $lc_align = '';
    switch ($column_list[$col]) {
    case 'PRODUCT_LIST_MODEL':
    $lc_align = '';
    $lc_text = $listing->fields['products_model'];
    break;

    case 'PRODUCT_LIST_NAME':
    $lc_align = '';
    if (isset($_GET['manufacturers_id'])) {
    $lc_text = '<h3 class="itemTitle"><a href="' . zen_href_link(zen_get_info_page($listing->fields['products_id']), 'products_id=' . $listing->fields['products_id']) . '">' . $listing->fields['products_name'] . '</a></h3><div class="listingDescription">' . zen_trunc_string(/*zen_clean_html*/(stripslashes(zen_get_products_description($listing->fields['products_id'], $_SESSION['languages_id']))), PRODUCT_LIST_DESCRIPTION) . '</div>' ;
    } else {
    $lc_text = '<h3 class="itemTitle"><a href="' . zen_href_link(zen_get_info_page($listing->fields['products_id']), ($_GET['cPath'] > 0 ? 'cPath=' . $_GET['cPath'] . '&' : '') . 'products_id=' . $listing->fields['products_id']) . '">' . $listing->fields['products_name'] . '</a></h3><div class="listingDescription">' . zen_trunc_string(/*zen_clean_html*/(stripslashes(zen_get_products_description($listing->fields['products_id'], $_SESSION['languages_id']))), PRODUCT_LIST_DESCRIPTION) . '</div>';
    }
    break;

    case 'PRODUCT_LIST_MANUFACTURER':
    $lc_align = '';
    $lc_text = '<a href="' . zen_href_link(FILENAME_DEFAULT, 'manufacturers_id=' . $listing->fields['manufacturers_id']) . '">' . $listing->fields['manufacturers_name'] . '</a>';
    break;
    case 'PRODUCT_LIST_PRICE':
    $lc_price = zen_get_products_display_price($listing->fields['products_id']) . '<br />';
    $lc_align = 'right';
    $lc_text = $lc_price;

    // more info in place of buy now
    $lc_button = '';
    if (zen_has_product_attributes($listing->fields['products_id']) or PRODUCT_LIST_PRICE_BUY_NOW == '0') {
    $lc_button = '<a href="' . zen_href_link(zen_get_info_page($listing->fields['products_id']), 'cPath=' . (($_GET['manufacturers_id'] > 0 and $_GET['filter_id']) > 0 ? zen_get_generated_category_path_rev($_GET['filter_id']) : ($_GET['cPath'] > 0 ? $_GET['cPath'] : zen_get_generated_category_path_rev($listing->fields['master_categories_id']))) . '&products_id=' . $listing->fields['products_id']) . '">' . MORE_INFO_TEXT . '</a>';
    } else {
    if (PRODUCT_LISTING_MULTIPLE_ADD_TO_CART != 0) {
    if (
    // not a hide qty box product
    $listing->fields['products_qty_box_status'] != 0 &&
    // product type can be added to cart
    zen_get_products_allow_add_to_cart($listing->fields['products_id']) != 'N'
    &&
    // product is not call for price
    $listing->fields['product_is_call'] == 0
    &&
    // product is in stock or customers may add it to cart anyway
    ($listing->fields['products_quantity'] > 0 || SHOW_PRODUCTS_SOLD_OUT_IMAGE == 0) ) {
    $how_many++;
    }
    // hide quantity box
    if ($listing->fields['products_qty_box_status'] == 0) {
    $lc_button = '<a href="' . zen_href_link($_GET['main_page'], zen_get_all_get_params(array('action')) . 'action=buy_now&products_id=' . $listing->fields['products_id']) . '">' . zen_image_button(BUTTON_IMAGE_BUY_NOW, BUTTON_BUY_NOW_ALT, 'class="listingBuyNowButton"') . '</a>';
    } else {
    $lc_button = TEXT_PRODUCT_LISTING_MULTIPLE_ADD_TO_CART . "<input type=\"text\" name=\"products_id[" . $listing->fields['products_id'] . "]\" value=\"0\" size=\"4\" />";
    }
    } else {
    // qty box with add to cart button
    if (PRODUCT_LIST_PRICE_BUY_NOW == '2' && $listing->fields['products_qty_box_status'] != 0) {
    $lc_button= zen_draw_form('cart_quantity', zen_href_link(zen_get_info_page($listing->fields['products_id']), zen_get_all_get_params(array('action')) . 'action=add_product&products_id=' . $listing->fields['products_id']), 'post', 'enctype="multipart/form-data"') . '<input type="text" name="cart_quantity" value="' . (zen_get_buy_now_qty($listing->fields['products_id'])) . '" maxlength="6" size="4" /><br />' . zen_draw_hidden_field('products_id', $listing->fields['products_id']) . zen_image_submit(BUTTON_IMAGE_IN_CART, BUTTON_IN_CART_ALT) . '</form>';
    } else {
    $lc_button = '<a href="' . zen_href_link($_GET['main_page'], zen_get_all_get_params(array('action')) . 'action=buy_now&products_id=' . $listing->fields['products_id']) . '">' . zen_image_button(BUTTON_IMAGE_BUY_NOW, BUTTON_BUY_NOW_ALT, 'class="listingBuyNowButton"') . '</a>';
    }
    }
    }
    $the_button = $lc_button;
    $products_link = '<a href="' . zen_href_link(zen_get_info_page($listing->fields['products_id']), 'cPath=' . ( ($_GET['manufacturers_id'] > 0 and $_GET['filter_id']) > 0 ? zen_get_generated_category_path_rev($_GET['filter_id']) : $_GET['cPath'] > 0 ? zen_get_generated_category_path_rev($_GET['cPath']) : zen_get_generated_category_path_rev($listing->fields['master_categories_id'])) . '&products_id=' . $listing->fields['products_id']) . '">' . MORE_INFO_TEXT . '</a>';
    $lc_text .= '<br />' . zen_get_buy_now_button($listing->fields['products_id'], $the_button, $products_link) . '<br />' . zen_get_products_quantity_min_units_display($listing->fields['products_id']);
    $lc_text .= '<br />' . (zen_get_show_product_switch($listing->fields['products_id'], 'ALWAYS_FREE_SHIPPING_IMAGE_SWITCH') ? (zen_get_product_is_always_free_shipping($listing->fields['products_id']) ? TEXT_PRODUCT_FREE_SHIPPING_ICON . '<br />' : '') : '');

    break;
    case 'PRODUCT_LIST_QUANTITY':
    $lc_align = 'right';
    $lc_text = $listing->fields['products_quantity'];
    break;
    case 'PRODUCT_LIST_WEIGHT':
    $lc_align = 'right';
    $lc_text = $listing->fields['products_weight'];
    break;
    case 'PRODUCT_LIST_IMAGE':
    $lc_align = 'center';
    if ($listing->fields['products_image'] == '' and PRODUCTS_IMAGE_NO_IMAGE_STATUS == 0) {
    $lc_text = '';
    } else {
    if (isset($_GET['manufacturers_id'])) {
    $lc_text = '<a href="' . zen_href_link(zen_get_info_page($listing->fields['products_id']), 'cPath=' . (($_GET['manufacturers_id'] > 0 and $_GET['filter_id']) > 0 ? zen_get_generated_category_path_rev($_GET['filter_id']) : ($_GET['cPath'] > 0 ? zen_get_generated_category_path_rev($_GET['cPath']) : zen_get_generated_category_path_rev($listing->fields['master_categories_id']))) . '&products_id=' . $listing->fields['products_id']) . '">' . zen_image(DIR_WS_IMAGES . $listing->fields['products_image'], $listing->fields['products_name'], IMAGE_PRODUCT_LISTING_WIDTH, IMAGE_PRODUCT_LISTING_HEIGHT, 'class="listingProductImage"') . '</a>';
    } else {
    $lc_text = '<a href="' . zen_href_link(zen_get_info_page($listing->fields['products_id']), 'cPath=' . (($_GET['manufacturers_id'] > 0 and $_GET['filter_id']) > 0 ? zen_get_generated_category_path_rev($_GET['filter_id']) : ($_GET['cPath'] > 0 ? zen_get_generated_category_path_rev($_GET['cPath']) : zen_get_generated_category_path_rev($listing->fields['master_categories_id']))) . '&products_id=' . $listing->fields['products_id']) . '">' . zen_image(DIR_WS_IMAGES . $listing->fields['products_image'], $listing->fields['products_name'], IMAGE_PRODUCT_LISTING_WIDTH, IMAGE_PRODUCT_LISTING_HEIGHT, 'class="listingProductImage"') . '</a>';
    }
    }
    break;
    }

    $product_contents[] = $lc_text; // Used For Column Layout (Grid Layout) Option

    if (PRODUCT_LISTING_LAYOUT_STYLE == 'rows') {
    $list_box_contents[$rows][$col] = array('align' => $lc_align,
    'params' => 'class="productListing-data"',
    'text' => $lc_text);
    }
    }

    // add description and match alternating colors
    //if (PRODUCT_LIST_DESCRIPTION > 0) {
    // $rows++;
    // if ($extra_row == 1) {
    // $list_box_description = "productListing-data-description-even";
    // $extra_row=0;
    // } else {
    // $list_box_description = "productListing-data-description-odd";
    // $extra_row=1;
    // }
    // $list_box_contents[$rows][] = array('params' => 'class="' . $list_box_description . '" colspan="' . $zc_col_count_description . '"',
    // 'text' => zen_trunc_string(zen_clean_html(stripslashes(zen_get_products_description($listi ng->fields['products_id'], $_SESSION['languages_id']))), PRODUCT_LIST_DESCRIPTION));
    //}

    // Following code will be executed only if Column Layout (Grid Layout) option is chosen
    if (PRODUCT_LISTING_LAYOUT_STYLE == 'columns') {
    $lc_text = implode('<br />', $product_contents);
    $list_box_contents[$rows][$column] = array('params' => 'class="centerBoxContentsProducts centeredContent back"' . ' ' . 'style="width:' . $col_width . '%;"',
    'text' => $lc_text);
    $column ++;
    if ($column >= PRODUCT_LISTING_COLUMNS_PER_ROW) {
    $column = 0;
    $rows ++;
    }
    }
    // End of Code fragment for Column Layout (Grid Layout) option in add on module
    $listing->MoveNext();
    }
    $error_categories = false;
    } else {
    $list_box_contents = array();

    $list_box_contents[0] = array('params' => 'class="productListing-odd"');
    $list_box_contents[0][] = array('params' => 'class="productListing-data"',
    'text' => TEXT_NO_PRODUCTS);

    $error_categories = true;
    }

    if (($how_many > 0 and $show_submit == true and $listing_split->number_of_rows > 0) and (PRODUCT_LISTING_MULTIPLE_ADD_TO_CART == 1 or PRODUCT_LISTING_MULTIPLE_ADD_TO_CART == 3) ) {
    $show_top_submit_button = true;
    } else {
    $show_top_submit_button = false;
    }
    if (($how_many > 0 and $show_submit == true and $listing_split->number_of_rows > 0) and (PRODUCT_LISTING_MULTIPLE_ADD_TO_CART >= 2) ) {
    $show_bottom_submit_button = true;
    } else {
    $show_bottom_submit_button = false;
    }



    if ($how_many > 0 && PRODUCT_LISTING_MULTIPLE_ADD_TO_CART != 0 and $show_submit == true and $listing_split->number_of_rows > 0) {
    // bof: multiple products
    echo zen_draw_form('multiple_products_cart_quantity', zen_href_link(FILENAME_DEFAULT, zen_get_all_get_params(array('action')) . 'action=multiple_products_add_product'), 'post', 'enctype="multipart/form-data"');
    }

    ?>


    I'll go and have a look at these myself and see if i can suss anything out but i'm pretty stumped as your right... why would only some things work!

    Thanks Jx

  2. #42
    Join Date
    Oct 2010
    Posts
    46
    Plugin Contributions
    0

    Default Re: Customizing Product Description Text Formatting on Category Page

    And the config is set to 2000 as if i set it lower the grid layout goes all wrong!

  3. #43
    Join Date
    Oct 2010
    Posts
    46
    Plugin Contributions
    0

    Default Re: Customizing Product Description Text Formatting on Category Page

    The error log shows:- [14-Dec-2010 07:17:24] PHP Warning: include_once(includes/languages/english.php) [<a href='function.include-once'>function.include-once</a>]: failed to open stream: No such file or directory in /home/jambaro1/public_html/includes/init_includes/init_templates.php on line 72
    [14-Dec-2010 07:17:24] PHP Warning: include_once() [<a href='function.include'>function.include</a>]: Failed opening 'includes/languages/english.php' for inclusion (include_path='.:/usr/lib/php:/usr/local/lib/php') in /home/jambaro1/public_html/includes/init_includes/init_templates.php on line 72

    I don't think i've made any changes to this though?!

  4. #44
    Join Date
    Jul 2005
    Location
    Upstate NY
    Posts
    22,010
    Plugin Contributions
    25

    Default Re: Customizing Product Description Text Formatting on Category Page

    Failed opening 'includes/languages/english.php' for inclusion

    Whether you changed this file or not, it is apparently not being found. Run a refresh on a category that works, then run one on a category that doesn't, and see if there is a new error message and what it says.
    Check that the file is actually there with content (filesize > 0).

  5. #45
    Join Date
    Oct 2010
    Posts
    46
    Plugin Contributions
    0

    Default Re: Customizing Product Description Text Formatting on Category Page

    Well i don't seem to get any errors anymore... but still no gift boxes page and i've still got the missing products (which re-appear if i remove the CSS).

    This one really is weird... i've not made any category specific changes, yet some work and some don't.... i've not made and product specific changes... yet some work and some don't!

    Argh...

  6. #46
    Join Date
    Oct 2010
    Posts
    46
    Plugin Contributions
    0

    Default Re: Customizing Product Description Text Formatting on Category Page

    Righty i think i've fixed my missing category issue... i seemed to have a rogue product (don't know what was up with it but it works now it's deleted.)

    I thought i would delete the category so started moving products... when i noticed that halfway through it stopped working... so realised it was a single product causing the problem.

    Right so now i just need to work out why some of my products are missing from certain categories...... it says showing 1-9 of 13 products but only shows 5... so the DB is right, it knows there should be more... but doesn't show them all.

    Thanks

  7. #47
    Join Date
    Jul 2005
    Location
    Upstate NY
    Posts
    22,010
    Plugin Contributions
    25

    Default Re: Customizing Product Description Text Formatting on Category Page

    When I looked before, the HTML output created by PHP was cutting off just before the product description etc. would be output. CSS styles cannot affect the PHP functioning of the page. There has to be something else (perhaps connected with what you are doing with CSS) that is the real cause.


    Which categories have problems, and which products do not show up?
    Last edited by gjh42; 14 Dec 2010 at 09:41 PM.

  8. #48
    Join Date
    Oct 2010
    Posts
    46
    Plugin Contributions
    0

    Default Re: Customizing Product Description Text Formatting on Category Page

    I fixed the missing category page.... but here's a missing example.. this product is under babies/t-shirts...
    http://www.jambaroo.co.uk/babies/t-s...-glitz-t-shirt

    <span class=productDescList><img src="http://www.jambaroo.co.uk/images/BBlueSwatch.gif" alt="Baby Blue Personalised T-shirts"/>
    <img src="http://www.jambaroo.co.uk/images/BlueSwatch.gif" alt="Blue Personalised T-shirt"/>
    <img src="http://www.jambaroo.co.uk/images/WhiteSwatch.gif" alt="White Personalised T-shirts"/>
    <img src="http://www.jambaroo.co.uk/images/BPinkSwatch.gif" alt="Baby Pink Personalised T-shirts"/>
    <img src="http://www.jambaroo.co.uk/images/RedSwatch.gif" alt="Red Personalised T-shirts"/>
    <img src="http://www.jambaroo.co.uk/images/PinkSwatch.gif" alt="Baby Pink Personalised T-shirts"/>
    <br></br>
    <strong>Sizes: 0-3M/3-6M/6-12M/12-18M</strong>
    <ul class="ProductDetailsList">
    <li>Made By Jack Spratt Baby</li>
    <li>Made From Cotton</li>
    <li>Delivery Time - Dispatched within 5 days by 1st Class Royal Mail</li>
    </ul></span>

    <span id=productDesc1>Available in sizes ranging from 0-3 Months to 12-18 Months and in both Hot Pink and Baby Pink colours.

    Personalise with Name and Date of Birth to Front with Angel Wings on reverse, this design is purely angelic. This Edition features stunning 'Glitz' effect print front and reverse to give it that extra wow factor.

    All T Shirts have been designed to be a stylish slim fit. They have envelope necks for no tears dressing (12 -18 months round neck) and are made in England from 100 % luxury cotton. Please provide Babies First Name and Date of Birth (in number format) in the Personalised Details Section.</span>

    It shows up perfectly without the CSS, but isn't there in the listing when the stylesheet entry is made. If i go straight to the URL it loads fine though.

  9. #49
    Join Date
    Oct 2010
    Posts
    46
    Plugin Contributions
    0

    Default Re: Customizing Product Description Text Formatting on Category Page

    Well its been a very very long evening... but i think i've finally cracked it.

    In both cases it looked like it was rogue products which when i finally worked it out and deleted/amended them, seemed to solve the issues I had. The category one i can't see at all why the product was causing the issue and the product listing on there was a missing >.

    I'm not missing any categories, and the products are showing the reduce listing as I require.

    Sincere thanks for everything... and now i'm going to go to bed!

    Night night from the UK!

  10. #50
    Join Date
    Jul 2005
    Location
    Upstate NY
    Posts
    22,010
    Plugin Contributions
    25

    Default Re: Customizing Product Description Text Formatting on Category Page

    At that link I get the "page not found" page.
    At least now the page output isn't cutting off.
    The listing says "Displaying 1 to 7 (of 7 products)" - how many are supposed to be in T-shirts, Tops & Jumpers?


    Okay, I guess that would explain why it was looking alright when I was examining it:) Glad you got it sorted!

 

 
Page 5 of 6 FirstFirst ... 3456 LastLast

Similar Threads

  1. Description with formatting on Category Listing page
    By vandiermen in forum Templates, Stylesheets, Page Layout
    Replies: 10
    Last Post: 27 Oct 2010, 11:03 AM
  2. Formatting text in category description
    By chuckr in forum Customization from the Admin
    Replies: 1
    Last Post: 2 Aug 2010, 07:35 PM
  3. Formatting text in product description
    By TonyB6 in forum Customization from the Admin
    Replies: 5
    Last Post: 3 May 2010, 03:01 AM
  4. Formatting category description issue
    By godt in forum Templates, Stylesheets, Page Layout
    Replies: 3
    Last Post: 5 Feb 2009, 04:40 AM
  5. Customizing Product Category Page
    By Ahroo in forum Templates, Stylesheets, Page Layout
    Replies: 4
    Last Post: 14 Jun 2007, 05:38 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
  •  
disjunctive-egg
Zen-Cart, Internet Selling Services, Klamath Falls, OR