Jump to content


Corporate Sponsors


Latest News: (loading..)

iankil

Member Since 30 Jul 2007
Offline Last Active Yesterday, 17:50
*****

Posts I've Made

In Topic: Is oscommerce for me? (before I spend 30 hours configuring it like the last o...

21 January 2012, 08:31

I agree, osCommerce is actually the only cart that does exactly what my customer wants and needs, I’ve used osCommerce for about10 years and many other carts to, but i always find my way back to osCommerce and this forum... You need to work and tweak osCommerce a lot, but once you figure it out it’s the best cart out there.

In Topic: AJAX Attribute Manager support

05 January 2012, 14:08

View PostMrHilsen, on 29 December 2011, 12:00, said:

Innstalled the contriobution but get this message when i'm in edit product mode on the admin area:

Deprecated: Assigning the return value of new by reference is deprecated in /home/mrhilzhx/public_html/test/backoffice/attributeManager/includes/attributeManagerGeneralFunctions.inc.php on line 38

Deprecated: Assigning the return value of new by reference is deprecated in /home/mrhilzhx/public_html/test/backoffice/attributeManager/includes/attributeManagerGeneralFunctions.inc.php on line 41

Warning: Cannot modify header information - headers already sent by (output started at /home/mrhilzhx/public_html/test/backoffice/attributeManager/includes/attributeManagerGeneralFunctions.inc.php:38) in /home/mrhilzhx/public_html/test/backoffice/attributeManager/attributeManager.php on line 72

Please help!!!


Hello,
Open your admin/attributeManager/includes/attributeManagerGeneralFunctions.inc.php file and scroll down to row 38

Change this:
$attributeManager =& new attributeManagerAtomic(amGetSesssionVariable(AM_SESSION_VAR_NAME));
to this:
$attributeManager = new attributeManagerAtomic(amGetSesssionVariable(AM_SESSION_VAR_NAME));

And

 $attributeManager =& new attributeManagerInstant($_GET['products_id']);

To

 $attributeManager = new attributeManagerInstant($_GET['products_id']);

Its the =& operator that that needs to be just =
For some reason this operator is not supported anymore, and what the heck is it?
i know that = & is a assignment by reference but when they are stuck togeteher i dont know... Please some one explain [img]http://forums.oscommerce.com//public/style_emoticons/default/wink.png[/img]

/Janne

In Topic: Trying to change text (What file do I open to do this?)

03 January 2012, 08:08

Hello
You can change the text in includes/languages/conditions.php
and for the link you need to edit the includes/modules/boxes/bm_information.php
/Janne

In Topic: add to cart button on homepage new product listing + search results

02 January 2012, 14:03

Hi, you can use this code and paste in in /includes/modules/product_listing.php:

<a href="' . tep_href_link('product_info.php','products_id=' . $listing['products_id']) . '"><img src="layout/images/more_info.gif" border="0" alt=" " /></a> <a href="' . tep_href_link(basename($PHP_SELF), tep_get_all_get_params(array('action')) . 'action=buy_now&products_id=' . $listing['products_id']) . '"><img src="layout/images/button_buy_now.gif" border="0" alt=" " /></a>

its a "more info" and a "buy now" button. These buttons requires two images, button_buy_now.gif and more_info.gif

The most simple way to do this is to download my Horizon2.3 template from the add on page http://addons.oscommerce.com/info/8289 and open the file and take a look. You will also find the buttons there.

Good Luck
/Janne

In Topic: Can someone let me know what they think of these templates

01 January 2012, 18:40

Hello and happy new year... you can download one of my templates, horizon2.3 from http://addons.oscommerce.com/info/8289
its free and will save you a lot of time.

Just like geoffreywalton mentioned it's in thouse files this template is changed, and a few more files for skinning, it dosn't go too deep in to the codes. Its also preeinstalled with my Mindsparx Admin module

Just contact me for a detailed changed files list so you can see exactly what has been changed if you need it.
/Janne