Jump to content
  • Checkout
  • Login
  • Get in touch

osCommerce

The e-commerce.

Recommended Posts

Posted

Store name is a configuration variable defined in the Admin -> Configuration -> My Store -> Store name

The title of the home page is defined in includes/english.php

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

 

Posted (edited)

I found that but if I change that and insert text there it will be inserted to alla pages meta titel after the titel that is taken från category name and product name.

I have Category SEO and Product SEO header tags active.

I don't know how I can insert meta titel and description for index page only.

Edited by JariV
Posted

That's how osCommerce is. You're going to have to edit the category, manufacturer and product title pages, and any other pages, if you want a homepage title that is different to store name defined in admin.

Posted

If you are using bootstrap version have a look in the language files for the page you want to alter.

In the latest version of Frozen in the index language file you have

// seo
if ( ($category_depth == 'top') && (!isset($_GET['manufacturers_id'])) ) {
  define('META_SEO_TITLE', 'Index Page Title');
  define('META_SEO_DESCRIPTION', 'This is the description of your site to be used in the META Description Element');
  /*
  keywords are USELESS unless you are selling into China and want to be listed in Baidu Search Engine
  */
  define('META_SEO_KEYWORDS', 'these, are, the, comma, separated, keywords, used in the META keywords Element');
}

 

Its in lots of other pages, and if you create new pages it is easy to add.

REMEMBER BACKUP, BACKUP AND BACKUP

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.
Note: Your post will require moderator approval before it will be visible.

Guest
Unfortunately, your content contains terms that we do not allow. Please edit your content to remove the highlighted words below.
Reply to this topic...

×   Pasted as rich text.   Paste as plain text instead

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

×
×
  • Create New...