Results 1 to 10 of 10
  1. #1
    Join Date
    Mar 2010
    Posts
    15
    Plugin Contributions
    0

    Default i changed the page title and my shop disappeared

    Hi,
    I Changed the page title of my shop in the meta_tags.php, and my shop has disappeared.

    I read in another post that if i make it too long, the shop will disappear, but i think the title is short enough:
    Page Title:"RevolutionShop"
    Tagline:"Van minden"

    Please help me.

    Thank You.

  2. #2
    Join Date
    Aug 2004
    Location
    New York City
    Posts
    7,145
    Plugin Contributions
    0

    Default Re: i changed the page title and my shop disappeared

    Post the contents of the file. You're probably missing a ; or something like that.
    Mary Ellen
    I came; I saw; I Zenned
    Taking over the world... one website at a time
    Make sure brain is engaged before putting mouth in gear... or fingers to keyboard.

    Holzheimer
    Fan Odyssey

  3. #3
    Join Date
    Mar 2010
    Posts
    15
    Plugin Contributions
    0

    Default Re: i changed the page title and my shop disappeared

    <?php
    /**
    * @package languageDefines
    * @copyright Copyright 2003-2005 Zen Cart Development Team
    * @copyright Portions Copyright 2003 osCommerce
    * @license http://www.zen-cart.com/license/2_0.txt GNU Public License V2.0
    * @version $Id: meta_tags.php 2555 2005-12-13 05:37:01Z drbyte $
    */

    // page title
    define('TITLE', 'RevolutionShop');

    // Site Tagline
    define('SITE_TAGLINE', 'Van minden');

    // Custom Keywords
    define('CUSTOM_KEYWORDS', '');

    // Review Page can have a lead in:
    define('META_TAGS_REVIEW', 'Vélemények: ');

    // separators for meta tag definitions
    // Define Primary Section Output
    define('PRIMARY_SECTION', ' : ');

    // Define Secondary Section Output
    define('SECONDARY_SECTION', ' - ');

    // Define Tertiary Section Output
    define('TERTIARY_SECTION', ', ');

    // Define which pages to tell robots/spiders not to index
    // This is generally used for account-management pages or typical SSL pages, and usually doesn't need to be touched.
    define('ROBOTS_PAGES_TO_SKIP','login,logoff,create_account,account,account_edit, account_history,account_history_info,account_newsletters,account_notifications,a ccount_password,address_book,advanced_search,advanced_search_result,checkout_suc cess,checkout_process,checkout_shipping,checkout_payment,checkout_confirmation,c ookie_usage,create_account_success,contact_us,download,download_timeout,customer s_authorization,down_for_maintenance,password_forgotten,time_out,unsubscribe');


    // favicon setting
    // There is usually NO need to enable this unless you wish to specify a path and/or a different filename
    // define('FAVICON','favicon.ico');

    ?>

  4. #4
    Join Date
    Mar 2010
    Posts
    15
    Plugin Contributions
    0

    Default Re: i changed the page title and my shop disappeared

    Now, in a miracoulous way(i did nothing), my site came back.
    In my admin area i have the page title"RevolutionShop", but in the public store area i have"HOME_PAGE_TITLE".

  5. #5
    Join Date
    Jul 2009
    Location
    Prague, Czech Republic
    Posts
    567
    Plugin Contributions
    0

    Default Re: i changed the page title and my shop disappeared

    Quote Originally Posted by Kray View Post
    Now, in a miracoulous way(i did nothing), my site came back.
    In my admin area i have the page title"RevolutionShop", but in the public store area i have"HOME_PAGE_TITLE".
    Your english pages are missing I think, I could access the Hungarian pages fine, but when I switched to English it's missing still

  6. #6
    Join Date
    Mar 2010
    Posts
    15
    Plugin Contributions
    0

    Default Re: i changed the page title and my shop disappeared

    Yes, now the hungarian main page appears, but when i click on any of the menus at the top of the page, a blank page comes in for each of them. What can be the solution?

    I will take off the english page totally.

    Thank You.

  7. #7
    Join Date
    Jul 2009
    Location
    Prague, Czech Republic
    Posts
    567
    Plugin Contributions
    0

    Default Re: i changed the page title and my shop disappeared

    I suspect here's your problem

    // Review Page can have a lead in:
    define('META_TAGS_REVIEW', 'Vélemények: ');

  8. #8
    Join Date
    Mar 2010
    Posts
    15
    Plugin Contributions
    0

    Default Re: i changed the page title and my shop disappeared

    You mean the caracters?

    I have changed them, and now, again, the shop has disappeared.

  9. #9
    Join Date
    Jul 2009
    Location
    Prague, Czech Republic
    Posts
    567
    Plugin Contributions
    0

    Default Re: i changed the page title and my shop disappeared

    Try using this





    <?php
    /**
    * @package languageDefines
    * @copyright Copyright 2003-2007 Zen Cart Development Team
    * @copyright Portions Copyright 2003 osCommerce
    * @license http://www.zen-cart.com/license/2_0.txt GNU Public License V2.0
    * @version $Id: meta_tags.php 6668 2007-08-16 10:05:09Z drbyte $
    */

    // page title
    define('TITLE', 'Zen Cart!');

    // Site Tagline
    define('SITE_TAGLINE', 'The Art of E-commerce');

    // Custom Keywords
    define('CUSTOM_KEYWORDS', 'ecommerce, open source, shop, online shopping');

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

    // NOTE: If HOME_PAGE_TITLE is left blank (default) then TITLE and SITE_TAGLINE will be used instead.
    define('HOME_PAGE_TITLE', ''); // usually best left blank


    // 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_#', '');

    // Per-Page meta-tags. Follow this pattern for individual pages you wish to override. This is useful mainly for additional pages.
    // replace "page_name" with the UPPERCASE name of your main_page= value, such as ABOUT_US or SHIPPINGINFO etc.
    // repeat pattern as necessary
    define('META_TAG_DESCRIPTION_page_name','');
    define('META_TAG_KEYWORDS_PAGE_page_name','');
    define('META_TAG_TITLE_PAGE_page_name', '');

    // Review Page can have a lead in:
    define('META_TAGS_REVIEW', 'Reviews: ');

    // separators for meta tag definitions
    // Define Primary Section Output
    define('PRIMARY_SECTION', ' : ');

    // Define Secondary Section Output
    define('SECONDARY_SECTION', ' - ');

    // Define Tertiary Section Output
    define('TERTIARY_SECTION', ', ');

    // Define divider ... usually just a space or a comma plus a space
    define('METATAGS_DIVIDER', ' ');

    // Define which pages to tell robots/spiders not to index
    // This is generally used for account-management pages or typical SSL pages, and usually doesn't need to be touched.
    define('ROBOTS_PAGES_TO_SKIP','login,logoff,create_account,account,account_edit, account_history,account_history_info,account_newsletters,account_notifications,a ccount_password,address_book,advanced_search,advanced_search_result,checkout_suc cess,checkout_process,checkout_shipping,checkout_payment,checkout_confirmation,c ookie_usage,create_account_success,contact_us,download,download_timeout,customer s_authorization,down_for_maintenance,password_forgotten,time_out,unsubscribe,inf o_shopping_cart,popup_image,popup_image_additional,product_reviews_write,ssl_che ck');


    // favicon setting
    // There is usually NO need to enable this unless you need to specify a path and/or a different filename
    // define('FAVICON','favicon.ico');

    ?>

  10. #10
    Join Date
    Mar 2010
    Posts
    15
    Plugin Contributions
    0

    Default Re: i changed the page title and my shop disappeared

    Thanks alot, it works.

 

 

Similar Threads

  1. Changed to Title Bar
    By jayson.gurney in forum Templates, Stylesheets, Page Layout
    Replies: 2
    Last Post: 4 Jan 2008, 01:19 PM
  2. Home page title disappeared
    By madsencarl in forum General Questions
    Replies: 4
    Last Post: 27 Dec 2007, 01:41 PM
  3. Shop has disappeared
    By GuruCreations in forum General Questions
    Replies: 2
    Last Post: 26 May 2007, 11:59 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
  •