Page 31 of 33 FirstFirst ... 212930313233 LastLast
Results 301 to 310 of 321
  1. #301
    Join Date
    Jul 2009
    Posts
    13
    Plugin Contributions
    0

    Default Re: Rustic Template Support Thread

    Does this work on version 1.3.8a or should I convert to 1.3.9h before installing it?

    Thanks

  2. #302
    Join Date
    Nov 2005
    Location
    Colorado Springs, CO USA
    Posts
    7,033
    Plugin Contributions
    31

    Default Re: Rustic Template Support Thread

    Quote Originally Posted by Micki711 View Post
    Does this work on version 1.3.8a or should I convert to 1.3.9h before installing it?

    Thanks
    It should work in either version.

  3. #303

    help question Re: Rustic Template Support Thread

    Hello all, I can not seem to get the text in my Categories menu to line up right. I was messing with the some of the files tring to get authorize.net sidebox to work and now I can't figure out what I did. So any help would be great. I am using ver. 1.3.9

    http://mountainmengoods.com/

    It's the categories menu.

    Thanks,
    James

  4. #304
    Join Date
    Nov 2005
    Location
    Colorado Springs, CO USA
    Posts
    7,033
    Plugin Contributions
    31

    Default Re: Rustic Template Support Thread

    Quote Originally Posted by James View Post
    Hello all, I can not seem to get the text in my Categories menu to line up right. I was messing with the some of the files tring to get authorize.net sidebox to work and now I can't figure out what I did. So any help would be great. I am using ver. 1.3.9

    http://mountainmengoods.com/

    It's the categories menu.

    Thanks,
    James
    try uploading a clean copy of

    includes/templates/rustic/sideboxes/tpl_categories.php

  5. #305

    Default Re: Rustic Template Support Thread

    Quote Originally Posted by clydejones View Post
    try uploading a clean copy of

    includes/templates/rustic/sideboxes/tpl_categories.php
    Thank you for the quick reply. I did try that but it did not work.
    I know when it first did it everything on the page went out of wack. We got everything but the menu correct. Are there any other files that would control this.

    I do have a new ? i would like to add. If I view my source I find meta keywords and descriptions that I can not find. I have checked my meta file and cleared it up. What other files may contain meta tags.

    Thank you very much.

  6. #306
    Join Date
    Nov 2005
    Location
    Colorado Springs, CO USA
    Posts
    7,033
    Plugin Contributions
    31

    Default Re: Rustic Template Support Thread

    Quote Originally Posted by James View Post
    Thank you for the quick reply. I did try that but it did not work.
    I know when it first did it everything on the page went out of wack. We got everything but the menu correct. Are there any other files that would control this.

    I do have a new ? i would like to add. If I view my source I find meta keywords and descriptions that I can not find. I have checked my meta file and cleared it up. What other files may contain meta tags.

    Thank you very much.
    includes/templates/rustic/css/stylesheet_betterCategoriesEzInfo.css

    controls the styling of the sidebox.

    meta tags are controlled in
    includes/languages/english/meta_tags.php

    AND

    includes/modules/meta_tags.php

  7. #307

    Default Re: Rustic Template Support Thread

    This is from my home page view source:

    <meta name="description" content="James Scotts Mountain Men Goods : - Sheaths Possible Bags Belt Bags Turtle Shell Bags Woman's Jewelry Medicine Bags mountainman supply, mountain men crafts,black powder supply, buck skinner supply, rendezvous, mountainman possible bag, turtle shell bags, medicine wheel, mountainman sheaths" />

    from my meta.php
    /public_html/includes/languages/english/meta.php

    // page title
    define('TITLE', 'James Scotts Mountain Men Goods');

    // Site Tagline
    define('SITE_TAGLINE', 'James Scotts Handmade Mountain Man Crafts');

    // Custom Keywords
    define('CUSTOM_KEYWORDS', 'mountainman supply, mountain men crafts,black powder supply, buck skinner supply, rendezvous, mountainman possible bag, turtle shell bags, medicine wheel, mountainman sheaths');

    I have also checked my modules/meta.php and there is nothing there. from the way it looks it's coping my keywords in to my description. Is there any way to fix this?

  8. #308
    Join Date
    Nov 2005
    Location
    Colorado Springs, CO USA
    Posts
    7,033
    Plugin Contributions
    31

    Default Re: Rustic Template Support Thread

    Quote Originally Posted by James View Post
    This is from my home page view source:

    <meta name="description" content="James Scotts Mountain Men Goods : - Sheaths Possible Bags Belt Bags Turtle Shell Bags Woman's Jewelry Medicine Bags mountainman supply, mountain men crafts,black powder supply, buck skinner supply, rendezvous, mountainman possible bag, turtle shell bags, medicine wheel, mountainman sheaths" />

    from my meta.php
    /public_html/includes/languages/english/meta.php

    // page title
    define('TITLE', 'James Scotts Mountain Men Goods');

    // Site Tagline
    define('SITE_TAGLINE', 'James Scotts Handmade Mountain Man Crafts');

    // Custom Keywords
    define('CUSTOM_KEYWORDS', 'mountainman supply, mountain men crafts,black powder supply, buck skinner supply, rendezvous, mountainman possible bag, turtle shell bags, medicine wheel, mountainman sheaths');

    I have also checked my modules/meta.php and there is nothing there. from the way it looks it's coping my keywords in to my description. Is there any way to fix this?
    These are your category names:
    Sheaths Possible Bags Belt Bags Turtle Shell Bags Woman's Jewelry Medicine Bags

    This is the default behavior for Zen Cart and is not related to the template.

    I believe you can alter this somewhat by editing the following definitions in includes/languages/english/meta_tags.php

    // Home Page Only:
    define('HOME_PAGE_META_DESCRIPTION', '');
    define('HOME_PAGE_META_KEYWORDS', '');

    this section of code from includes/modules/meta_tags.php is responsible for building the main page metatags

    case ($this_is_home_page):
    define('META_TAG_TITLE', (defined('HOME_PAGE_TITLE') && HOME_PAGE_TITLE != '' ? HOME_PAGE_TITLE : (defined('NAVBAR_TITLE') ? NAVBAR_TITLE . PRIMARY_SECTION : '') . TITLE . TAGLINE));
    define('META_TAG_DESCRIPTION', (defined('HOME_PAGE_META_DESCRIPTION') && HOME_PAGE_META_DESCRIPTION != '') ? HOME_PAGE_META_DESCRIPTION : TITLE . PRIMARY_SECTION . (defined('NAVBAR_TITLE') ? NAVBAR_TITLE : '' ) . SECONDARY_SECTION . KEYWORDS);
    define('META_TAG_KEYWORDS', (defined('HOME_PAGE_META_KEYWORDS') && HOME_PAGE_META_KEYWORDS != '') ? HOME_PAGE_META_KEYWORDS : KEYWORDS . METATAGS_DIVIDER . (defined('NAVBAR_TITLE') ? NAVBAR_TITLE : '' ) );
    break;
    Last edited by clydejones; 27 Mar 2011 at 04:31 AM.

  9. #309

    Default Re: Rustic Template Support Thread



    Thanks Clyde that worked. Both of my problems are now fixed ty so much.

  10. #310
    Join Date
    Sep 2010
    Posts
    23
    Plugin Contributions
    0

    Default Bottom brown bar not wide enough

    Hello!

    When viewing the template on a larger, wider monitor the bottom brown bar is missing a couple of inches in width. ANy ideas?

 

 
Page 31 of 33 FirstFirst ... 212930313233 LastLast

Similar Threads

  1. v155 Clone a Template [Support Thread]
    By lat9 in forum Addon Admin Tools
    Replies: 107
    Last Post: 11 Nov 2024, 08:28 PM
  2. v150 aBagon Template Support Thread
    By VJef in forum Addon Templates
    Replies: 54
    Last Post: 5 Sep 2020, 08:44 PM
  3. TB Sempre Template Support Thread
    By brandonturpin in forum Addon Templates
    Replies: 48
    Last Post: 19 Mar 2015, 06:33 PM
  4. Scuro Template Support Thread
    By brandonturpin in forum Addon Templates
    Replies: 11
    Last Post: 12 Mar 2015, 09:45 PM
  5. DigitalShop Template Support Thread
    By blingthemes in forum Addon Templates
    Replies: 19
    Last Post: 9 Mar 2011, 07:49 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