Jump to content
  • Checkout
  • Login
  • Get in touch

osCommerce

The e-commerce.

All Products SEO


Jack_mcs

Recommended Posts

This is the release of All Products SEO. It is really an update to my previous version, All Products with Images, but like so many contributions lately, that one has been damaged by all of the various changes. So I moved it to a new version and locked it to better control what gets "fixed." This version fixes some problems in my last version of that contribution as well as some introduced by others. It adds several options to admin to allow better control of the display and is setup ready to run with Header Tags SEO.

 

Jack

Support Links:

For Hire: Contact me for anything you need help with for your shop: upgrading, hosting, repairs, code written, etc.

Get the latest versions of my addons

Recommended SEO Addons

Link to comment
Share on other sites

Hi Jack_mcs,

 

this is the german translation for your Contrib:

 

 

define('NAVBAR_TITLE', 'Alle Produkte');

define('HEADING_TITLE', 'Alle Produkte');

define('HEADING_SUB_TEXT','Diesen Text mit der Beschreibung für die Alle Produkte Seite ersetzen.');

define('BOX_INFORMATION_ALLPRODS', 'Alle Produkte anzeigen');

define('TABLE_HEADING_IMAGE', '');

define('TABLE_HEADING_MODEL', 'Produktnr.');

define('TABLE_HEADING_PRODUCTS', 'Produktname');

define('TABLE_HEADING_MANUFACTURER', 'Hersteller');

define('TABLE_HEADING_QUANTITY', 'Anzahl');

define('TABLE_HEADING_PRICE', 'Preis');

define('TABLE_HEADING_WEIGHT', 'Gewicht');

define('TABLE_HEADING_BUY_NOW', 'Jetzt kaufen');

define('TEXT_NO_PRODUCTS', 'In dieser Kategorie gibt es keine Produkte.');

 

 

dargond

Link to comment
Share on other sites

Michael - Thanks for posting that. I'll add it in.

 

Robert - Thanks for the link. I meant to come back and add that but got sidetracked.

 

Jack

Support Links:

For Hire: Contact me for anything you need help with for your shop: upgrading, hosting, repairs, code written, etc.

Get the latest versions of my addons

Recommended SEO Addons

Link to comment
Share on other sites

Fantastic Jack, thank you for another great contrib! ;)

 

Uninstalled the old version and had this one up and running in about 10 minutes. Whohoo...

 

I like how it automatically uses the thumbnail images, no need to set image sizes in Admin (can't). :)

 

Problem solved regarding the buy now and sold out buttons too, wonderful.

 

I have 2 questions for you though. :blush:

 

1) How can we change the color of the first link seperator, both do not display the same as the following links?

 

2) How can I change the number links from 1 to 1920's | 1930's | 1940's | etc... so that if someone clicked on say 1920's all products from 1920 to 1929 would show?

 

I'm sure they are probably easy fixes but my brain is fried. :blink:

 

http://handeshobbies.com/catalog/all-products.php

- :: Jim :: -

- My Toolbox ~ Adobe Web Bundle, XAMPP & WinMerge | Install ~ osC v2.3.3.4 -

Link to comment
Share on other sites

1) How can we change the color of the first link seperator, both do not display the same as the following links?

 

2) How can I change the number links from 1 to 1920's | 1930's | 1940's | etc... so that if someone clicked on say 1920's all products from 1920 to 1929 would show?

1 - Try changing this at line 88

$firstletter_nav = ' '.ALL_PRODUCTS_SEO_LINK_SEPARATOR;

to

$firstletter_nav = ' <span style="color: #XXXXXX">'.ALL_PRODUCTS_SEO_LINK_SEPARATOR . '</span>';

where XXXXXX is the color code.

 

2 - Change this line

	   $numbers = array(0 => '0', 1 => '1', 2 => '2', 3 => '3', 4 => '4', 5 => '5', 6 => '6', 7 => '7', 8 => '8', 9 => '9');

to use the numbers you want like

	   $numbers = array(0 => '1920', 1 => '1930');

I haven't tested either of these so do a backup first.

 

Jack

Support Links:

For Hire: Contact me for anything you need help with for your shop: upgrading, hosting, repairs, code written, etc.

Get the latest versions of my addons

Recommended SEO Addons

Link to comment
Share on other sites

1 - Try changing this at line 88
$firstletter_nav = ' '.ALL_PRODUCTS_SEO_LINK_SEPARATOR;

to

$firstletter_nav = ' <span style="color: #XXXXXX">'.ALL_PRODUCTS_SEO_LINK_SEPARATOR . '</span>';

where XXXXXX is the color code.

That didn't do it, I even tried the span tag for the table cell and even line 95. I'll keep playing around with it. Where is the ALL_PRODUCTS_SEO_LINK_SEPARATOR defined? Just in the database?

 

2 - Change this line
$numbers = array(0 => '0', 1 => '1', 2 => '2', 3 => '3', 4 => '4', 5 => '5', 6 => '6', 7 => '7', 8 => '8', 9 => '9');

to use the numbers you want like

$numbers = array(0 => '1920', 1 => '1930');

When I changed it to = $numbers = array(0 => '1920', that returned zero results. But when I changed it to $numbers = array(0 => '192', it found products such as 1924 & 1929 so that seemed to work. Which now leads to another question. Is there some way to display to the customer 1920's but have the search function look for 192?

 

Thank you for your help Jack. ;)

- :: Jim :: -

- My Toolbox ~ Adobe Web Bundle, XAMPP & WinMerge | Install ~ osC v2.3.3.4 -

Link to comment
Share on other sites

That didn't do it, I even tried the span tag for the table cell and even line 95. I'll keep playing around with it. Where is the ALL_PRODUCTS_SEO_LINK_SEPARATOR defined? Just in the database?

 

 

When I changed it to = $numbers = array(0 => '1920', that returned zero results. But when I changed it to $numbers = array(0 => '192', it found products such as 1924 & 1929 so that seemed to work. Which now leads to another question. Is there some way to display to the customer 1920's but have the search function look for 192?

 

Thank you for your help Jack. ;)

ALL_PRODUCTS_SEO_LINK_SEPARATOR is defined in the database - in the configuration table.

 

I'm sure there is a way to display the items as you want but I would have to play with the code since a solution doesn't come to mind.

 

Jack

Support Links:

For Hire: Contact me for anything you need help with for your shop: upgrading, hosting, repairs, code written, etc.

Get the latest versions of my addons

Recommended SEO Addons

Link to comment
Share on other sites

Thank you Jack

 

When I get some free time I'll dig through some of my PHP books to see if there's anything regarding how to display the links.

 

Well I guess adding a color to the separator is out since it's only in the database. Again when I have time I'll play around with it.

 

Thanks again ;)

- :: Jim :: -

- My Toolbox ~ Adobe Web Bundle, XAMPP & WinMerge | Install ~ osC v2.3.3.4 -

Link to comment
Share on other sites

i am having little bit of problem....

i did as mentioned in the file bt i got this pelase check

 

www.thecricketcompany.com/all-products.php

 

 

 

 

also the point 7....

You need to have at least one link to the all products page. The more you have,

the better your chances of having the search engines find the page.

 

//categories.php infobox (RECOMMENDED)

FIND:

 

new infoBox($info_box_contents);

 

ADD this BEFORE it:

 

$info_box_contents[] = array('align' => 'center',

'text' => '<a class="allproductsBox" href="' . tep_href_link(FILENAME_ALLPRODS_SEO, '', 'NONSSL') . '" title="' . BOX_INFORMATION_ALLPRODS_SEO_CATEGORIES . '">' . BOX_INFORMATION_ALLPRODS_SEO_CATEGORIES . '</a>');

 

We have to add these lines in catalogue/includes/boxes/categories.php?

 

and its written we have to add above

new infoBox($info_box_contents);

but in my files its

new infoBoxHeading($info_box_contents, true, false);

so will this effect anything?

Link to comment
Share on other sites

Your first problem is becuase you are using a template so the included file is formatted differently than what is needed for your template. You will need to make the necessary changes to the all-products file for it to display properly. You will find that you will have this problem with any contribution that adds a file to display.

 

For the second problem, you are looking at the wrong place in the ile. Scroll farther down to find the correct line. Although I'm not sure it will help you since templates like yours usually don't use the infoboxes.

 

Jack

Support Links:

For Hire: Contact me for anything you need help with for your shop: upgrading, hosting, repairs, code written, etc.

Get the latest versions of my addons

Recommended SEO Addons

Link to comment
Share on other sites

hello i have a problem with the character set. I use a shop in Greek. If i click of view all products i see the complett shop in not true characters.

Can i fix this? The shop is Visit My Website

 

i work with FCKeditor is i change the FCKConfig.IncludeGreekEntities = true ; of "false" to see the charakter in code ok than have this problem.

if is of true is not problem.

 

Extra i have some produkt names in latein and in Greek. At view all products A | B | C | D | ect.

I see the Products with "S" and in Greek with " Σ" not in the self site.

 

How can i change this?

Link to comment
Share on other sites

I'm not sure I understand your problem but if I go to your site and click on the All Products page, the error, include(includes/languages/english/all-products.php), is displayed. That means you are missing the all products file in the english directory. That needs to be fixed before working on anything else.

 

Jack

Support Links:

For Hire: Contact me for anything you need help with for your shop: upgrading, hosting, repairs, code written, etc.

Get the latest versions of my addons

Recommended SEO Addons

Link to comment
Share on other sites

Hi Jack

 

I have this installed and it is working so so good.

 

I also have installed Hide Categories & Products V1 by Spooks ( http://addons.oscommerce.com/info/5907 )

 

and I need to get this to work with this add-on.

 

can you help me?

 

this is the install info for Hide Categories & Products V1 by Spooks:

 

Hide Categories & Products

For OScommerce2.2 rc1

I searched for a solution for this, solutions I found were either over complex, or poorly done, so this is my solution.

I believe in keeping things as simple as possible & not re-inventing the wheel.
OSC already has functions to hide any product, so I use that for products.
This adds a new entry in the category table (categories_status) so all thats needed on the client side is to add a filter added to sql queries ( and categories_status = 1 ).
This does not allow for per-customer filtering, although I reckon it wouldent be too difficult to add.

Most changes occur in admin/categories.php.  These allow you to change the status of any category & the status of all products within a category.

My site is heavily modified, so you may need to alter this contribution to fit your site.

Added Missing Entry From 1.0 pointed out by stanec.

INSTALLATION

BACKUP - BACKUP - BACKUP 

First apply the following SQL queries with phpMyAdmin

ALTER TABLE `categories` ADD `categories_status` INT( 1 ) NOT NULL DEFAULT '1';
ALTER TABLE `categories` CHANGE `categories_status` `categories_status` INT( 1 ) NOT NULL DEFAULT '0';

Add images to catalog/adim/images

********************************************

In catalog/admin/categories.php

Near Line 42 Find:

  case 'insert_category':
  case 'update_category':

Add Before
case 'setcats':
	if ( ($HTTP_GET_VARS['flag'] == '0') || ($HTTP_GET_VARS['flag'] == '1') ) {
	  if (isset($HTTP_GET_VARS['cID'])) {
		tep_set_category_status($HTTP_GET_VARS['cID'], $HTTP_GET_VARS['flag']);
	  }

	  if (USE_CACHE == 'true') {
		tep_reset_cache_block('categories');
		tep_reset_cache_block('also_purchased');
	  }
	}
tep_redirect(tep_href_link(FILENAME_CATEGORIES, 'cPath=' . $HTTP_GET_VARS['cPath'] . '&cID=' . $HTTP_GET_VARS['cID']));
	break;

Near Line 77 Find:	

	  tep_db_perform(TABLE_CATEGORIES, $sql_data_array, 'update', "categories_id = '" . (int)$categories_id . "'");
	}	

Add After:

// BOF Cx Prod Status 
$cxstat = (($HTTP_POST_VARS['cxstat'] <> 9) ? $HTTP_POST_VARS['cxstat'] : '');
$products_query = tep_db_query("select p.products_id, cd.categories_name  from " . TABLE_PRODUCTS . " p, " . TABLE_PRODUCTS_TO_CATEGORIES . " p2c, " . TABLE_CATEGORIES_DESCRIPTION . " cd  where  p.products_id = p2c.products_id and p2c.categories_id = '" . (int)$categories_id . "' and cd.categories_id = p2c.categories_id");$cnt=0;
if ($cxstat <> '') {
	while ($products = tep_db_fetch_array($products_query)) { 
	$cnt++;$categories_name = $products['categories_name'];
	tep_set_product_status($products['products_id'], $cxstat);
	}	
	$message = ($cxstat ? IMAGE_ICON_STATUS_GREEN : IMAGE_ICON_STATUS_RED);	 
	$messageStack->add_session('', 'none');
	$messageStack->add_session('Set ' . $cnt . ' Products In ' . $categories_name . ' To ' . $message, 'success');		
	if (USE_CACHE == 'true') {
					tep_reset_cache_block('categories');
					tep_reset_cache_block('also_purchased');
						  }
	}
// EOF Cx Prod Status	 

Near 777 find:

  $categories_query = tep_db_query("select c.categories_id, cd.categories_name, c.categories_image, c.parent_id, c.sort_order, c.date_added, c.last_modified from " . TABLE_CATEGORIES . " c, " . TABLE_CATEGORIES_DESCRIPTION . " cd where c.categories_id = cd.categories_id and cd.language_id = '" . (int)$languages_id . "' and cd.categories_name like '%" . tep_db_input($search) . "%' order by c.sort_order, cd.categories_name");
} else {
  $categories_query = tep_db_query("select c.categories_id, cd.categories_name, c.categories_image, c.parent_id, c.sort_order, c.date_added, c.last_modified from " . TABLE_CATEGORIES . " c, " . TABLE_CATEGORIES_DESCRIPTION . " cd where c.parent_id = '" . (int)$current_category_id . "' and c.categories_id = cd.categories_id and cd.language_id = '" . (int)$languages_id . "' order by c.sort_order, cd.categories_name");
}

Replace With:

  $categories_query = tep_db_query("select c.categories_id, cd.categories_name, c.categories_image, c.parent_id, c.sort_order, c.date_added, c.last_modified, c.categories_status from " . TABLE_CATEGORIES . " c, " . TABLE_CATEGORIES_DESCRIPTION . " cd where c.categories_id = cd.categories_id and cd.language_id = '" . (int)$languages_id . "' and cd.categories_name like '%" . tep_db_input($search) . "%' order by c.sort_order, cd.categories_name");
} else {
  $categories_query = tep_db_query("select c.categories_id, cd.categories_name, c.categories_image, c.parent_id, c.sort_order, c.date_added, c.last_modified, c.categories_status from " . TABLE_CATEGORIES . " c, " . TABLE_CATEGORIES_DESCRIPTION . " cd where c.parent_id = '" . (int)$current_category_id . "' and c.categories_id = cd.categories_id and cd.language_id = '" . (int)$languages_id . "' order by c.sort_order, cd.categories_name");
}


Near Line 820 Find:	

			<td class="dataTableContent" align="center"> </td>


Replace With

<td class="dataTableContent" align="center" ><?php   // CATEGORY STATUS
if ($categories['categories_status'] == '1') {
	echo tep_image(DIR_WS_IMAGES . 'icon_status_greenl.gif', IMAGE_ICON_STATUS_GREEN, 12, 12) . '  <a href="' . tep_href_link(FILENAME_CATEGORIES, 'action=setcats&flag=0&cID=' . $categories['categories_id'] . (isset($HTTP_GET_VARS['cPath']) ? '&cPath=' . $HTTP_GET_VARS['cPath'] : '') ) . '">' . tep_image(DIR_WS_IMAGES . 'icon_status_red_lightl.gif', IMAGE_ICON_STATUS_RED_LIGHT, 12, 12) . '</a>';
  } else {
	echo '<a href="' . tep_href_link(FILENAME_CATEGORIES, 'action=setcats&flag=1&cID=' . $categories['categories_id'] . (isset($HTTP_GET_VARS['cPath']) ? '&cPath=' . $HTTP_GET_VARS['cPath'] : '') ) . '">' . tep_image(DIR_WS_IMAGES . 'icon_status_green_lightl.gif', IMAGE_ICON_STATUS_GREEN_LIGHT, 12, 12) . '</a>' . '  ' . tep_image(DIR_WS_IMAGES . 'icon_status_redl.gif', IMAGE_ICON_STATUS_RED, 12, 12);			}					 
?></td>	

Near Line 950 Find:	


$contents[] = array('text' => '<br>' . TEXT_EDIT_CATEGORIES_NAME . $category_inputs_string);

Replace With:

$select_array[] = array('id' => 9, 'text' => 'No Change');
$select_array[] = array('id' => 0, 'text' => 'Set All Inactive');
$select_array[] = array('id' => 1, 'text' => 'Set All Active');
$contents[] = array('text' => '<br>' . TEXT_EDIT_CATEGORIES_NAME . $category_inputs_string);
$contents[] = array('text' => '<br>' . TABLE_HEADING_STATUS . ': <b>' . ($cInfo->categories_status ? IMAGE_ICON_STATUS_GREEN : IMAGE_ICON_STATUS_RED) . '</b>');

Near Line 960 Find:	

$contents[] = array('text' => '<br>' . TEXT_EDIT_SORT_ORDER . '<br>' . tep_draw_input_field('sort_order', $cInfo->sort_order, 'size="2"'));

Replace With:

$contents[] = array('text' => '<br>' . TEXT_EDIT_SORT_ORDER . '<br>' . tep_draw_input_field('sort_order', $cInfo->sort_order, 'size="2"'));
$contents[] = array('text' => '<br>' . TEXT_CHANGE_PRODUCTS_STATUS . $cInfo->categories_name . '<br>' );
$contents[] = array('align' => 'center', 'text' => tep_draw_pull_down_menu('cxstat', $select_array, 9));

Near Line 990 Find:	

		if (tep_not_null($cInfo->last_modified)) $contents[] = array('text' => TEXT_LAST_MODIFIED . ' ' . tep_date_short($cInfo->last_modified));	

Add After:

	   $contents[] = array('text' => '<br>' . TABLE_HEADING_STATUS . ': <b>' . ($cInfo->categories_status ? IMAGE_ICON_STATUS_GREEN : IMAGE_ICON_STATUS_RED) . '</b>');	

************************************************************

In catalog/admin/includes/functions/general

Near 740 Find:

////
// Sets the status of a product on special

Add Before:

////
// Sets the status of a category
 function tep_set_category_status($categories_id, $status) {
if ($status == '1') {
  return tep_db_query("update " . TABLE_CATEGORIES . " set categories_status = '1', last_modified = now() where categories_id = '" . (int)$categories_id . "'");
} elseif ($status == '0') {
  return tep_db_query("update " . TABLE_CATEGORIES . " set categories_status = '0', last_modified = now() where categories_id = '" . (int)$categories_id . "'");
} else {
  return -1;
}
 }

************************************************************

In catalog/admin/includes/languages/english/categories.php

Near 72 After

define('TEXT_PRODUCTS_STATUS', 'Products Status:');

Add:

define('TEXT_CHANGE_PRODUCTS_STATUS', 'Change Status Of All Products In ');


************************************************************

In catalog/index.php

Near 89 Find:

	  $categories_query = tep_db_query("select c.categories_id, cd.categories_name, c.categories_image, c.parent_id from " . TABLE_CATEGORIES . " c, " . TABLE_CATEGORIES_DESCRIPTION . " cd where c.parent_id = '" . (int)$category_links[$i] . "' and c.categories_id = cd.categories_id and cd.language_id = '" . (int)$languages_id . "' order by sort_order, cd.categories_name");

Replace With:

	 $categories_query = tep_db_query("select c.categories_id, cd.categories_name, c.categories_image, c.parent_id from " . TABLE_CATEGORIES . " c, " . TABLE_CATEGORIES_DESCRIPTION . " cd where c.parent_id = '" . (int)$category_links[$i] . "' and c.categories_status = 1 and c.categories_id = cd.categories_id and cd.language_id = '" . (int)$languages_id . "' order by sort_order, cd.categories_name");

Near 94 Find:

  $categories_query = tep_db_query("select c.categories_id, cd.categories_name, c.categories_image, c.parent_id from " . TABLE_CATEGORIES . " c, " . TABLE_CATEGORIES_DESCRIPTION . " cd where c.parent_id = '" . (int)$current_category_id . "' and c.categories_id = cd.categories_id and cd.language_id = '" . (int)$languages_id . "' order by sort_order, cd.categories_name");

Replace With:

 $categories_query = tep_db_query("select c.categories_id, cd.categories_name, c.categories_image, c.parent_id from " . TABLE_CATEGORIES . " c, " . TABLE_CATEGORIES_DESCRIPTION . " cd where c.parent_id = '" . (int)$current_category_id . "' and c.categories_status = 1 and c.categories_id = cd.categories_id and cd.language_id = '" . (int)$languages_id . "' order by sort_order, cd.categories_name");


************************************************************

In catalog/includes/boxes/categories.php

Near 73 Find:

 $categories_query = tep_db_query("select c.categories_id, cd.categories_name, c.parent_id from " . TABLE_CATEGORIES . " c, " . TABLE_CATEGORIES_DESCRIPTION . " cd where c.parent_id = '0' and c.categories_id = cd.categories_id and cd.language_id='" . (int)$languages_id ."' order by sort_order, cd.categories_name");

Replace With:

 $categories_query = tep_db_query("select c.categories_id, cd.categories_name, c.parent_id from " . TABLE_CATEGORIES . " c, " . TABLE_CATEGORIES_DESCRIPTION . " cd where c.parent_id = '0' and c.categories_id = cd.categories_id and c.categories_status = 1 and cd.language_id='" . (int)$languages_id ."' order by sort_order, cd.categories_name");

Near 99 Find:

  $categories_query = tep_db_query("select c.categories_id, cd.categories_name, c.parent_id from " . TABLE_CATEGORIES . " c, " . TABLE_CATEGORIES_DESCRIPTION . " cd where c.parent_id = '" . (int)$value . "' and c.categories_id = cd.categories_id and cd.language_id='" . (int)$languages_id ."' order by sort_order, cd.categories_name");

Replace With:

  $categories_query = tep_db_query("select c.categories_id, cd.categories_name, c.parent_id from " . TABLE_CATEGORIES . " c, " . TABLE_CATEGORIES_DESCRIPTION . " cd where c.parent_id = '" . (int)$value . "' and c.categories_id = cd.categories_id and c.categories_status = 1 and cd.language_id='" . (int)$languages_id ."' order by sort_order, cd.categories_name");

************************************************************

If you have it,

In catalog/includes/boxes/dm_categories.php

Near 236 Find:

	$result = tep_db_query('select c.categories_id, cd.categories_name, c.parent_id from ' . TABLE_CATEGORIES . ' c, ' . TABLE_CATEGORIES_DESCRIPTION . ' cd where c.categories_id = cd.categories_id and cd.language_id="' . (int)$languages_id .'" '.$parent_query.'order by sort_order, cd.categories_name');

Replace With:

	$result = tep_db_query('select c.categories_id, cd.categories_name, c.parent_id from ' . TABLE_CATEGORIES . ' c, ' . TABLE_CATEGORIES_DESCRIPTION . ' cd where c.categories_id = cd.categories_id and c.categories_status = 1 and cd.language_id="' . (int)$languages_id .'" '.$parent_query.'order by sort_order, cd.categories_name');


************************************************************


There may other instances I have missed, the genereral Rule is:

If there is a general tep_db_query including  TABLE_CATEGORIES add the filter:  and categories_status = 1 

If you applied the sql correctly all your existing categories should default to 'active'.

Link to comment
Share on other sites

  • 3 weeks later...

first of all: tnx for this contrib, works great for me, except one thing...

 

If i include the link into catagory's and i click it, the font and color is different then my other links. (not the link itself, the page with all product) eg header.

 

when i have it with new products etc, the output is good and correct, so the only problem is in the catagory's.

 

anyone knows how to fix this? i've been messing with my stylesheet, but that didn't really did it (other all-products link work)

 

sorry if it's not clear, and tnx in advanged

Link to comment
Share on other sites

The link uses the allproductsBox class. You need to edit that to match the class used by the other links, usually the A class.

 

Jack

Support Links:

For Hire: Contact me for anything you need help with for your shop: upgrading, hosting, repairs, code written, etc.

Get the latest versions of my addons

Recommended SEO Addons

Link to comment
Share on other sites

The link uses the allproductsBox class. You need to edit that to match the class used by the other links, usually the A class.

 

Jack

 

like i said: sorry if i was confusing :D

 

I didn't mean the link itself, that works perfect, changed the colors etc, no problem.

 

But clicked on the link you get the page with: all products. that heading is just different of color and font-type, different then all others.

the other links of all products (what's new, specials) is working fine, and have the right font once open...

 

tnx again!

Link to comment
Share on other sites

The code is trying to use the h1 class from Header Tags. I will fix that in the next release but just add this to your stylesheet.css file and it should work fine (be sure to edit the class to match your site though):

/*** Begin Header Tags SEO ***/
h1 {
font-family: Verdana, Arial, sans-serif;
font-size: 20px;
font-weight: bold;
margin-bottom: 0;
padding-bottom: 0;
color: #000;
}
h2 {
font-family: Verdana, Arial, sans-serif;
font-size: 14px;
font-weight: normal;
margin-bottom: 0;
padding-bottom: 0;
color: #000;
}
/*** End Header Tags SEO ***/

 

Jack

Support Links:

For Hire: Contact me for anything you need help with for your shop: upgrading, hosting, repairs, code written, etc.

Get the latest versions of my addons

Recommended SEO Addons

Link to comment
Share on other sites

The code is trying to use the h1 class from Header Tags. I will fix that in the next release but just add this to your stylesheet.css file and it should work fine (be sure to edit the class to match your site though):
/*** Begin Header Tags SEO ***/
h1 {
font-family: Verdana, Arial, sans-serif;
font-size: 20px;
font-weight: bold;
margin-bottom: 0;
padding-bottom: 0;
color: #000;
}
h2 {
font-family: Verdana, Arial, sans-serif;
font-size: 14px;
font-weight: normal;
margin-bottom: 0;
padding-bottom: 0;
color: #000;
}
/*** End Header Tags SEO ***/

 

Jack

 

 

ahhh, perfect way to wake up at 6 am and read this, it works great, many thanks!! :D

Link to comment
Share on other sites

  • 3 weeks later...

Here i am again. :)

 

I have installed a new contib recently....

SEO friendly URL's.

Took me all wekend to work properly, but it did work in the end, have some more testing to do, but ok...

 

After i checked a few basic thingy's i found a little problem with the all products.

 

when i press the all product line in the category box i get the full output (works fine) but there is a little bug in it.

 

Instead of a-z links at the top it gives me..

 

ALL_PRODUCTS_SEO_LINK_SEPARATOR A ALL_PRODUCTS_SEO_LINK_SEPARATOR B ALL_PRODUCTS_SEO_LINK_SEPARATOR C ALL_PRODUCTS_SEO_LINK_SEPARATOR D ALL_PRODUCTS_SEO_LINK_SEPARATOR E ALL_PRODUCTS_SEO_LINK_SEPARATOR F ALL_PRODUCTS_SEO_LINK_SEPARATOR G ALL_PRODUCTS_SEO_LINK_SEPARATOR H ALL_PRODUCTS_SEO_LINK_SEPARATOR I ALL_PRODUCTS_SEO_LINK_SEPARATOR J ALL_PRODUCTS_SEO_LINK_SEPARATOR K ALL_PRODUCTS_SEO_LINK_SEPARATOR L ALL_PRODUCTS_SEO_LINK_SEPARATOR M ALL_PRODUCTS_SEO_LINK_SEPARATOR N ALL_PRODUCTS_SEO_LINK_SEPARATOR O ALL_PRODUCTS_SEO_LINK_SEPARATOR P ALL_PRODUCTS_SEO_LINK_SEPARATOR Q ALL_PRODUCTS_SEO_LINK_SEPARATOR R ALL_PRODUCTS_SEO_LINK_SEPARATOR S ALL_PRODUCTS_SEO_LINK_SEPARATOR T ALL_PRODUCTS_SEO_LINK_SEPARATOR U ALL_PRODUCTS_SEO_LINK_SEPARATOR V ALL_PRODUCTS_SEO_LINK_SEPARATOR W ALL_PRODUCTS_SEO_LINK_SEPARATOR X ALL_PRODUCTS_SEO_LINK_SEPARATOR Y ALL_PRODUCTS_SEO_LINK_SEPARATOR Z ALL_PRODUCTS_SEO_LINK_SEPARATOR FULL

 

links work, but it doesn't look smooth :D

 

do you know where the problem can be fixed? i have searched some in the all-products.php, but didn't find anything (not a good scripter :) )

 

tnx again in advange!

Edited by Syros
Link to comment
Share on other sites

The database code for that contribution blindly deletes any entry with SEO in it so you have to run the database changes for this one again. But you should only have to run the following, not the full file.

INSERT INTO configuration (configuration_id, configuration_title, configuration_key, configuration_value, configuration_description, configuration_group_id, sort_order, set_function, date_added, use_function) 
VALUES ('','All Products: ON/OFF', 'ALL_PRODUCTS_SEO', 'true', 'All Products <br>(true=on false=off)', '279', '1', 'tep_cfg_select_option(array(\'true\', \'false\'), ', now(), NULL);
INSERT INTO configuration (configuration_id, configuration_title, configuration_key, configuration_value, configuration_description, configuration_group_id, sort_order, set_function, date_added, use_function)
VALUES ('','All Products: Display Mode', 'ALL_PRODUCTS_SEO_DISPLAY_MODE', 'true', 'Display in standard table format <br>(true=on false=off)', '279', '2', 'tep_cfg_select_option(array(\'true\', \'false\'), ', now(), NULL);
INSERT INTO configuration (configuration_id, configuration_title, configuration_key, configuration_value, configuration_description, configuration_group_id, sort_order, set_function, date_added, use_function)
VALUES ('','All Products: Display Numbers in list', 'ALL_PRODUCTS_SEO_DISPLAY_NUMBERS', 'true', 'Show numbers in the list of clickable links at the top of the All Products page.', '279', '3', 'tep_cfg_select_option(array(\'true\', \'false\'), ', now(), NULL);
INSERT INTO configuration (configuration_id, configuration_title, configuration_key, configuration_value, configuration_description, configuration_group_id, sort_order, set_function, date_added, use_function)
VALUES  ('', 'All Products: Link Separator', 'ALL_PRODUCTS_SEO_LINK_SEPARATOR', '|', 'Separate the clickable links with this character.', '279', '4', NULL, now(), NULL);
INSERT INTO configuration (configuration_id, configuration_title, configuration_key, configuration_value, configuration_description, configuration_group_id, sort_order, set_function, date_added, use_function)
VALUES  ('', 'All Products: Exclude Characters', 'ALL_PRODUCTS_SEO_EXCLUDE_LIST', '', 'Enter a comma separated list of characters to be excluded from the clickable links. For example, entering a,b will cause the list not to show A and B.', '279', '5', NULL, now(), NULL);

 

Jack

Support Links:

For Hire: Contact me for anything you need help with for your shop: upgrading, hosting, repairs, code written, etc.

Get the latest versions of my addons

Recommended SEO Addons

Link to comment
Share on other sites

  • 4 weeks later...

Sorry if I've missed this somewhere but I can't get this to work. After finishing the installation I click on an "all products link" (which I have placed in the information box) and I get the following error:

 

Fatal error: Cannot redeclare tep_header_tag_page()

 

This error references line 15 of includes/functions/header_tags.php

 

Any ideas as to what I may have missed?

 

Thanks.

Link to comment
Share on other sites

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.

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...