Page 40 of 96 FirstFirst ... 3038394041425090 ... LastLast
Results 391 to 400 of 953
  1. #391
    Join Date
    Jul 2009
    Location
    picaflor-azul.com
    Posts
    6,930
    Plugin Contributions
    45

    Default Re: Winchester Responsive

    Quote Originally Posted by kwright View Post
    You're welcome Anne. I'm using v1.3, so it doesn't have the fix. Just downloaded 1.4 to see what else has been updated!

    Thanks again for sharing and supporting such a great responsive template!
    Thank you for using it for your site ;)

    Thanks,

    Anne

  2. #392
    Join Date
    Jul 2005
    Location
    Hoedspruit
    Posts
    528
    Plugin Contributions
    2

    Default Re: Winchester Responsive

    ZC 1.5.4 Winchester Responsive

    http://joburgonline.com


    I have searched through the thread, and looked for the toggle for Discount Coupons and Gift Certificates. The Admin>Modules>Order Totals have been turned off.

    Near the footer, these links still appear:

    Name:  screenshot_near_footer.jpg
Views: 225
Size:  66.8 KB

  3. #393
    Join Date
    Jul 2005
    Location
    Hoedspruit
    Posts
    528
    Plugin Contributions
    2

    Default Re: Winchester Responsive

    Quote Originally Posted by Parafanaylya View Post
    ZC 1.5.4 Winchester Responsive

    http://joburgonline.com


    I have searched through the thread, and looked for the toggle for Discount Coupons and Gift Certificates. The Admin>Modules>Order Totals have been turned off.

    Near the footer, these links still appear:

    Name:  screenshot_near_footer.jpg
Views: 225
Size:  66.8 KB
    Found it

  4. #394
    Join Date
    Jul 2009
    Location
    picaflor-azul.com
    Posts
    6,930
    Plugin Contributions
    45

    Default Re: Winchester Responsive

    Quote Originally Posted by Parafanaylya View Post
    Found it
    I am happy that you figured it out ;)

    Thanks,

    Anne

  5. #395
    Join Date
    Feb 2011
    Posts
    16
    Plugin Contributions
    0

    Default Re: Winchester Responsive

    Try to figure 2-3 things....

    1 - How can I hide the "top specials bar" ?
    2 - How can I hide the menu (categories, information, contact) in the header ?
    3 - Where can I find a comprehensive tutorial about how the "layout boxes controller" work ? I turn thing ON/OFF and don't see change. Ex : language selection. Do I have to turn thing ON and go somewhere else to see it on my page ?

    For the last, it's a beautiful template ! Thanks Anne !

  6. #396
    Join Date
    Jan 2004
    Location
    N of San Antonio TX
    Posts
    9,144
    Plugin Contributions
    11

    Default Re: Winchester Responsive

    Can this be changed from this
    $list_box_contents[0][] = array('params' => 'class="productListing-data"',
    'text' => TEXT_NO_PRODUCTS);

    To this?
    $list_box_contents[0][] = array('params' => 'class="productListing-data"',
    'text' => More new products will be added soon. Please check back later.);
    Quote Originally Posted by picaflor-azul View Post
    It is better to do a devlopers tool kit search for the constant TEXT_NO_PRODUCTS and then add your definition to the language file where it is located.

    Thanks,

    Anne
    I'm thinking that the reason this question was asked is that the cart will show TEXT_NO_PRODUCTS when selecting Featured Products and there are none.
    The correction that I have found for this is in the file includes/modules/winchester_responsive/product_listing.php.
    There seems to be an errant line return in the file that causes the php to break. What that portion of the file is trying to do is to NOT show a Featured Products if there are none.
    I have found that changing
    PHP Code:
    $list_box_contents[0][] = array('params' => 'class="productListing-data"',
                                                
    'text' => TEXT_NO_PRODUCTS); 
    to
    PHP Code:
    $list_box_contents[0][] = array('params' => 'class="productListing-data"','text' => TEXT_NO_PRODUCTS); 
    causes the code to work correctly. IOW, if there are no Featured Products, the customer is not given that as a choice on the Categories page.
    I haven't look to see if this problem is a carry over from the Column Layout mod.

  7. #397
    Join Date
    Jan 2004
    Location
    N of San Antonio TX
    Posts
    9,144
    Plugin Contributions
    11

    Default Re: Winchester Responsive

    Quote Originally Posted by dbltoe View Post
    I'm thinking that the reason this question was asked is that the cart will show TEXT_NO_PRODUCTS when selecting Featured Products and there are none.
    The correction that I have found for this is in the file includes/modules/winchester_responsive/product_listing.php.
    There seems to be an errant line return in the file that causes the php to break. What that portion of the file is trying to do is to NOT show a Featured Products if there are none.
    I have found that changing
    PHP Code:
    $list_box_contents[0][] = array('params' => 'class="productListing-data"',
                                                
    'text' => TEXT_NO_PRODUCTS); 
    to
    PHP Code:
    $list_box_contents[0][] = array('params' => 'class="productListing-data"','text' => TEXT_NO_PRODUCTS); 
    causes the code to work correctly. IOW, if there are no Featured Products, the customer is not given that as a choice on the Categories page.
    I haven't look to see if this problem is a carry over from the Column Layout mod.
    While this did fix part of the problem, if the flexible footer menu still lists Featured, you get the dreaded TEXT_NO_PRODUCTS.
    More research to be done....

  8. #398
    Join Date
    Jul 2009
    Location
    picaflor-azul.com
    Posts
    6,930
    Plugin Contributions
    45

    Default Re: Winchester Responsive

    Quote Originally Posted by dbltoe View Post
    I'm thinking that the reason this question was asked is that the cart will show TEXT_NO_PRODUCTS when selecting Featured Products and there are none.
    The correction that I have found for this is in the file includes/modules/winchester_responsive/product_listing.php.
    There seems to be an errant line return in the file that causes the php to break. What that portion of the file is trying to do is to NOT show a Featured Products if there are none.
    I have found that changing
    PHP Code:
    $list_box_contents[0][] = array('params' => 'class="productListing-data"',
                                                
    'text' => TEXT_NO_PRODUCTS); 
    to
    PHP Code:
    $list_box_contents[0][] = array('params' => 'class="productListing-data"','text' => TEXT_NO_PRODUCTS); 
    causes the code to work correctly. IOW, if there are no Featured Products, the customer is not given that as a choice on the Categories page.
    I haven't look to see if this problem is a carry over from the Column Layout mod.
    Thank you so much for posting ;) I will look into this and add this to a future update.

    Thanks,

    Anne

  9. #399
    Join Date
    Jul 2009
    Location
    picaflor-azul.com
    Posts
    6,930
    Plugin Contributions
    45

    Default Re: Winchester Responsive

    Quote Originally Posted by dbltoe View Post
    While this did fix part of the problem, if the flexible footer menu still lists Featured, you get the dreaded TEXT_NO_PRODUCTS.
    More research to be done....
    That's really strange. Please let me know if you figure anything out about this.

    Thanks,

    Anne

  10. #400
    Join Date
    Jul 2009
    Location
    picaflor-azul.com
    Posts
    6,930
    Plugin Contributions
    45

    Default Re: Winchester Responsive

    Quote Originally Posted by EricBel View Post
    Try to figure 2-3 things....

    1 - How can I hide the "top specials bar" ?
    2 - How can I hide the menu (categories, information, contact) in the header ?
    3 - Where can I find a comprehensive tutorial about how the "layout boxes controller" work ? I turn thing ON/OFF and don't see change. Ex : language selection. Do I have to turn thing ON and go somewhere else to see it on my page ?

    For the last, it's a beautiful template ! Thanks Anne !
    1 and 2. If you are going to make css changes to the template I recommend using chrome and its web developer tools. They will tell you the exact line of the file that needs to be edited.

    3. If you do a search on the FAQs on this site you will find a tutorial about the layout boxes controller

    Thanks,

    Anne

 

 
Page 40 of 96 FirstFirst ... 3038394041425090 ... LastLast

Similar Threads

  1. v154 Winchester Black Responsive Template
    By picaflor-azul in forum Addon Templates
    Replies: 497
    Last Post: 24 Apr 2023, 09:29 PM
  2. v155 Winchester Black responsive - looking for Social media icon flexible footer fix
    By MattA66 in forum Templates, Stylesheets, Page Layout
    Replies: 9
    Last Post: 8 Jun 2021, 05:34 PM
  3. v155 Responsive Classic vs Responsive Sheffield Blue vs ?
    By Zean in forum Templates, Stylesheets, Page Layout
    Replies: 0
    Last Post: 13 May 2016, 07:01 AM
  4. v154 Where do I find the images for sliders, using Winchester Responsive Black
    By zbdude in forum Templates, Stylesheets, Page Layout
    Replies: 1
    Last Post: 3 Apr 2016, 12:00 AM
  5. v153 Winchester Responsive - Trouble resizing carousel size?
    By hols.club in forum Templates, Stylesheets, Page Layout
    Replies: 2
    Last Post: 26 Nov 2014, 05:09 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