

akvario
Members-
Content count
26 -
Joined
-
Last visited
About akvario
- Birthday 03/23/1980
Profile Information
-
Real Name
yngve
-
Gender
Male
-
Location
Norway
-
Interests
Work on OSC :)
- Website
-
Hi I just downloaded your product list contribution but I cannot seem to have it working. Can you provide any suggestion or an improved instruction file? Even following the one that is online, I cannot display any new menu item in my admin report that would allow me to open the product list. Help would be greatly appreciated. Thank you.
-
[Contribution] Support forum for Single Page Checkout
akvario replied to crombiecrunch's topic in Templates and Images
Thanks Jonathan Looks good, i'll have to test this one ;) -
[Contribution] Support forum for Single Page Checkout
akvario replied to crombiecrunch's topic in Templates and Images
The title got my attention :) "Singe page checkout" I would love to see a demo OR just some screenshoots. -
Bumping this one. Anyone interested to look at my problem ? I'll pay for the solution :) Shoot me a PM
-
Im wondering if someone could help me fix a bug in Order Editor. I'll pay for your work, just give me a price. I Order editor is a great tool, but it contains a bug that i can't fix. In the order_totals table there are some fields that shold be included in the order, right ? Usally ot_shipping and ot_tax. In my case i also have a third column that shold be added, it's called ot_fixed_payment_chg. My orders are OK, but if i do edit an order the order editor doesn't add the value in the field ot_fixed_payment_chg If you can help solve this bug i will be glad, let me know a price for this. Thanks in advice. The problem is discussed here in post 763
-
Simpe fix for my attachment problem edit includes/functions/general.php Find: function tep_mail_string_attachment($to_name, $to_email_address, $email_subject, $email_text, $from_email_name, $from_email_address, $string, $filename) { if (SEND_EMAILS != 'true') return false; // Instantiate a new mail object $message = new email(array('X-Mailer: osCommerce')); // Build the text version $text = strip_tags($email_text); if (EMAIL_USE_HTML == 'true') { $message->add_html($email_text, $text); } else { Replace with: function tep_mail_string_attachment($to_name, $to_email_address, $email_subject, $email_text, $from_email_name, $from_email_address, $string, $filename) { if (SEND_EMAILS != 'true') return false; // Instantiate a new mail object $message = new email(array('X-Mailer: osCommerce')); // Build the text version $text = strip_tags($email_text); if (EMAIL_USE_HTML == 'true') { // HTML won't be used in this mail $message->add_html($email_text, $text); $message->add_text($text); } else {
-
Hi Thanks for a nice contrib. I've been struggeling to get the pdf attached with outgooing emails. When i changed EMAIL_USE_HTML from true to false it worked... Any idea why it doesn't work with EMAIL_USE_HTML set to true ? I've hacked this contrib some more, i've set it up so the attachment can be sent true the administration when you update an order.
-
Thanks Chris, i'll test this out, and let you know how it works out. Anyone else with the same problem?
-
Hi Got most of this working, allmost ready to relase the Norwegian module for this. I got a problem with the "ajax popup" that connects to the courier. For some reason i can't get this to work in ordrers.php and ds_account_history_info.php When i click on the tracking link i get this message " Unable to find an active Internet connection. Please check your settings. [x] Lukk " Any idea?
-
More info on the bug. I went to modules.php and pressed install: Now it's working. - I tested, and went back to modules.php, opened the module, didn't do any changes... Hit SAVE. Check the TRACKING_REGEXP_RM, for some reason it have changed. This happens in both your courier modules. Any idea?
-
Hi Chris ! First i just want to say thanks for a very nice contrib! I agree with you, soon all the big boys will see this and make contribs for their courier(s). I've kept my eyes open for something like this for a long time. I installed your framework yesterday and also made a module for the Norwegian Post office:) I'll relase it if the other guy doesn't, the code needs a lot of cleaning first, but it works. For some reason, if i do make changes to a module in modules.php the contrib stops working. I had to make changes to the file in inc./modules/tracking/ and remove/install the module again, im not sure why.
-
I found a bug in the last package, updated the contribution. http://www.oscommerce.com/community/contributions,520
-
[Contribution] QTpro - Quantity Tracking Professional
akvario replied to zonetown's topic in General Add-Ons Support
Is it possible to use qt pro and easypopulate to add new products to stock ? I've tried to set $products_with_attributes = true; but i can't see any stock controll in the downloaded file. Any idea what i should do to get it to work ? -
I'll pay for this module if someone can help me out ;) PM me a price
-
Hello, im trying to make some changes til checkout_process.php and need some help. I want the mail sent to admin to have a subject like this : Store name, firstname - Lastname - ORDER TOTAL I've managed to get the first part working, but how can i get the ORDER TOTAL in the subject ? Here is the code :