um yeah just wondering can b create order or edit order or not ...;..
any screenshoot?
um yeah just wondering can b create order or edit order or not ...;..
any screenshoot?
Hi guys...Just downloaded/installed SO on my development site, so far poking around, I like it a lot!
Two problems:
* Textarea box on batch_status is ~1w x ~5, looking at the code, it should be called at 50x4
* Status update emails (both cust and admin copies) go fine from SO orders page, do NOT go (and are indicated as such (red checkmark))from batch status update
I have read the enitre thread here and caught many discussions on $notify and made/unmade changes suggested by blindside as they came up. Just got to the end of this lengthy thread, and don't see any perm. fix?
Ideas?
Dave......
i get the same problem to, im going to look to see if i can fix this, if anyone does before me please can you pm
thanks.
ok i think i have fixed this.
open super_batch_status.php from your admin folder
around line 255 find
<td class="smallText" valign="top"><?php echo HEADING_ADD_COMMENTS; ?></td>
<td class="smallText"><?php echo zen_draw_textarea_field('comments', 'soft', '250', '4'); ?></td>
<td class="smallText" valign="center"><?php
replace with
<td width="10%" class="smallText" valign="top"><?php echo HEADING_ADD_COMMENTS; ?></td>
<td width="40%" class="smallText"><?php echo zen_draw_textarea_field('comments', 'soft', '250', '4'); ?></td>
<td width="40%" class="smallText" valign="center"><?php
at the end of the file find
if ( ($check_status->fields['orders_status'] != $status) || zen_not_null($comments)) {
update_status($oID, $status, $notify, $comments);
if ($notify == 1) email_latest_status($oID);
$messageStack->add_session(SUCCESS_ORDER_UPDATED, 'success');
}
else {
$messageStack->add_session(WARNING_ORDER_NOT_UPDATED, 'warning');
}
replace this with
if ( ($check_status->fields['orders_status'] != $status) || zen_not_null($comments)) {
$customer_notified = '0';
if (isset($_POST['notify']) && ($_POST['notify'] == 'on')) {
$customer_notified = '1';
}
update_status($oID, $status, $customer_notified, $comments);
if ($customer_notified == '1') {
email_latest_status($oID);
$messageStack->add_session(SUCCESS_ORDER_UPDATED, 'success');
}
}
now save this, replace this one with the one on the server and all should be good.
Jynxy
Alright, time for some catch-up...
There is no uninstall script, if that's what you mean. Back out the changes described in the Readme, then delete all the tables and files that have a prefix of "super_".
If you know a little SQL, you can also remove the configuration entries by looking at the inserts and searchingf or them in the `configuration` table using phpMyAdmin.
Nope, not at all.
Well you can currently edit everything about an order except for the products. As others have said, that functionality is coming. Returns and exchanges are complete, I have to finish the reporting (nice tie-in with my Sales Report mod) and the functionality to simply add a new product.
What do you mean? Any suggestions on how I can improve the look?Originally Posted by jikey
That's a bug in IE7. Aside from obviously avoiding that piece of crap (how do break stuff that you previously had working!?), I'm implementing changes like the ones you described.
Again, I have a solution, also similar to your own. Will be included in next release, but thanks for posting a fix; been meaning to do that for some time.* Status update emails (both cust and admin copies) go fine from SO orders page, do NOT go (and are indicated as such (red checkmark))from batch status update
I think they are referring to the order creation being done on the catalog side is unprofessional.
What do you mean? Any suggestions on how I can improve the look?Quote:
Originally Posted by jikey
yups but look not so professional actualy ...
Zen cart PCI compliant Hosting
The fix that NamSingh offered will get the display working for you, but like you said, that won't take care of the missing tax fields. You'll have to do a small file edit for that. Open admin/super_invoice.php and find this line near the very top:
Comment that out and add the following line below it:Code:$display_tax = (FED_TAX_ID_NUMBER == '' ? true : false);
Now you're good to go.Code:$display_tax = true;
What problem are you seeing specifically? Explain what you tried to edit, and what happened? The more detail you provide the better.
The line numbers likely changed in newer versions since I wrote that text, however the code block you quoted is from an older version. Are you sure you have the latest one from the download section of the site? Double-check, and then read through the readme, as this installation step is described there as well.
Frank et.al
Is there a list anywhere of which features you are currently working on?
For my own needs adding items to an order would be good. I can split an order by product quantity rather than just product but adding to the order is proving to be a pain.
Thanks
Bookmarks