Page 1 of 3 123 LastLast
Results 1 to 10 of 23
  1. #1
    Join Date
    Jan 2008
    Posts
    36
    Plugin Contributions
    0

    Default Remove price from main page?

    Hi guys,
    Is there anyway to remove the pric from beneath the products on the main hompage, so that to find out the price of the product/attributes the customer has to click to get the product page.

    Any ideas?

    Cheers

  2. #2
    Join Date
    Aug 2005
    Location
    Arizona
    Posts
    27,755
    Plugin Contributions
    9

    Default Re: Remove orice from main page?

    There can be a few different listing on the home page

    Post a link to your site
    Zen-Venom Get Bitten

  3. #3
    Join Date
    Jan 2008
    Posts
    36
    Plugin Contributions
    0

    Default Re: Remove orice from main page?

    http://firstrowtickets.co.uk/shop/

    would llike the price removed from underneath the product names if possible

  4. #4
    Join Date
    Aug 2005
    Location
    Arizona
    Posts
    27,755
    Plugin Contributions
    9

    Default Re: Remove price from main page?

    Currently you have

    Featured
    Specials
    and the "Whats New" module displayed ( this is titled "new")

    Featured main page:
    includes/modules/featured_products.php
    find this part of the code
    Code:
    IMAGE_FEATURED_PRODUCTS_LISTING_WIDTH, IMAGE_FEATURED_PRODUCTS_LISTING_HEIGHT) . '</a><br />') . '<a href="' . zen_href_link(zen_get_info_page($featured_products->fields['products_id']), 'cPath=' . $productsInCategory[$featured_products->fields['products_id']] . '&products_id=' . $featured_products->fields['products_id']) . '">' . $featured_products->fields['products_name'] . '</a><br />' . $products_price);
    edit to look like this
    Code:
    IMAGE_FEATURED_PRODUCTS_LISTING_WIDTH, IMAGE_FEATURED_PRODUCTS_LISTING_HEIGHT) . '</a><br />') . '<a href="' . zen_href_link(zen_get_info_page($featured_products->fields['products_id']), 'cPath=' . $productsInCategory[$featured_products->fields['products_id']] . '&products_id=' . $featured_products->fields['products_id']) . '">' . $featured_products->fields['products_name']);
    Specials:
    includes/modules/specials_index.php

    Cut/remove the highlighted code
    Code:
    SMALL_IMAGE_WIDTH, SMALL_IMAGE_HEIGHT) . '</a><br />') . '<a href="' . zen_href_link(zen_get_info_page($specials_index->fields['products_id']), 'cPath=' . $productsInCategory[$specials_index->fields['products_id']] . '&products_id=' . $specials_index->fields['products_id']) . '">' . $specials_index->fields['products_name'] . '</a><br />' . $products_price);
    Place your edited copies in a folder you create for your template and this is currently
    includes/modules/cherry_zen/

    Different for the whats new on main page maybe another will post it or I will get back to it later
    Zen-Venom Get Bitten

  5. #5
    Join Date
    Jan 2008
    Posts
    36
    Plugin Contributions
    0

    Default Re: Remove price from main page?

    Thank you my friend. Worked a treat, even found out how to do the new products ones. One more question - how can i get rid of the prices in the sideboxes too. Seems stupid to have removed them from the main page but them still show on the side boxes.

  6. #6
    Join Date
    Aug 2005
    Location
    Arizona
    Posts
    27,755
    Plugin Contributions
    9

    Default Re: Remove price from main page?

    how can i get rid of the prices in the sideboxes too.
    Gotta know which side boxes you are displaying

    Post a link
    Zen-Venom Get Bitten

  7. #7
    Join Date
    Jan 2008
    Posts
    36
    Plugin Contributions
    0

    Default Re: Remove price from main page?

    Specials and Whats new they are. Thanks

  8. #8
    Join Date
    Aug 2005
    Location
    Arizona
    Posts
    27,755
    Plugin Contributions
    9

    Default Re: Remove price from main page?

    New side box
    in a copy of tpl_whats_new.php for your template
    find and rem out
    Code:
    $content .= '<div>' . $whats_new_price . '</div>';
    Specials
    in a copy of tpl_specials.php for your template
    find and rem out
    Code:
    $content .= '<div>' . $specials_box_price . '</div>';
    Zen-Venom Get Bitten

  9. #9
    Join Date
    Jan 2008
    Posts
    36
    Plugin Contributions
    0

    Default Re: Remove price from main page?

    Brilliant, cheers.

  10. #10
    Join Date
    Jan 2008
    Posts
    36
    Plugin Contributions
    0

    Default Re: Remove price from main page?

    Need to resurrect this thread. Do you know if its possible to add the model and manufacturer beneath the product image? where the price once was? Is this possible?

 

 
Page 1 of 3 123 LastLast

Similar Threads

  1. remove sideboxes from main page
    By johnybravo in forum Templates, Stylesheets, Page Layout
    Replies: 3
    Last Post: 25 Sep 2011, 11:54 AM
  2. Remove MAIN_TEXT from main page
    By sgspeer in forum Templates, Stylesheets, Page Layout
    Replies: 2
    Last Post: 10 Aug 2010, 05:05 AM
  3. Remove Sideboxes from the Main Page?
    By Dimascus in forum Basic Configuration
    Replies: 2
    Last Post: 18 Dec 2009, 01:30 AM
  4. Remove email box from main page
    By beydar in forum General Questions
    Replies: 4
    Last Post: 23 Jun 2008, 10:24 PM
  5. Remove products from main page
    By xman888 in forum Templates, Stylesheets, Page Layout
    Replies: 2
    Last Post: 23 Jan 2008, 04:58 AM

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