Show Posts


Messages - ronanmag

Pages: [1]
1
Template Support / Re: email alerts for when customers create an account
« on: February 11, 2013, 05:18:57 AM »
I also have this problem,it was only by logging into the admin panel that I noticed a customer had registered an account.
There's no auto notification for this - only if an actual order is created.

Is there a way to set it up in Additional Email Alerts ?
If yes, what do I need to enter ?


Thanks

2
Here's part of a thread on the OC forum that appears to fix the issue.

I've had the same problem with my image logo not showing up in order confirmation emails when viewed on Thunderbird, Seamonkey, and my iPad - they seem to show up okay on my Webmail, though.

I don't know if this will help you, but this is what worked for me.

Open catalog\model\checkout\order.php

Line 233 -

Code: Select all
    $template->data['logo'] = 'cid:' . md5(basename($this->config->get('config_logo')));


Add '.jpg' to the end, as follows -

Code: Select all
    $template->data['logo'] = 'cid:' . md5(basename($this->config->get('config_logo'))) . '.jpg';


Do the same on line 432 -

Code: Select all
    $mail->addAttachment(DIR_IMAGE . $this->config->get('config_logo'), md5(basename($this->config->get('config_logo'))));


Change it to -

Code: Select all
    $mail->addAttachment(DIR_IMAGE . $this->config->get('config_logo'), md5(basename($this->config->get('config_logo'))) . '.jpg');


I didn't think it would be as simple as that but now the logo shows up just fine in Seamonkey and my iPad. I'm no expert (I'm a complete OC newb), but I imagine this'll only work if your logo is jpg. If it's gif or png you'll probably want to change the jpg to whatever extension you're using.

I only figured it out because I compared the OC admin newsletter email with the order confirmation email and noticed that the ".jpg" was missing from the end of the "cid" number on the order confirmation email. Hard-coding it in like I have probably isn't the correct way to fix it, but it works so I'm a happy bunny.

I hope this works for you.

3
I have TB set to :
 View Message Body : As Original HTML

I also tried installing an add on called - Show All Body Parts 1.2

Enable the View | Message Body As | All Body Parts message display mode, which causes all parts of the message, even those that normally would not be displayed, to be visible in the message viewing area (if Thunderbird knows how to display them) and listed in the attachments pane.

It didn't help......


4
General Support / Re: Currency symbols
« on: January 30, 2013, 01:40:15 AM »
Thanks for the update ;-)

5
General Support / Currency symbols
« on: January 29, 2013, 09:40:15 AM »
Hi,
Is it by default that the currency symbols are not sided left for all ?
For euro, it appears on the right of the price.

UK - £10.00
Euro - 10.00€

Thanks,
Ronan


6
I installed 1.1.3 and I'm now getting the logo as an attachment

7
Ok, so these seems to be a common issue......it's also a bug on Open Cart but they have a hack to fix it.

$template->data['logo'] = 'cid:' . md5(basename($this->config->get('config_logo'))) . '.jpg';

Is there a way to hardcode the logo gif in AbanteCart or what file should I be looking at to do it??

Thanks

8
I did a fresh install of the cart to test if it was a problem with my logo or something.

The install is using the sample data and I registered an account and purchased an item.
The only change I made on  the backend was the email address to send orders to.

I'm still seeing the same issue, so I've attached a screenshots -
Displays as a link in email client
Displays AbanteCart logo in Gmail


9
Default setting in Thunderbird client - view message body as "Original HTML"

I've got invoices etc,. from other cart software and it displays their shop logo no problem.




10
General Support / Shop logo not displaying in order notification email
« on: January 17, 2013, 04:15:05 AM »
Hi,
I'm not seeing my shop logo when I place a test order and redirect the notification email to a client like Thunderbird or Seamonkey.
I just get a link at the top left of the mail.

It does work if I redirect to a gmail address and view it on webmail page.

Am I missing something or is it working as designed ?

Thanks,
Ronan

11
Ok, thanks for the reply......
I don't suppose there's any plans to have it available for products with options ?

12
Configuration / Re: Changing search bar menu?
« on: January 09, 2013, 08:26:01 AM »
Thanks a mill......worked a treat ;-)


13
Configuration / Re: Changing search bar menu?
« on: January 05, 2013, 11:25:11 AM »
I've added a home link to the bar - how do I gt the home icon to display with it ?

          <li><a href="<?php echo $home; ?>" class="home"><?php echo $text_home; ?></a></li>
          <li class="nav_sep">&nbsp;</li>

Thanks,
Ronan

14
Hi,
I have the following setting set to On in the config,but it doesn't appear to have any effect.

Same Page Add To Cart : This will enable AJAX add to cart feature. Product can be added to cart without redirecting to cart page.

Is the feature working in the current version or am I missing a setting ??

I want to stay on the same page when I add a product to my cart as I have multiple options available in the dropdown.

I tried the same scenario on your demo site and it doesn't work there either.
On your demo site, I selected an option from the Nail Lacquer product dropdown and clicked the add to cart button (I'm not allowed to add an external link to the page)
Expected :  Remain on the product page so I can select another option from the dropdown
Actual : Redirected to the cart page

This wouldn't be so bad if there were a "keep shopping" button on the cart page that redirected back to the product page.......maybe coming in a later build ?


Thanks,
Ronan


Pages: [1]

Powered by SMFPacks Social Login Mod