Thread: Westminster New

Page 66 of 187 FirstFirst ... 1656646566676876116166 ... LastLast
Results 651 to 660 of 1865
  1. #651
    Join Date
    Feb 2015
    Location
    Frederic, Wisconsin, United States
    Posts
    24
    Plugin Contributions
    0

    Default Re: Westminster New

    Are there any plans to incorporate a script to add meta tags to easy pages? There is one called easy pages meta tags, but I haven't got the hang of winmerge. There were a huge number of differences in my .php and those for easy pages meta tags.

  2. #652
    Join Date
    Dec 2010
    Location
    Thailand
    Posts
    300
    Plugin Contributions
    2

    Default Re: Westminster New

    Quote Originally Posted by picaflor-azul View Post
    The sitemap link in the header menu in the demo does work. It is true that if you click on general info, you get the page not found.

    You can fix the link by changing this:

    Code:
    <li><a href="<?php echo BOX_INFORMATION_SITE_MAP; ?>">General Info</a>
    to this:

    Code:
    <li><a href="<?php echo zen_href_link(FILENAME_SITE_MAP); ?>">General Info</a>
    Thanks,

    Anne
    For multiple languages sites, replacing this with the following pulls "General Info" in other languages.

    Code:
    <li><a href="<?php echo zen_href_link(FILENAME_SITE_MAP); ?>"><?php echo TITLE_GENERAL; ?></a>

  3. #653
    Join Date
    Feb 2009
    Location
    UK
    Posts
    1,294
    Plugin Contributions
    1

    Default Re: Westminster New

    Quote Originally Posted by Zappa Aviaries View Post
    Are there any plans to incorporate a script to add meta tags to easy pages? There is one called easy pages meta tags, but I haven't got the hang of winmerge. There were a huge number of differences in my .php and those for easy pages meta tags.
    The easiest way I found to add meta_tags to ez-pages is by editing the meta_tags.php file in

    \includes\languages\english\YOUR_TEMPLATE\

    In that file there's a bit of guidance on how to do it:

    PHP Code:
    // EZ-Pages meta-tags.  Follow this pattern for all ez-pages for which you desire custom metatags. Replace the # with ezpage id.
    // If you wish to use defaults for any of the 3 items for a given page, simply do not define it.
    // (ie: the Title tag is best not set, so that site-wide defaults can be used.)
    // repeat pattern as necessary
      
    define('META_TAG_DESCRIPTION_EZPAGE_#','');
      
    define('META_TAG_KEYWORDS_EZPAGE_#','');
      
    define('META_TAG_TITLE_EZPAGE_#'''); 

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

    Default Re: Westminster New

    Quote Originally Posted by Zappa Aviaries View Post
    Are there any plans to incorporate a script to add meta tags to easy pages? There is one called easy pages meta tags, but I haven't got the hang of winmerge. There were a huge number of differences in my .php and those for easy pages meta tags.
    No, I will probably not be adding that plugin to the template package.

    Thanks,

    Anne

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

    Default Re: Westminster New

    Quote Originally Posted by simon1066 View Post
    The easiest way I found to add meta_tags to ez-pages is by editing the meta_tags.php file in

    \includes\languages\english\YOUR_TEMPLATE\

    In that file there's a bit of guidance on how to do it:

    PHP Code:
    // EZ-Pages meta-tags.  Follow this pattern for all ez-pages for which you desire custom metatags. Replace the # with ezpage id.
    // If you wish to use defaults for any of the 3 items for a given page, simply do not define it.
    // (ie: the Title tag is best not set, so that site-wide defaults can be used.)
    // repeat pattern as necessary
      
    define('META_TAG_DESCRIPTION_EZPAGE_#','');
      
    define('META_TAG_KEYWORDS_EZPAGE_#','');
      
    define('META_TAG_TITLE_EZPAGE_#'''); 
    Yes, this is true. The plugin has the advantage of not having to edit a php file. You can add them directly through the zen cart admin.

    Thanks,

    Anne

  6. #656
    Join Date
    Jan 2007
    Location
    Los Angeles, California, United States
    Posts
    10,021
    Plugin Contributions
    32

    Default Re: Westminster New

    Quote Originally Posted by Zappa Aviaries View Post
    Are there any plans to incorporate a script to add meta tags to easy pages? There is one called easy pages meta tags, but I haven't got the hang of winmerge. There were a huge number of differences in my .php and those for easy pages meta tags.
    Why bloat this theme with something that not all site owners need or want??? Not everyone uses EZ Pages.. If this plugin ever becomes part of core Zen Cart, that's one thing.. Until then it's easy enough to download and install this module if you need/want it.. Suggest you find a better file merging tool like Beyond Compare.. (Which is not free, but is a better merging tool IMHO than the very free WinMerge)

    Personally I think that the entire meta tagging process in Zen Cart needs a MODERN overhaul.. That includes\languages\english\YOUR_TEMPLATE\meta_tags.php file is a PITA to maintain on a dynamic site. And for those pages where you have no customer entry in the meta tags file, the way that meta tags are auto populated is wrong. (keywords are no longer a relevant tag, title and description should not be the SAME on all pages, and could/should be generated using some intelligence to detect and output the correct content for the default tag values)
    My Site - Zen Cart & WordPress integration specialist
    I don't answer support questions via PM. Post add-on support questions in the support thread. The question & the answer will benefit others with similar issues.

  7. #657
    Join Date
    Feb 2015
    Location
    Frederic, Wisconsin, United States
    Posts
    24
    Plugin Contributions
    0

    red flag Re: Westminster New

    I need some help. My site is at www.zappasbirds.com/shop

    I installed the addon module, Add additional pages to the more information sidebox, which DrByte just updated to work with v1.5.4

    It all works but there is now a problem with the display of the links. Below is a pic of what I mean...

    Name:  more_info.jpg
Views: 208
Size:  35.3 KB

    The only file that was overwritten durring the plugin install was...

    includes/templates/westminster_new/templates/tpl_site_map_default

    So it has to be somehow tied to that, but I have been up all night trying to find the right file to correct it. I am hoping someone can point me in the right direction. Thank you in advance.

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

    Default Re: Westminster New

    Quote Originally Posted by Zappa Aviaries View Post
    I need some help. My site is at www.zappasbirds.com/shop

    I installed the addon module, Add additional pages to the more information sidebox, which DrByte just updated to work with v1.5.4

    It all works but there is now a problem with the display of the links. Below is a pic of what I mean...

    Name:  more_info.jpg
Views: 208
Size:  35.3 KB

    The only file that was overwritten durring the plugin install was...

    includes/templates/westminster_new/templates/tpl_site_map_default

    So it has to be somehow tied to that, but I have been up all night trying to find the right file to correct it. I am hoping someone can point me in the right direction. Thank you in advance.

    The template comes with the includes/modules/sideboxes/override/more_information.php file and the includes/templates/override/sideboxes/tpl_more_information.php

    My guess is that you have not properly merged the files in the plugin with the files in the template package.

    Thanks,

    Anne

  9. #659
    Join Date
    Oct 2004
    Posts
    1,045
    Plugin Contributions
    0

    Default Re: Westminster New

    I am using this template, and when I view the site on a mobile, the sideboxes still show even though I have them set to off for min-width. I looked at the template demo, but the demo only seems to have the responsive template on the home page, so I can't tell what it is supposed to do on other pages. Am I misunderstanding what the setting to turn off sideboxes @ min-width is for? Is there a way to turn off the sideboxes on mobile devices? Thanks!
    Danielle

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

    Default Re: Westminster New

    Quote Originally Posted by Danielle View Post
    I am using this template, and when I view the site on a mobile, the sideboxes still show even though I have them set to off for min-width. I looked at the template demo, but the demo only seems to have the responsive template on the home page, so I can't tell what it is supposed to do on other pages. Am I misunderstanding what the setting to turn off sideboxes @ min-width is for? Is there a way to turn off the sideboxes on mobile devices? Thanks!
    The template demo shows all pages of the zen cart. If you want to view the responsive design using a desktop and an emulator you need to use these urls after you go to the demo and switch to the template you want to view:

    Tablets:

    http://www.zenlyzen.com/responsive-z..._mode=isTablet

    Phones:

    http://www.zenlyzen.com/responsive-z..._mode=isMobile

    You need to set the sideboxes to off for @min-width to not show them on portrait tablets and landscape and portrait phones. If you post a link to your site I can take a look.


    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