Page 54 of 85 FirstFirst ... 444525354555664 ... LastLast
Results 531 to 540 of 842
  1. #531
    Join Date
    Jan 2014
    Location
    United States
    Posts
    5
    Plugin Contributions
    0

    Default Re: Sheffield Blue Template Support Thread

    Hello Anne!

    I love this template but I'be been having some problems where my site is loading blank pages. I looked at the debug log and it says:

    PHP Warning: Cannot modify header information - headers already sent by (output started at /home2/dabbersd/public_html/includes/languages/english/extra_definitions/sheffield_blue/headermenu.php:2) in /home2/dabbersd/public_html/includes/functions/functions_general.php on line 45

    This is whats in my functions_general.php:
    // clean up URL before executing it
    while (strstr($url, '&&')) $url = str_replace('&&', '&', $url);
    while (strstr($url, '&&')) $url = str_replace('&&', '&', $url);
    // header locates should not have the & in the address it breaks things
    while (strstr($url, '&')) $url = str_replace('&', '&', $url);

    if ($httpResponseCode == '') {
    header('Location: ' . $url); [<- line 45]
    session_write_close();
    } else {
    header('Location: ' . $url, TRUE, (int)$httpResponseCode);
    session_write_close();
    }

    exit();
    }

    I don't really know anything about PHP so I don't know how to even approach fixing the problem. Any suggestions would be greatly appreciated.

    Also here's some extra information in case it will help. My site is using both the Sheffield Blue template and the Ceon URI Mapping module. The blank pages only appear when using this specific template and URI mapping module at the same time, and only in subcategories that have only one product. Here is a link to the page that is having problems http://www.dabbersdoodle.com/shop when you click on "original" it only displays a blank page http://www.dabbersdoodle.com/shop/originals.

    Thanks again,
    Hadley

  2. #532
    Join Date
    Jul 2009
    Location
    picaflor-azul.com
    Posts
    6,928
    Plugin Contributions
    45

    Default Re: Sheffield Blue Template Support Thread

    Quote Originally Posted by dabbers View Post
    Hello Anne!

    I love this template but I'be been having some problems where my site is loading blank pages. I looked at the debug log and it says:

    PHP Warning: Cannot modify header information - headers already sent by (output started at /home2/dabbersd/public_html/includes/languages/english/extra_definitions/sheffield_blue/headermenu.php:2) in /home2/dabbersd/public_html/includes/functions/functions_general.php on line 45

    This is whats in my functions_general.php:
    // clean up URL before executing it
    while (strstr($url, '&&')) $url = str_replace('&&', '&', $url);
    while (strstr($url, '&&')) $url = str_replace('&&', '&', $url);
    // header locates should not have the & in the address it breaks things
    while (strstr($url, '&')) $url = str_replace('&', '&', $url);

    if ($httpResponseCode == '') {
    header('Location: ' . $url); [<- line 45]
    session_write_close();
    } else {
    header('Location: ' . $url, TRUE, (int)$httpResponseCode);
    session_write_close();
    }

    exit();
    }

    I don't really know anything about PHP so I don't know how to even approach fixing the problem. Any suggestions would be greatly appreciated.

    Also here's some extra information in case it will help. My site is using both the Sheffield Blue template and the Ceon URI Mapping module. The blank pages only appear when using this specific template and URI mapping module at the same time, and only in subcategories that have only one product. Here is a link to the page that is having problems http://www.dabbersdoodle.com/shop when you click on "original" it only displays a blank page http://www.dabbersdoodle.com/shop/originals.

    Thanks again,
    Hadley

    If you install a new template, then you need to copy any override files for modules that you have installed on your old template to the new template override directory.

    Thanks,

    Anne

  3. #533
    Join Date
    Jan 2014
    Posts
    32
    Plugin Contributions
    0

    Default Re: Sheffield Blue Template Support Thread

    Hi,
    my site is starting to look good. I made some changes in includes / templates / sheffield_blue / css / stylesheet.css

    If you look at the site www.kite-addic***tion.es/tienda (REMOVE THE ***)

    you can see the prices look bigger now, which its something i like. The problem comes when a product hasnt got a special discount the price still figures in small size. Cannot figure out which style is, or if it even has any, i dont think it has.

    You can see products without discount here: http://kite-addiction.es/tienda/inde...ex&cPath=10_28

    Any help?

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

    Default Re: Sheffield Blue Template Support Thread

    Quote Originally Posted by speedyrider View Post
    Hi,
    my site is starting to look good. I made some changes in includes / templates / sheffield_blue / css / stylesheet.css

    If you look at the site www.kite-addic***tion.es/tienda (REMOVE THE ***)

    you can see the prices look bigger now, which its something i like. The problem comes when a product hasnt got a special discount the price still figures in small size. Cannot figure out which style is, or if it even has any, i dont think it has.

    You can see products without discount here: http://kite-addiction.es/tienda/inde...ex&cPath=10_28

    Any help?
    There is no class on the price. You can add one in includes/modules/override/product_listing.php

    Thanks,

    Anne

  5. #535
    Join Date
    Jan 2014
    Posts
    32
    Plugin Contributions
    0

    Default Re: Sheffield Blue Template Support Thread

    Quote Originally Posted by picaflor-azul View Post
    There is no class on the price. You can add one in includes/modules/override/product_listing.php

    Thanks,

    Anne
    thanks but i cannot figure out how to modify that file. I want to include something like this: .normalprice {font-size:180%;}
    but dont know how or where, if you could help me.

    thanks

  6. #536
    Join Date
    Jul 2012
    Posts
    16,798
    Plugin Contributions
    17

    Default Re: Sheffield Blue Template Support Thread

    Quote Originally Posted by speedyrider View Post
    thanks but i cannot figure out how to modify that file. I want to include something like this: .normalprice {font-size:180%;}
    but dont know how or where, if you could help me.

    thanks
    What she is/was saying, is that currently there is no CSS "tag" to attach your desired setting. The suggestion offered, was to modify the product_listing.php file that is located in the modules directory under the template directory name being used/accessed. (Override directory) if that folder (includes/modules/YOUR_TEMPLATE) does not contain the product_listing.php file, then it is suggested to copy it from the /includes/modules directory. Then, once in that file, you will need to add CSS related code around the base price so that in your CSS file(s) you can use the above assignment.

    That help out a little? Sorry don't have an exact line number or anything as to where to add the additional code.
    ZC Installation/Maintenance Support <- Site
    Contribution for contributions welcome...

  7. #537
    Join Date
    Jul 2009
    Location
    picaflor-azul.com
    Posts
    6,928
    Plugin Contributions
    45

    Default Re: Sheffield Blue Template Support Thread

    Quote Originally Posted by speedyrider View Post
    thanks but i cannot figure out how to modify that file. I want to include something like this: .normalprice {font-size:180%;}
    but dont know how or where, if you could help me.

    thanks
    Take a look at the SNAF module. I believe that it includes separate classes for the various elements on the product listing page.

    Thanks,

    Anne

  8. #538
    Join Date
    Jan 2014
    Posts
    32
    Plugin Contributions
    0

    Default Re: Sheffield Blue Template Support Thread

    Quote Originally Posted by picaflor-azul View Post
    Take a look at the SNAF module. I believe that it includes separate classes for the various elements on the product listing page.

    Thanks,

    Anne
    SNAF? what is that? :)

  9. #539
    Join Date
    Jul 2012
    Posts
    16,798
    Plugin Contributions
    17

    Default Re: Sheffield Blue Template Support Thread

    Quote Originally Posted by speedyrider View Post
    SNAF? what is that? :)
    Go to plugins, search for SNAF: http://www.zen-cart.com/downloads.php?do=file&id=1358

    Tada!
    ZC Installation/Maintenance Support <- Site
    Contribution for contributions welcome...

  10. #540
    Join Date
    Aug 2004
    Location
    Osaka Japan
    Posts
    163
    Plugin Contributions
    0

    Default Re: Sheffield Blue Template Support Thread

    Thank you for this template. When viewing our test site from a PC the header has the language icon properly displayed. When viewing with a mobile application (HTC Butterfly/Sony Xperia) the language icon is missing. Please advise.

    ZenCart 1.3.9h
    Test Site www.uskgj.com/zc3

 

 
Page 54 of 85 FirstFirst ... 444525354555664 ... LastLast

Similar Threads

  1. v151 Responsive Sheffield Blue v1.0
    By picaflor-azul in forum Addon Templates
    Replies: 1159
    Last Post: 23 Apr 2023, 01:20 AM
  2. v155 Column issues on Product Listings with Sheffield Blue template
    By wmorris in forum General Questions
    Replies: 4
    Last Post: 15 Apr 2016, 10:01 PM
  3. Replies: 5
    Last Post: 30 May 2014, 02:43 AM
  4. v151 Blue Admin [Support Thread]
    By vvomble in forum Addon Templates
    Replies: 11
    Last Post: 27 May 2013, 09:43 PM
  5. Gingham Blue Template Support Thread
    By LissaE in forum Addon Templates
    Replies: 9
    Last Post: 17 Apr 2009, 10:19 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