Jump to content
  • Checkout
  • Login
  • Get in touch

osCommerce

The e-commerce.

NEW! Complete Order Editing Tool!


jhilgeman

Recommended Posts

Hey guys,

 

Can someone tell me what I need to do to follow these instructions:

 

You must modify your shipping modules (under admin/includes/modules/shipping ONLY! ) to use oe_order.php

 

The admin/includes/functions/general.php does not include the function necessary for retrieving countries

with their iso codes. This function has been included in admin/includes/functions/oe_functions.php

 

tep_get_countries_iso(country_id, true);

 

this will return an array with the country id, name and iso codes.

you must use this function to retrieve your destination country iso code, eg.

 

$dest_country = tep_get_countries_iso($order->delivery['country_id'],true);

$iso_code = $dest_country['countries_iso_code_2'];

 

you must also change all occurances of

 

$order->delivery['country']['id']

 

TO $order->delivery['country_id']

 

The only thing I have done is the last part and it all seems to b working?

Link to comment
Share on other sites

In admin/edit_orders.php there are two instances of
EMAIL_TEXT_ORDER_NUMBER . ' ' . (int)$oID . "\n" .

make sure you change both.

 

In admin/edit_orders_ajax.php there is one instance of

EMAIL_TEXT_ORDER_NUMBER . ' ' . $_POST['oID'] . "\n" .

that must be changed as previously mentioned.

 

In admin/edit_orders_ajax.php there is also an instance of

EMAIL_TEXT_ORDER_NUMBER . ' ' . (int)$_GET['oID'] . "\n" .

that must be changed to

EMAIL_TEXT_ORDER_NUMBER . ' ' . tep_trans_id($order->info['date_purchased'],$_GET['oID']) . "\n" .

 

Hey dj,

 

just an update... re-checked above and tried... when i click on new order email.. the email goes through with the order number all good, problem is still with the first instance of email update status, just get a blank space where the order number is suppose to be (this is frustrating) as all other instances work but i cant advise client of update!!

 

Found a second problem, this is in admin/orders.php after editing an order and returning to the Orders Details page (orders.php), if I try to update status and advise client i get the following error:

 

1136 - Column count doesn't match value count at row 1

 

insert into orders_status_history (orders_id, orders_status_id, date_added, customer_notified, comments) values ('561', '1', '2007-08-03 20:22:51' '1', 'TEST')

 

[TEP STOP]

 

on checking via adminphp I notice the extra column - orders_status_history_id not listed in the error

 

Have i missed an update here???

Thanks for your help

Link to comment
Share on other sites

yea the Admin DHTML Menu does sound nice I will have to check it out.

 

I really think it is a HTML issue but I really haven't taken the time to look into it. I am sure it could probably just all be wrapped in a table but before I started digging around I thought I would ask first to see if this was an issue and if their was an easy fix for it.

 

Take a look at the screen shots below to see how it looks. Notice the bottom scroll bar and look how far it will let you scroll to the right.

 

-Thanks

 

Disable the payment method dropdown and see if the problem goes away.

 

If so find in admin/edit_orders.php

			  echo tep_draw_pull_down_menu('update_info_payment_method', $enabled_payment, $order->info['payment_method'], 'id="update_info_payment_method" onChange="init()"');

and change it to

			  echo tep_draw_pull_down_menu('update_info_payment_method', $enabled_payment, $order->info['payment_method'], 'id="update_info_payment_method" style="width: 200px;" onChange="init()"');

then re-enable the payment method dropdown menu.

Do, or do not. There is no try.

 

Order Editor 5.0.6 "Ultra Violet" is now available!

For support or to post comments, suggestions, etc, please visit the Order Editor support thread.

Link to comment
Share on other sites

Hey guys,

 

Can someone tell me what I need to do to follow these instructions:

 

The only thing I have done is the last part and it all seems to b working?

 

If it's working, I'd say go with it.

Do, or do not. There is no try.

 

Order Editor 5.0.6 "Ultra Violet" is now available!

For support or to post comments, suggestions, etc, please visit the Order Editor support thread.

Link to comment
Share on other sites

Hey dj,

 

just an update... re-checked above and tried... when i click on new order email.. the email goes through with the order number all good, problem is still with the first instance of email update status, just get a blank space where the order number is suppose to be (this is frustrating) as all other instances work but i cant advise client of update!!

 

Found a second problem, this is in admin/orders.php after editing an order and returning to the Orders Details page (orders.php), if I try to update status and advise client i get the following error:

 

1136 - Column count doesn't match value count at row 1

 

insert into orders_status_history (orders_id, orders_status_id, date_added, customer_notified, comments) values ('561', '1', '2007-08-03 20:22:51' '1', 'TEST')

 

[TEP STOP]

 

on checking via adminphp I notice the extra column - orders_status_history_id not listed in the error

 

Have i missed an update here???

Thanks for your help

 

In admin/edit_orders_ajax.php find

	//11. insert new comments
	if ($_POST['action'] == 'insert_new_comment') {

and change it to

	//11. insert new comments
	if ($_POST['action'] == 'insert_new_comment') {  
	$order = new manualOrder($_POST['oID']);

 

The error in admin/orders.php is caused by the fact that there is no comma after '2007-08-03 20:22:51'. The query should read

insert into orders_status_history (orders_id, orders_status_id,  date_added, customer_notified, comments) values ('561', '1',  '2007-08-03 20:22:51', '1', 'TEST')

and then you wouldn't get the error. You need to track down the code in admin/orders.php that generates that query and put the comma back where it belongs.

Do, or do not. There is no try.

 

Order Editor 5.0.6 "Ultra Violet" is now available!

For support or to post comments, suggestions, etc, please visit the Order Editor support thread.

Link to comment
Share on other sites

hey dj,

 

All seems to be working.. will give it a good work out later but so far so good... ps found where that comma was missing, you wouldnt want to blink!!

Just like to pass on my thanks for this contribution, it's definitely made my job so much easier!! Thanks :)

Link to comment
Share on other sites

Very cool contribution I must say first off. I installed 4.0.2 and I just have small very small issues. First thing first though. On my edit_orders.php it doesn't fit the screen I have to scroll off the screen so I don't know if their is a fix for that or if that is the way it is suppose to be?

 

Also at the very top of that same file I have this

 

<!---- BEGIN SHIPPING MODULE BLOCK ---------->

 

So is their something I need to edit or do to fix this scroll issue?

 

-Thanks

 

 

Sorry guys i havent been around for the last week.. been very busy..

 

it seems as if firefox doesnt want you to use any more dashes over two.. for example the comment is supposed to be <!-- --> well if you use anymore dashes over two on either side.. they will show up.. stupid but ah well

Link to comment
Share on other sites

I'm confsed about the final instruction in the intall file:

I have done everything elese and the tool seems to be working except for shipping so I have not done the above.

 

For example, what would I need to change in my flat shipping file:

<?php
/*
 $Id: flat.php,v 1.40 2003/02/05 22:41:52 hpdl Exp $

 osCommerce, Open Source E-Commerce Solutions
 http://www.oscommerce.com

 Copyright (c) 2003 osCommerce

 Released under the GNU General Public License
*/

 class flat {
var $code, $title, $description, $icon, $enabled;

// class constructor
function flat() {
  global $order;

  $this->code = 'flat';
  $this->title = MODULE_SHIPPING_FLAT_TEXT_TITLE;
  $this->description = MODULE_SHIPPING_FLAT_TEXT_DESCRIPTION;
  $this->sort_order = MODULE_SHIPPING_FLAT_SORT_ORDER;
  $this->icon = '';
  $this->tax_class = MODULE_SHIPPING_FLAT_TAX_CLASS;
  $this->enabled = ((MODULE_SHIPPING_FLAT_STATUS == 'True') ? true : false);

  if ( ($this->enabled == true) && ((int)MODULE_SHIPPING_FLAT_ZONE > 0) ) {
	$check_flag = false;
	$check_query = tep_db_query("select zone_id from " . TABLE_ZONES_TO_GEO_ZONES . " where geo_zone_id = '" . MODULE_SHIPPING_FLAT_ZONE . "' and zone_country_id = '" . $order->delivery['country_id'] . "' order by zone_id");
	while ($check = tep_db_fetch_array($check_query)) {
	  if ($check['zone_id'] < 1) {
		$check_flag = true;
		break;
	  } elseif ($check['zone_id'] == $order->delivery['zone_id']) {
		$check_flag = true;
		break;
	  }
	}

	if ($check_flag == false) {
	  $this->enabled = false;
	}
  }
}

// class methods
function quote($method = '') {
  global $order;

  $this->quotes = array('id' => $this->code,
						'module' => MODULE_SHIPPING_FLAT_TEXT_TITLE,
						'methods' => array(array('id' => $this->code,
												 'title' => MODULE_SHIPPING_FLAT_TEXT_WAY,
												 'cost' => MODULE_SHIPPING_FLAT_COST)));

  if ($this->tax_class > 0) {
	$this->quotes['tax'] = tep_get_tax_rate($this->tax_class, $order->delivery['country_id'], $order->delivery['zone_id']);
  }

  if (tep_not_null($this->icon)) $this->quotes['icon'] = tep_image($this->icon, $this->title);

  return $this->quotes;
}

function check() {
  if (!isset($this->_check)) {
	$check_query = tep_db_query("select configuration_value from " . TABLE_CONFIGURATION . " where configuration_key = 'MODULE_SHIPPING_FLAT_STATUS'");
	$this->_check = tep_db_num_rows($check_query);
  }
  return $this->_check;
}

function install() {
  tep_db_query("insert into " . TABLE_CONFIGURATION . " (configuration_title, configuration_key, configuration_value, configuration_description, configuration_group_id, sort_order, set_function, date_added) values ('Enable Flat Shipping', 'MODULE_SHIPPING_FLAT_STATUS', 'True', 'Do you want to offer flat rate shipping?', '6', '0', 'tep_cfg_select_option(array(\'True\', \'False\'), ', now())");
  tep_db_query("insert into " . TABLE_CONFIGURATION . " (configuration_title, configuration_key, configuration_value, configuration_description, configuration_group_id, sort_order, date_added) values ('Shipping Cost', 'MODULE_SHIPPING_FLAT_COST', '5.00', 'The shipping cost for all orders using this shipping method.', '6', '0', now())");
  tep_db_query("insert into " . TABLE_CONFIGURATION . " (configuration_title, configuration_key, configuration_value, configuration_description, configuration_group_id, sort_order, use_function, set_function, date_added) values ('Tax Class', 'MODULE_SHIPPING_FLAT_TAX_CLASS', '0', 'Use the following tax class on the shipping fee.', '6', '0', 'tep_get_tax_class_title', 'tep_cfg_pull_down_tax_classes(', now())");
  tep_db_query("insert into " . TABLE_CONFIGURATION . " (configuration_title, configuration_key, configuration_value, configuration_description, configuration_group_id, sort_order, use_function, set_function, date_added) values ('Shipping Zone', 'MODULE_SHIPPING_FLAT_ZONE', '0', 'If a zone is selected, only enable this shipping method for that zone.', '6', '0', 'tep_get_zone_class_title', 'tep_cfg_pull_down_zone_classes(', now())");
  tep_db_query("insert into " . TABLE_CONFIGURATION . " (configuration_title, configuration_key, configuration_value, configuration_description, configuration_group_id, sort_order, date_added) values ('Sort Order', 'MODULE_SHIPPING_FLAT_SORT_ORDER', '0', 'Sort order of display.', '6', '0', now())");
}

function remove() {
  tep_db_query("delete from " . TABLE_CONFIGURATION . " where configuration_key in ('" . implode("', '", $this->keys()) . "')");
}

function keys() {
  return array('MODULE_SHIPPING_FLAT_STATUS', 'MODULE_SHIPPING_FLAT_COST', 'MODULE_SHIPPING_FLAT_TAX_CLASS', 'MODULE_SHIPPING_FLAT_ZONE', 'MODULE_SHIPPING_FLAT_SORT_ORDER');
}
 }
?>

 

THANKS

 

 

Hey you have made the necessary changes.. but look back around page 105 - 109.. there was a javascript function that was missing.. you need to add that javascript function to your edit_orders.php and it should get it work..

 

also if you are using only one shipping module.. then you need to delete some lines of code..

 

look for this around 2400

 

<?php
	} else {
	  for ($j=0, $n2=sizeof($quotes[$i]['methods']); $j<$n2; $j++) {
		// set the radio button to be checked if it is the method chosen
		$checked = (($quotes[$i]['id'] . '_' . $quotes[$i]['methods'][$j]['id'] == $shipping['id']) ? true : false);
			echo '			   <tr >' . "\n";
?>

				<td width="250"><?php echo $quotes[$i]['methods'][$j]['title']; ?></td>
<?php
		if ( ($n > 1) || ($n2 > 1) ) {
?>
				<td width="25"><?php echo $currencies->format(tep_add_tax($quotes[$i]['methods'][$j]['cost'], (isset($quotes[$i]['tax']) ? $quotes[$i]['tax'] : 0)));	?></td>
				<td width="10" align="right"><?php echo tep_draw_oe_radio_field('shipping', $quotes[$i]['id'] . '_' . $quotes[$i]['methods'][$j]['id'], $checked, '','onClick="update_delivery_cost(\''.$quotes[$i]['module'].'\',\''. tep_add_tax($quotes[$i]['methods'][$j]['cost'], $quotes[$i]['tax']). '\')"'); ?></td>
<?php
		} else {
?>
				<td  align="right" colspan="2"><?php echo $currencies->format(tep_add_tax($quotes[$i]['methods'][$j]['cost'], $quotes[$i]['tax'])) . tep_draw_hidden_field('shipping', $quotes[$i]['id'] . '_' . $quotes[$i]['methods'][$j]['id']); ?></td>
<?php
		}
?>
			  </tr>
<?php
	  }
	}
?>

 

and change it to

 

<?php
	} else {
	  for ($j=0, $n2=sizeof($quotes[$i]['methods']); $j<$n2; $j++) {
		// set the radio button to be checked if it is the method chosen
		$checked = (($quotes[$i]['id'] . '_' . $quotes[$i]['methods'][$j]['id'] == $shipping['id']) ? true : false);
			echo '			   <tr >' . "\n";
?>

				<td width="250"><?php echo $quotes[$i]['methods'][$j]['title']; ?></td>
				<td width="25"><?php echo $currencies->format(tep_add_tax($quotes[$i]['methods'][$j]['cost'], (isset($quotes[$i]['tax']) ? $quotes[$i]['tax'] : 0)));	?></td>
				<td width="10" align="right"><?php echo tep_draw_oe_radio_field('shipping', $quotes[$i]['id'] . '_' . $quotes[$i]['methods'][$j]['id'], $checked, '','onClick="update_delivery_cost(\''.$quotes[$i]['module'].'\',\''. tep_add_tax($quotes[$i]['methods'][$j]['cost'], $quotes[$i]['tax']). '\')"'); ?></td>

			  </tr>
<?php
	  }
	}
?>

 

Anyone using only one shipping module must make this change.. probably better to just do it ..

Link to comment
Share on other sites

Hey guys,

 

Can someone tell me what I need to do to follow these instructions:

The only thing I have done is the last part and it all seems to b working?

 

you only need to make those changes in shipping modules that need an iso code.. the flat rate module doesnt use the iso code.. so its not needed..

Link to comment
Share on other sites

I feel like I'm writing a diary to myself :-" but in case anyone else is as bothered by this bug as much as me, I rolled back to version to 3.0.2.1 and the bug is non-existant there, and it functions very well from what I can tell so far.

 

I didnt anticipate someone not using shipping modules .. that was my mistake and I didnt realize I just took that out.. there are the extra spaces for custom charges.. if you add in a value into any of those three fields.. the total should have been updated and the custom charge saved to the database... but if it wasnt then there must be an issue..

Link to comment
Share on other sites

Sorry guys i havent been around for the last week.. been very busy..

 

it seems as if firefox doesnt want you to use any more dashes over two.. for example the comment is supposed to be <!-- --> well if you use anymore dashes over two on either side.. they will show up.. stupid but ah well

 

That was an easy one I fixed already. I mean I could have found it but I left it because I didn't know if it pertained to the other problem I am having with the page width. Look above on this page for the screen shots of the problem I am having.

 

 

-Thanks

Search the forum and contributions before posting. If that doesn't work, keep looking, then post. The forum is for seeking help and advice NOT for someone to do your work for you. Try to do something on your on, if you are going to run a shop then learn how it works.

Link to comment
Share on other sites

Sorry guys i havent been around for the last week.. been very busy..

 

it seems as if firefox doesnt want you to use any more dashes over two.. for example the comment is supposed to be <!-- --> well if you use anymore dashes over two on either side.. they will show up.. stupid but ah well

 

Hey Insaini, any reason why my MI TAX 6% line shows up when I first edit the order but as soon as I hit update the line disappears both from the order and from the database. It also doesn't then update the total so I get a subtotal and total line that is exactly the same. Thanks. Anthony

Link to comment
Share on other sites

Hey Insaini, any reason why my MI TAX 6% line shows up when I first edit the order but as soon as I hit update the line disappears both from the order and from the database. It also doesn't then update the total so I get a subtotal and total line that is exactly the same. Thanks. Anthony

 

your missing a bug fix..

 

find this around line 568

 

								$shipping = array('id' => $shipping,
								'title' => ($quotes[$i]['module'] . ' (' . $quotes[$i]['methods'][$j]['title'] . ')'),
								'cost' => $quotes[$i]['methods'][$j]['cost']);

							$Query = "UPDATE " . TABLE_ORDERS_TOTAL . " SET
								title = '" . $shipping['title'] . "'
								WHERE class = 'ot_tax'
								AND orders_id = '" . (int)$oID . "'";
							tep_db_query($Query);

 

see this line

 

WHERE class = 'ot_tax' ..

 

it should be

 

WHERE class = 'ot_shipping' ..

 

you may also be missing it a little further below

 

around line 600 find

 

						if ($quotes[$i]['id'] . '_' . $quotes[$i]['methods'][$j]['id'] == $shipping) {
						$shipping = array('id' => $shipping,
							'title' => ($quotes[$i]['module'] . ' (' . $quotes[$i]['methods'][$j]['title'] . ')'),
							'cost' => $quotes[$i]['methods'][$j]['cost']);

						$Query = "UPDATE " . TABLE_ORDERS_TOTAL . " SET
							title = '" . $shipping['title'] . "'
							WHERE class = 'ot_tax'
							AND orders_id = '" . (int)$oID . "'";
						tep_db_query($Query);
					}

 

change the same line as above

 

either you have to change both or just one..

 

also make sure you added in the missing javascript function.. it was posted i believe on page 108 or 109 ..

 

J

Link to comment
Share on other sites

That was an easy one I fixed already. I mean I could have found it but I left it because I didn't know if it pertained to the other problem I am having with the page width. Look above on this page for the screen shots of the problem I am having.

-Thanks

 

I saw that.. im pretty sure your problem is with a missing </td> or </tr> etc.. your missing an end tag and thats whats causing this.. you may have deleted it by accident..

 

I dont know how many additional mods you have made to the order editor.. i suggest just replacing the file and see what it looks like.. then start reapplying any mods one at a time keeping an eye on the layout.. if it suddenly changes after an edit.. then the edit must have a missing tag or two..

Link to comment
Share on other sites

I saw that.. im pretty sure your problem is with a missing </td> or </tr> etc.. your missing an end tag and thats whats causing this.. you may have deleted it by accident..

 

I dont know how many additional mods you have made to the order editor.. i suggest just replacing the file and see what it looks like.. then start reapplying any mods one at a time keeping an eye on the layout.. if it suddenly changes after an edit.. then the edit must have a missing tag or two..

 

Yea I it looks like a simple HTML error somewhere, but where I don't know. I have not made any edits to that file. That is the way it came straight from the download package. I even tried another version and still the same thing happens. I FTP it straight to the admin and that is how it looked out of the box. I have uploaded it a couple of times and like I said even tried it from other versions. It's really weird no one else is having this issue.

Search the forum and contributions before posting. If that doesn't work, keep looking, then post. The forum is for seeking help and advice NOT for someone to do your work for you. Try to do something on your on, if you are going to run a shop then learn how it works.

Link to comment
Share on other sites

Yea I it looks like a simple HTML error somewhere, but where I don't know. I have not made any edits to that file. That is the way it came straight from the download package. I even tried another version and still the same thing happens. I FTP it straight to the admin and that is how it looked out of the box. I have uploaded it a couple of times and like I said even tried it from other versions. It's really weird no one else is having this issue.

 

It looks to me like you have a payment method with a really long title. Have you tried the fix I suggested?

Do, or do not. There is no try.

 

Order Editor 5.0.6 "Ultra Violet" is now available!

For support or to post comments, suggestions, etc, please visit the Order Editor support thread.

Link to comment
Share on other sites

It looks to me like you have a payment method with a really long title. Have you tried the fix I suggested?

 

 

No I didn't try the fix you suggested but when you mentioned about the really long payment title that hit me and I went back and looked because I remember I added this to the language file for pay-pal.

 

'<img src="images/PayPal.gif" width="79" height="33" /><img src="images/credit_card_logos_31.gif" width="188" height="32"> Secure payments with credit card <BR> Before you use this service you must be a registered member of PayPal. To sign up click <a href="https://www.paypal.com/cgi-bin/webscr?cmd=_registration-run" target="_blank">HERE</a>

 

So that is what was stretching the drop down box which in turn stretch the page. I knew it was something simple and it was.

 

Thanks for all the help.

Search the forum and contributions before posting. If that doesn't work, keep looking, then post. The forum is for seeking help and advice NOT for someone to do your work for you. Try to do something on your on, if you are going to run a shop then learn how it works.

Link to comment
Share on other sites

Ok I got all that sorted out with the width and hard code those descriptions for my pay-pal and made a new language define for my admin side and it's good to go now.

 

Now for my next question.....

 

1. Where do you enter the credit card information. I see where you select the payment module and the process the order in step 4, but I do not see where or how to enter cc number etc or does this contribution not do this?

 

2. I am not getting real time shipping quotes so can some advise me what I need to look into to get this to work. I am using UPS Choice and USPS XML for my shipping modules.

 

-Thanks

Search the forum and contributions before posting. If that doesn't work, keep looking, then post. The forum is for seeking help and advice NOT for someone to do your work for you. Try to do something on your on, if you are going to run a shop then learn how it works.

Link to comment
Share on other sites

i ham trying to intregate this contriution http://www.oscommerce.com/community/contri...facture+invoice in to ordereditor 5.. does any body know which files in order editor do i need to amend to get this to work.. the contribution works perfectly with vanilla osc..

 

the contribution makes changes to order.php on admin side

 

thanks in advance

Edited by nafri
Link to comment
Share on other sites

i ham trying to intregate this contriution http://www.oscommerce.com/community/contri...facture+invoice in to ordereditor 5.. does any body know which files in order editor do i need to amend to get this to work.. the contribution works perfectly with vanilla osc..

 

the contribution makes changes to order.php on admin side

 

thanks in advance

 

update.. i manged to get it to work.somehoe the bottom update doesnt work. the top one work.... if anyone got any ideas please let me know..

 

naf

Link to comment
Share on other sites

update.. i manged to get it to work.somehoe the bottom update doesnt work. the top one work.... if anyone got any ideas please let me know..

 

naf

 

 

doesnt seem to work.. once i assign it the invoice number via order editor , the order are no longer visible from customer end. thing i have made wrong changes in order editor.. if u get a second can please have a look at this.

 

many thanks

Link to comment
Share on other sites

doesnt seem to work.. once i assign it the invoice number via order editor , the order are no longer visible from customer end. thing i have made wrong changes in order editor.. if u get a second can please have a look at this.

 

many thanks

 

What changes did you make to Order Editor?

Do, or do not. There is no try.

 

Order Editor 5.0.6 "Ultra Violet" is now available!

For support or to post comments, suggestions, etc, please visit the Order Editor support thread.

Link to comment
Share on other sites

What changes did you make to Order Editor?

[/quote

 

 

thnaks for replying.

 

I simply duplicated the changes it makes to admin/order.php to order_editor.php and oe_order.php.i also found out that it deletes the orders from the admin orders as well. but when i look at the database through phpmyadmin the orders are still there. They are just not showing up in admin or at customer end. i have just reinstalled version 5 on a brand new vanlla osc . I am not sure where exactly the changes are to go.. i think i have made the wrong changes in the wrong file..

 

kind of stuck here.. i keep trying different thing. Php is new to me.. seem to be hitting a dead end.

 

thanks for getting back .. djmonkey

Edited by nafri
Link to comment
Share on other sites

thnaks for replying.

 

I simply duplicated the changes it makes to admin/order.php to order_editor.php and oe_order.php.i also found out that it deletes the orders from the admin orders as well. but when i look at the database through phpmyadmin the orders are still there. They are just not showing up in admin or at customer end. i have just reinstalled version 5 on a brand new vanlla osc . I am not sure where exactly the changes are to go.. i think i have made the wrong changes in the wrong file..

 

kind of stuck here.. i keep trying different thing. Php is new to me.. seem to be hitting a dead end.

 

thanks for getting back .. djmonkey

 

Order Editor 5.0 does not use a file called oe_order.php. The order class file used by 5.0 is stored at admin/order_editor/order.php.

 

You should revert back to the files you had before you made these changes and make sure everything works properly then. Once you have stable code working you can try again to get this contribution integrated.

Edited by djmonkey1

Do, or do not. There is no try.

 

Order Editor 5.0.6 "Ultra Violet" is now available!

For support or to post comments, suggestions, etc, please visit the Order Editor support thread.

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