

pdcelec
Members-
Content count
594 -
Joined
-
Last visited
-
Days Won
3
Everything posted by pdcelec
-
it means that there is no table named "os.discount_coupons" in your database. Do the instructions in the add on mention this ?
-
Have a look at catalog/privacy.php and use a similar format (also do not forget catalog/includes/languages/english/privacy.php for the defines)
-
It does not matter whether the lines are added to the beginning or end of the file HOWEVER, the convention is to add them to END of the file BEFORE the closing ?>
-
Issue 1 catalog/includes/english.php is where these definiitions come from
-
RewriteBase /catalog/
-
Product Tabs issues with SQL
pdcelec replied to ElaineEnriquezBloch's topic in General Add-Ons Support
It means that you already have a column with the name 'products_spec' in the database -
Google XML Sitemap SEO compatible with FWR Media Ultimate SEO URL 5
pdcelec replied to spoofy's topic in General Add-Ons Support
Replace SELECT p.products_id as pID, p.products_date_added as date_added, p.products_last_modified as last_mod, p.products_ordered FROM products p, categories c, products_to_categories p2c where c.categories_status='1' and p.products_id = p2c.products_id and p2c.categories_id = c.categories_id and p.products_status='1' ORDER BY products_ordered DESC To SELECT p.products_id as pID, p.products_date_added as date_added, p.products_last_modified as last_mod, p.products_ordered FROM products p, categories c, products_to_categories p2c where p.products_id = p2c.products_id and p2c.categories_id = c.categories_id and p.products_status='1' ORDER BY products_ordered DESC Alternatively, install enable/disable categories -
Change that piece of code with if ( (!isset($_GET['sort'])) || (!preg_match('/^[1-8][ad]$/', $_GET['sort'])) || (substr($_GET['sort'], 0, 1) > sizeof($column_list)) ) { for ($i=0, $n=sizeof($column_list); $i<$n; $i++) { if ($column_list[$i] == 'PRODUCT_LIST_NAME') { $_GET['sort'] = $i+1 . 'a'; $listing_sql .= " order by pd.products_name"; break;
-
Which URL rewriter are you using?
-
Need something similar to Family Product without STS
pdcelec replied to SSCraft's topic in General Add-Ons Support
Master products maybe http://addons.oscommerce.com/info/1681 for RC2.2a http://addons.oscommerce.com/info/7738 for 2.3.x -
You seem to be creating problems that dont exist. I installed this in about 2 minutes.
-
How to get rid of session ID's for OSC 2.3.1
pdcelec replied to discxpress's topic in General Add-Ons Support
Try installing USU5 Pro HTH -
As far as I am aware, only products are listed in the feed not articles
-
Ultimate seo urls and manufactureres urls
pdcelec replied to aliali's topic in General Add-Ons Support
you need to install SEO urls -
KissMT Dynamic SEO Meta & Canonical Header Tags
pdcelec replied to FWR Media's topic in General Add-Ons Support
In application_top change this bit // add the products model to the breadcrumb trail to // add the products name to the breadcrumb trail and the bit below if (isset($_GET['products_id'])) { $name_query = tep_db_query("select products_name from " . TABLE_PRODUCTS_DESCRIPTION . " where products_id = '" . (int)$_GET['products_id'] . "' AND language_id=" . (int)$languages_id . ""); if (tep_db_num_rows($name_query)) { $name = tep_db_fetch_array($name_query); $breadcrumb->add($name['products_name'], tep_href_link(FILENAME_PRODUCT_INFO, 'cPath=' . $cPath . '&products_id=' . $_GET['products_id'])); } } -
http://forums.oscommerce.com/topic/193738-a-guide-to-the-configurephp-files/page__st__60
-
line 11 shows define('SEO_ENABLED','true'); //Change to 'false' to disable if Ultimate SEO URLs is not installed
-
Try http://addons.oscommerce.com/info/4513 and download 4th January 2010 by FWR media It works as required
-
I do not understand the question
-
Which download did you use?. The version that I downloaded produces nothing like yours
-
do you have USU5 installed?
-
check that you have installed it correctly and read and understood the instructions provided HTH
-
Google XML Sitemap SEO compatible with FWR Media Ultimate SEO URL 5
pdcelec replied to spoofy's topic in General Add-Ons Support
c.categories_status is not standard code. It comes from the contribution, enable/disable categories -
This has nothing at all to do with USU5
-
Robert's contributions are good but NOT magical. Things dont "all of a sudden" do anything. It was something that YOU did!!!!