Jump to content


Corporate Sponsors


Latest News: (loading..)

germ

Member Since 10 Apr 2007
Offline Last Active Feb 08 2012, 11:14
*****

Posts I've Made

In Topic: Cross-Sell (X-Sell)

04 February 2012, 19:22

The beginning of the xsell code:

<table class="cont_heading_table" border="0" cellpadding="0" cellspacing="0" width="100%">
  <tr>
	<td class="cont_heading_l"><img src="images/cont_heading_left.gif" alt="" border="0" height="5" width="5"></td>
	<td class="cont_heading_td">We Also Recommend</td>
	<td class="cont_heading_r"><img src="images/cont_heading_right.gif" alt="" border="0" height="5" width="5"></td>
  </tr>
</table>
<table border="0" cellpadding="0" cellspacing="0" width="">

Change the last line of that code to this:

<table class="prod_table" border="0" cellpadding="0" cellspacing="0" width="">


In Topic: SSL issues

04 February 2012, 17:39

Be sure the admin email address is like this:

admin@your_domain.com


This format might not work:

<admin>admin@your_domain.com


Beyond that I really haven't debugged email problems.

Adding content "sequentially" to the left (or right) column is pretty straight forward.

At the end of /catalog/includes/column_left.php (or column_right.php) after the closing php tag, add your code like this:

<tr><td align="center">

******** DELETE THIS LINE AND PUT THE HTML FOR CONTENT HERE  ********

</td></tr>

<tr><td align="center">

******** DELETE THIS LINE AND PUT THE HTML FOR CONTENT HERE  ********

</td></tr>

<tr><td align="center">

******** DELETE THIS LINE AND PUT THE HTML FOR CONTENT  ********

</td></tr>
And so on....

In Topic: create_account.php page not opening in IE but works fine in other browsers

04 February 2012, 17:10

Click me

In Topic: Adding a background image to the whole site.

02 February 2012, 17:52

Anyone really wanting help on this should give their URL.

It's almost impossible to help with this without a URL.

In Topic: Order email

01 February 2012, 22:07

Change this code:

  $email_order .= "\n" . EMAIL_TEXT_BILLING_ADDRESS . "\n" .
				  EMAIL_SEPARATOR . "\n" .
				  tep_address_label($customer_id, $billto, 0, '', "\n") . "\n\n";

To:

  $email_order .= "\n" . EMAIL_TEXT_BILLING_ADDRESS . "\n" .
				  EMAIL_SEPARATOR . "\n" .
				  tep_address_label($customer_id, $billto, 0, '', "\n") . "\n\n" .
				  $order->customer['email_address'] . "\n\n" ;