Hi, first able I like to say you’re doing a great job with your project.
But as I know there will be and become errors. Here are some:
Please see the screen shuts as a result of the email templates.
Screenshut(1).jpg marks 3 problems:
1.) The URL to the home page gives the link like {sit_url} and not the real link. Same to the related image to this link {logo}.
2.) Product image do not have any link to the image.
3.) Phone number show up under email and email is coupled missing.
Screenshut(2).jpg marks one big problem.
1.) Not formatted. Should be made as table and not with div.
But as I know there will be and become errors. Here are some:
Please see the screen shuts as a result of the email templates.
Screenshut(1).jpg marks 3 problems:
1.) The URL to the home page gives the link like {sit_url} and not the real link. Same to the related image to this link {logo}.
2.) Product image do not have any link to the image.
3.) Phone number show up under email and email is coupled missing.
Screenshut(2).jpg marks one big problem.
1.) Not formatted. Should be made as table and not with div.
In Development
Share this post:
Responses (11)
-
Accepted Answer
Hi Denis,
I've fixed this Product image problem temporally. Don't looks professional, but it works.
Problem is in file "/system/library/emailtemplate.php" at line 1489 and 1491:
return $this->config->get('config_ssl') . 'image/' . $new_image;
return $this->config->get('config_url') . 'image/' . $new_image;
You declare the admin dir, but it should be the root!
I've made a quick workaround which works:
if ($_SERVER['HTTPS']) {
$myDummy = $this->config->get('config_ssl') . 'image/' . $new_image;
$myDummy = str_replace("admin/image/","image/",$myDummy);
return $myDummy;
// return $this->config->get('config_ssl') . 'image/' . $new_image;
} else {
$myDummy = $this->config->get('config_url') . 'image/' . $new_image;
$myDummy = str_replace("admin/image/","image/",$myDummy);
return $myDummy;
// return $this->config->get('config_url') . 'image/' . $new_image;
}
I hope in the next update this issue will be fixed. Toke me a while to figure this out.
There is still the issue with the email where shoes the phone number, and at the phone number shows nothing!
I hope I could help.
Kind regards
Hermann -
Accepted Answer
-
Accepted Answer
Hi Denis, still email issues:
I've fixed the URL and shop images by hand. Now there are so fare 3 issues left:
=================================
To view your order click on the link below:
http://netmart.club/admin/index.php?route=account/order/info&order_id=11
Link should be without "admin" folder!!!
==================================
Product images:
https://netmart.club/admin/image/cache/catalog/cvision/rwjrh5ll-80x80.jpg
This links must be also without "admin" folder to show the image.
===================================
E-mail : 8296048955
Telephone :
IP Address : 186.120.227.142
Order Status : Complete
No mail, instead the phone number shows up at email. Email template is right!
==================================
Please help me to fix this issues.
Kind regards
Hermann -
Accepted Answer
Hi Dennis,
After updating to version 1.2 AND updating the database table "prefix_email_description" with the new credentials from version 1.2 it is still the same destroy look as you see in the before uploaded images. As I've seen you have giving the email tpl a Doctype and also a header etc. In this case the email show now up with a defined font style. But this is all what is changed at the look at the email.
Further where should be the company image there is just a image square and a link to {site_url} but without a real link.
Where should be the email there is the phone number and where should be the email there is nothing.
Where the product image should be is just a image square without the link to the image.
At last there is a mismatch of order statuses. If you send a "Pending" email the client will be confused and for chore made, because At the first line of the message is "But your order canceled" and at Order status shows "Complete".
For real a disaster and this should be fixed in a rush.
Kind regards
Hermann -
Accepted Answer
-
Accepted Answer
Hi Denis,
I've tried with version 1.2 but the result is the same. Further this new version has a lot of action missing, like Appearance, Marketplace etc.
If you copy the code in Dreamweaver it looks OK, but I guess for emails you need to put a Doctype the header- and body taks too. I've tried this but this info's will be stripped by the php script.
Regards
Hermann -
Accepted Answer
-
Accepted Answer
-
Accepted Answer
-
Accepted Answer
-
Accepted Answer
Glad to see you like it Herman. We don't claim Arastta is perfect but best
As for your issue, have reported it to Cüneyt who has created the email templates https://github.com/arastta/arastta/issues/241
Your Reply
Please login to post a reply
You will need to be logged in to be able to post a reply. Login using the form on the right or register an account if you are new here.
Register Here »