Results 1 to 5 of 5
  1. #1
    Join Date
    Nov 2006
    Posts
    88
    Plugin Contributions
    0

    Default Product listing - move price/more info link

    I would like to move the third colum so that the price and a "more info" link are displayed underneath the description.

    http://www.girleshop.co.uk/dresses-c-11.html


    How do I go about doing this?

  2. #2
    Join Date
    Nov 2006
    Posts
    88
    Plugin Contributions
    0

    Default Re: Product listing - move price/more info link

    Is this possible? I've looked in tpl_tabular_display.tpl but i'm not sure how to edit this?

  3. #3
    Join Date
    Aug 2007
    Posts
    9
    Plugin Contributions
    0

    Default Re: Product listing - move price/more info link

    Hey RobM,

    I've been trying to do the same thing - sorta - by moving the price under. Unfortunately, the price is not associated with any classes or id's, so it's very hard to get to move unless you can read PHP and edit with a bit of knowing what you are doing.

    For the more info button, you can edit the class .listingBuyNowButton and change the CSS on it.

    For by Buy Now/more info piece, I found out you need to have the Buy Now button there (you can set this in your Admin - config - product listing), and you can edit this class. For mine, I have done:

    Code:
    .listingBuyNowButton {
    	position:relative;
    	left:-370px;
    	top:50px;
    }
    This moves it over and under the description text. Try that and see what it does..

    Hope this can be of some help!

  4. #4
    Join Date
    Apr 2010
    Location
    Seattle, WA
    Posts
    45
    Plugin Contributions
    0

    Default Re: Product listing - move price/more info link

    in admin -> config -> Display Product Price/Add to Cart in the box if there is a 0 it is off any other number grater is the sort order. Try putting in 100 it should move it down. no css or coding required

    Zen Cart Consulting

  5. #5
    Join Date
    Aug 2009
    Posts
    210
    Plugin Contributions
    1

    Default Re: Product listing - move price/more info link

    If you do need a class for the price on the product listing page find
    Code:
            $lc_price = zen_get_products_display_price($listing->fields['products_id']) . '<br />';
    and replace it with
    Code:
            $lc_price = '<div class="price">' . zen_get_products_display_price($listing->fields['products_id']) . '<br /></div>';

 

 

Similar Threads

  1. v151 REplace more info.. with PRICE on product listing information
    By cyberfolli in forum Templates, Stylesheets, Page Layout
    Replies: 4
    Last Post: 3 Oct 2012, 04:08 PM
  2. Add more info link to product listing description when description is truncated
    By MaureenT in forum Templates, Stylesheets, Page Layout
    Replies: 11
    Last Post: 16 Sep 2010, 05:44 PM
  3. Product listing more info link
    By 121webconsultancy in forum Templates, Stylesheets, Page Layout
    Replies: 5
    Last Post: 27 Jan 2009, 12:26 AM
  4. Move forum link to more info..
    By vik007 in forum General Questions
    Replies: 3
    Last Post: 25 Feb 2007, 03:36 AM
  5. Display more info link in Product Listing
    By numenor in forum Templates, Stylesheets, Page Layout
    Replies: 2
    Last Post: 9 Jul 2006, 01:56 PM

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