Thread: Westminster New

Page 113 of 187 FirstFirst ... 1363103111112113114115123163 ... LastLast
Results 1,121 to 1,130 of 1865
  1. #1121
    Join Date
    Oct 2014
    Location
    United Kingdom
    Posts
    24
    Plugin Contributions
    0

    Default Re: Westminster New

    oh thank you Anne, that would be great :-) I pretty much got everything done now, just need to rectify the shop links in the footer and the text "Responsive Zencart Template" in the header but cannot find where it is. Oh and the text for the custom slider dont seem to be able to find it.


    http://www.pixelsandartdesign.com/store/

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

    Default Re: Westminster New

    Quote Originally Posted by chrissyann View Post
    oh thank you Anne, that would be great :-) I pretty much got everything done now, just need to rectify the shop links in the footer and the text "Responsive Zencart Template" in the header but cannot find where it is. Oh and the text for the custom slider dont seem to be able to find it.


    http://www.pixelsandartdesign.com/store/
    I checked the footer links and they are all going to the correct pages. You have some errors. You need to check your logs folder and correct them. My guess is that you have plugins installed and you did not copy the override files to the new template override folder.

    If you look at the readme.html file it gives instructions for how to customize the slide out text. If you do a search of the forum you will find a tutorial on this site about how to change the site title.

    Thanks,

    Anne

  3. #1123
    Join Date
    Oct 2014
    Location
    United Kingdom
    Posts
    24
    Plugin Contributions
    0

    Default Re: Westminster New

    ah okay Anne I did wonder if it was something like that, but just wasn't to sure, thank you for having a look for me, I appreciate that.

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

    Default Re: Westminster New

    Quote Originally Posted by chrissyann View Post
    ah okay Anne I did wonder if it was something like that, but just wasn't to sure, thank you for having a look for me, I appreciate that.
    No problem ;)

    Thanks,

    Anne

  5. #1125
    Join Date
    Oct 2014
    Location
    United Kingdom
    Posts
    24
    Plugin Contributions
    0

    Default Re: Westminster New

    Hi Anne,

    Just thought I would show you I got all those little text things sorted, thought you might want to have a look. So thanks for your guidance, I am feeling quite chuffed with myself seen as I am a beginner with all this stuff.

    Just have to fix those links now but I am struggling with that one a bit :)

    I do have a question for you though, where it says blog forum etc I would like to centralise those can I assume that this is done in a CSS file.


    http://www.pixelsandartdesign.com/store/

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

    Default Re: Westminster New

    Quote Originally Posted by chrissyann View Post
    Hi Anne,

    Just thought I would show you I got all those little text things sorted, thought you might want to have a look. So thanks for your guidance, I am feeling quite chuffed with myself seen as I am a beginner with all this stuff.

    Just have to fix those links now but I am struggling with that one a bit :)

    I do have a question for you though, where it says blog forum etc I would like to centralise those can I assume that this is done in a CSS file.


    http://www.pixelsandartdesign.com/store/
    The template is not designed to use the top categories tabs menu. If you want to use it, you need to style it to match the template. You can add a text-align:center to the links to make them align to the center of the page.

    Thanks,

    Anne

  7. #1127
    Join Date
    Oct 2014
    Location
    United Kingdom
    Posts
    24
    Plugin Contributions
    0

    Default Re: Westminster New

    oh okay thank you

  8. #1128
    Join Date
    Nov 2007
    Location
    Sunny Coast, Australia
    Posts
    3,378
    Plugin Contributions
    9

    Default Re: Westminster New

    Quote Originally Posted by Thannaree View Post
    There seems to be 2 little bugs:

    - When there is no product on the Featured page, there is a TEXT_NO_PRODUCTS but not the actual text.
    - When there is no product on the Specials page, there is nothing at all on the page (No title, Sort-by box etc).

    Please advise
    The issue where product listing pages (eg new products) display TEXT_NO_PRODUCTS instead of something like "More new products will be added soon. Please check back later" (TEXT_NO_NEW_PRODUCTS) is caused by the file

    /includes/templates/westminster_new/templates/tpl_products_new_default.php

    To fix that bug open that file and change line 19 from:

    Code:
    require($template->get_template_dir('tpl_modules_product_listing.php',DIR_WS_TEMPLATE, $current_page_base,'templates'). '/tpl_modules_product_listing.php');
    to:

    Code:
    require($template->get_template_dir('tpl_modules_products_new_listing.php',DIR_WS_TEMPLATE, $current_page_base,'templates'). '/tpl_modules_products_new_listing.php');
    I have only tackled the new products but not specials nor featured products listings.

    Anne might have a solution along similar lines.

    Cheers / Frank

  9. #1129
    Join Date
    Nov 2007
    Location
    Sunny Coast, Australia
    Posts
    3,378
    Plugin Contributions
    9

    Default Re: Westminster New

    Sorry folks, the 'solution' posted above has ramifications on the listing of 'All Products'.

    The better solution is to copy

    includes/languages/english/featured_products.php

    to

    includes/languages/english/westminster_new/featured_products.php

    and add to the latter

    PHP Code:
    define('TEXT_NO_PRODUCTS''There are currently no featured products. Please check back later.'); 
    Same for includes/languages/english/products_new.php

    copy that file to

    includes/languages/english/westminster_new/products_new.php

    and add to the latter

    PHP Code:
    define('TEXT_NO_PRODUCTS''More new products will be added soon. Please check back later.'); 
    My apologies for post #1131 .....

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

    Default Re: Westminster New

    Quote Originally Posted by frank18 View Post
    Sorry folks, the 'solution' posted above has ramifications on the listing of 'All Products'.

    The better solution is to copy

    includes/languages/english/featured_products.php

    to

    includes/languages/english/westminster_new/featured_products.php

    and add to the latter

    PHP Code:
    define('TEXT_NO_PRODUCTS''There are currently no featured products. Please check back later.'); 
    Same for includes/languages/english/products_new.php

    copy that file to

    includes/languages/english/westminster_new/products_new.php

    and add to the latter

    PHP Code:
    define('TEXT_NO_PRODUCTS''More new products will be added soon. Please check back later.'); 
    My apologies for post #1131 .....
    Thanks for posting ;) I will add this to a list for the next package update.

    Thanks,

    Anne

 

 

Similar Threads

  1. v155 Getting ajax error in v155 with v154 Westminster template
    By godt in forum General Questions
    Replies: 3
    Last Post: 11 Jul 2016, 12:41 AM
  2. v155 Getting ajax error in v155 with v154 Westminster template
    By MCS_Computers in forum General Questions
    Replies: 10
    Last Post: 21 Mar 2016, 03:58 PM
  3. v154 Modifying Top Menu - Westminster New
    By chelseaneedshelp in forum Templates, Stylesheets, Page Layout
    Replies: 3
    Last Post: 27 Mar 2015, 04:28 PM
  4. Westminster New doesn't work on mobile phone
    By Pompidompie in forum Addon Templates
    Replies: 3
    Last Post: 26 Mar 2015, 10:34 PM
  5. v151 westminster new Share and Connect
    By Larry0652 in forum Addon Templates
    Replies: 8
    Last Post: 24 Oct 2014, 03:30 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