Page 2 of 3 FirstFirst 123 LastLast
Results 11 to 20 of 23
  1. #11
    Join Date
    Nov 2006
    Posts
    73
    Plugin Contributions
    0

    Default Re: New Products Layout, and Customisation

    Quote Originally Posted by qhome View Post
    Well I'm not sure how far you are lookin to go. I mainly wanted the text on the right side instead of underneath. I got that far.
    To be honest I'd be happy with anything. A separator in between the table, so there's some sort of grid alignment would be fantastic, and if there's a way to get it to work programatically, all the better. To fill in some of the spare space below the product name with the beginnings of a description would be overwhelmingly awesome, but if that's too hard then I'm not overly fussed. I think that an add-to-cart button would be superflous though. People will read the description before hitting buy.

    If you are happy to share your code, (and from your past efforts it seems like you are! Tabbed products looks awesome and really suits my line of sales, so integrating that is the next job for me) I'd be more than happy with whatever you manage to implement for yourself. Bringing some semblance of neatness to the front page is my overall goal for this bit of work.

  2. #12
    Join Date
    Feb 2004
    Posts
    1,774
    Plugin Contributions
    14

    Default Re: New Products Layout, and Customisation

    Quote Originally Posted by dvasdekis View Post
    To be honest I'd be happy with anything. A separator in between the table, so there's some sort of grid alignment would be fantastic, and if there's a way to get it to work programatically, all the better. To fill in some of the spare space below the product name with the beginnings of a description would be overwhelmingly awesome, but if that's too hard then I'm not overly fussed. I think that an add-to-cart button would be superflous though. People will read the description before hitting buy.

    If you are happy to share your code, (and from your past efforts it seems like you are! Tabbed products looks awesome and really suits my line of sales, so integrating that is the next job for me) I'd be more than happy with whatever you manage to implement for yourself. Bringing some semblance of neatness to the front page is my overall goal for this bit of work.
    Here is what I have so far:
    http://www.unbannable.com/zen/index.php?main_page=index

    Note I only changed the Monthly New Products box so far. I have to do the same for:
    Monthly Featured, and Monthly Specials but they should be really quick since the bulk of the work was done in the tpl_tabular file.

    I am also wondering tho how hard it would be to implement them similar to the way the Configuration->New Listing works so you can use simple 4-char mapping similar to the way it shows up on the New Products, Specials, All products listing pages (which are different than the Monthly displays)

    The Additional Images, Customer Also Purchased, and Cross Sell also use the tpl_tabular_php file so I will either have to do it to them as well or make a separate tpl_tabular file for them.
    Last edited by qhome; 12 Dec 2006 at 05:02 PM.

  3. #13
    Join Date
    Feb 2004
    Posts
    1,774
    Plugin Contributions
    14

    Default Re: New Products Layout, and Customisation

    ok i got it on all the "monthly" boxes. Tested with all different column amounts, although any more than 4 will cause massive page stretching so I think it would be wise to look into making the text location configurable so that the user can decide where it should be. I'll also look into adding a short description and add to cart button, making them both user configurable.

  4. #14
    Join Date
    Apr 2006
    Location
    West Salem, IL
    Posts
    2,888
    Plugin Contributions
    0

    Default Re: New Products Layout, and Customisation

    I took a peek.....and I have to say most excellent work
    Mike
    AEIIA - Zen Cart Certified & PCI Compliant Hosting
    The Zen Cart Forum...Better than a monitor covered with post-it notes!

  5. #15
    Join Date
    Nov 2006
    Posts
    73
    Plugin Contributions
    0

    Default Re: New Products Layout, and Customisation

    Quote Originally Posted by barco57 View Post
    I took a peek.....and I have to say most excellent work
    Indeed it is. As for how to implement it, that's another matter.

    Would it be as simple as copying the tpl_tabular file? Surely there's more to it than that.

  6. #16
    Join Date
    Feb 2004
    Posts
    1,774
    Plugin Contributions
    14

    Default Re: New Products Layout, and Customisation

    Quote Originally Posted by dvasdekis View Post
    Indeed it is. As for how to implement it, that's another matter.

    Would it be as simple as copying the tpl_tabular file? Surely there's more to it than that.
    Ya it always simple with zen :)

    Just copy:

    includes/modules/new_products.php
    includes/modules/featured_products.php
    includes/modules/specials_index.php
    includes/templates/YourTemplate/common/tpl_columnar_display.php

    into override folders for the main functionality.

    I'm still looking at:
    - how the number based location thing works but that would still only be a few database entries. that might be saved for an upgrade to the contrib tho
    - Adding short descriptions
    - Adding more info or Buyitnow link based on if there are attribs or not. Similar to the product_listing page.
    Last edited by qhome; 13 Dec 2006 at 12:16 PM.

  7. #17
    Join Date
    Nov 2006
    Posts
    73
    Plugin Contributions
    0

    Default Re: New Products Layout, and Customisation

    Well, I'll keep checking this thread for when you decide to make it public.

    Thanks for the effort!

  8. #18
    Join Date
    Apr 2006
    Location
    Labuan Island
    Posts
    361
    Plugin Contributions
    2

    Default New Products Layout, and Customisation

    Hi Q,

    I really appreciate your effort! It is very nice indeed... What I really like is how you gonna put the 'Add to Cart' or 'More Info' link on it...
    [FONT=Comic Sans MS]"Whether you think you can, or you think you can't... YOU ARE RIGHT."[/FONT]
    [FONT=Comic Sans MS]GOOD LUCK !!![/FONT]

  9. #19
    Join Date
    Feb 2004
    Posts
    1,774
    Plugin Contributions
    14

    Default Re: New Products Layout, and Customisation

    Quote Originally Posted by tajul_ashyqin View Post
    Hi Q,

    I really appreciate your effort! It is very nice indeed... What I really like is how you gonna put the 'Add to Cart' or 'More Info' link on it...
    OK I have this so far:
    http://unbannable.com/zen/

    - (for new products only at this point) I've removed the quantity add at this point and left only buy now or more info but i may put it back and allow you to choose how you want to display it but the quantity box stuff was taken from the product_listing page which uses a global add to cart button at the bottom when using quantities. So I may either just hack a button in underneath each product or replicate the code method from the product info page instead.

    - I've also enabled the ability to put the text to the left, right, or bottom of the image for each the new products, specials, and featured products. (currently showing text to the right)

    - I need to make some additional support for additional images and customers also purchased as they use the tpl_columnar as well and need to be updated with supported tables.

  10. #20
    Join Date
    Apr 2006
    Location
    Labuan Island
    Posts
    361
    Plugin Contributions
    2

    Default New Products Layout, and Customisation

    Quote Originally Posted by qhome View Post
    OK I have this so far:
    http://unbannable.com/zen/

    - (for new products only at this point) I've removed the quantity add at this point and left only buy now or more info but i may put it back and allow you to choose how you want to display it but the quantity box stuff was taken from the product_listing page which uses a global add to cart button at the bottom when using quantities. So I may either just hack a button in underneath each product or replicate the code method from the product info page instead.

    - I've also enabled the ability to put the text to the left, right, or bottom of the image for each the new products, specials, and featured products. (currently showing text to the right)

    - I need to make some additional support for additional images and customers also purchased as they use the tpl_columnar as well and need to be updated with supported tables.
    I like it! I think you should expand the 'Buy Now' and '...more info' link to the featured & monthly specials products and if you can add a 'quantity box', its should be helpful.
    [FONT=Comic Sans MS]"Whether you think you can, or you think you can't... YOU ARE RIGHT."[/FONT]
    [FONT=Comic Sans MS]GOOD LUCK !!![/FONT]

 

 
Page 2 of 3 FirstFirst 123 LastLast

Similar Threads

  1. v150 All Products and New Products Layout
    By Scully in forum Templates, Stylesheets, Page Layout
    Replies: 0
    Last Post: 30 Apr 2012, 09:05 PM
  2. New pages and page specific customisation
    By acummins in forum Templates, Stylesheets, Page Layout
    Replies: 23
    Last Post: 24 Feb 2010, 11:17 PM
  3. New Products and All products layout help
    By LissaE in forum Templates, Stylesheets, Page Layout
    Replies: 4
    Last Post: 26 Dec 2009, 11:32 AM
  4. New products and current catagories layout
    By Natural Tone in forum Templates, Stylesheets, Page Layout
    Replies: 1
    Last Post: 25 Jun 2008, 08:46 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