-
AuthorPosts
-
Saguaros Moderator
Saguaros
- Join date:
- September 2014
- Posts:
- 31405
- Downloads:
- 237
- Uploads:
- 471
- Thanks:
- 845
- Thanked:
- 5346 times in 4964 posts
April 11, 2016 at 3:21 am #912075Hi
We’ve recently released a new version of template for J3.5.
Please try to take a FULL BACKUP of your site and update template + T3 to the latest version (you can use JA Extensions Manager component to update)
Remember to BACKUP first.
Gigaparts FriendGigaparts
- Join date:
- February 2016
- Posts:
- 116
- Downloads:
- 309
- Uploads:
- 16
- Thanked:
- 2 times in 2 posts
April 11, 2016 at 7:16 am #912229I downloaded the new version, uploaded package file but i got error. Can you please instruct me?
Saguaros ModeratorSaguaros
- Join date:
- September 2014
- Posts:
- 31405
- Downloads:
- 237
- Uploads:
- 471
- Thanks:
- 845
- Thanked:
- 5346 times in 4964 posts
April 11, 2016 at 8:07 am #912251Please take a BACKUP of your site and use JAEM to update.
JA Extension manager – JAEM – is a free extension, you can download and check its documentation for how to use it: https://www.joomlart.com/documentation/joomla-component/ja-extension-manager
Gigaparts FriendGigaparts
- Join date:
- February 2016
- Posts:
- 116
- Downloads:
- 309
- Uploads:
- 16
- Thanked:
- 2 times in 2 posts
April 11, 2016 at 9:06 am #912281Hello
I send you error message i get. Please see attached images
-
Saguaros Moderator
Saguaros
- Join date:
- September 2014
- Posts:
- 31405
- Downloads:
- 237
- Uploads:
- 471
- Thanks:
- 845
- Thanked:
- 5346 times in 4964 posts
April 11, 2016 at 9:13 am #912294In the backend settings of JAEM, try to change to use Joomlart Services instead of Local service: https://www.joomlart.com/documentation/wiki-ja-extension-manager/admin-panel
and add your JoomlArt info in Authentication field.
Gigaparts FriendGigaparts
- Join date:
- February 2016
- Posts:
- 116
- Downloads:
- 309
- Uploads:
- 16
- Thanked:
- 2 times in 2 posts
April 11, 2016 at 9:50 am #912307Hello
I changed it but now it needs mysql configuration.
In the setup guide i didnt understand how i can change it. what i must change there?
Saguaros ModeratorSaguaros
- Join date:
- September 2014
- Posts:
- 31405
- Downloads:
- 237
- Uploads:
- 471
- Thanks:
- 845
- Thanked:
- 5346 times in 4964 posts
April 11, 2016 at 9:54 am #912309You just need to access Configuration in JAEM and hit the ‘Save’ button: http://prntscr.com/aqtxtr
Then it’s fine to proceed the update
Always backup your site first.
Gigaparts FriendGigaparts
- Join date:
- February 2016
- Posts:
- 116
- Downloads:
- 309
- Uploads:
- 16
- Thanked:
- 2 times in 2 posts
April 11, 2016 at 10:11 am #912321hello
I updated to new version and i still get error message.
Saguaros ModeratorSaguaros
- Join date:
- September 2014
- Posts:
- 31405
- Downloads:
- 237
- Uploads:
- 471
- Thanks:
- 845
- Thanked:
- 5346 times in 4964 posts
April 12, 2016 at 10:40 am #914697You can send me the login info of your site and an account to test the purchase.
I will check for you.
Gigaparts FriendGigaparts
- Join date:
- February 2016
- Posts:
- 116
- Downloads:
- 309
- Uploads:
- 16
- Thanked:
- 2 times in 2 posts
April 12, 2016 at 11:48 am #915105This reply has been marked as private.Saguaros ModeratorSaguaros
- Join date:
- September 2014
- Posts:
- 31405
- Downloads:
- 237
- Uploads:
- 471
- Thanks:
- 845
- Thanked:
- 5346 times in 4964 posts
April 13, 2016 at 3:05 pm #917597Did you try to switch default template to a Joomla template and proceed to check out an item again?
I will try with the latest version of template in my local and see how it goes.
Gigaparts FriendGigaparts
- Join date:
- February 2016
- Posts:
- 116
- Downloads:
- 309
- Uploads:
- 16
- Thanked:
- 2 times in 2 posts
April 19, 2016 at 8:15 am #919693hello
It seems to be a change in Joomla 3.5.1 regarding Virtuemart 3.
I fixed this problem by changing some code.
If you want i can post this solution here.
Saguaros ModeratorSaguaros
- Join date:
- September 2014
- Posts:
- 31405
- Downloads:
- 237
- Uploads:
- 471
- Thanks:
- 845
- Thanked:
- 5346 times in 4964 posts
April 19, 2016 at 3:21 pm #919980That would be great and very helpful to community if someone face the same issue
It’s much appreciated!!!
Gigaparts FriendGigaparts
- Join date:
- February 2016
- Posts:
- 116
- Downloads:
- 309
- Uploads:
- 16
- Thanked:
- 2 times in 2 posts
April 20, 2016 at 6:27 am #920285Hello
This is the solution.
Open components/com_virtuemart/helpers/shopfunctionsf.php
Find the following codes between lines 654 to 674:
if(!$noVendorMail) {
$replyTo[0] = $view->vendorEmail;
$replyTo[1] = $view->vendor->vendor_name;
$mailer->addReplyTo( $replyTo );
} else {
if(isset($view->orderDetails[‘details’]) and isset($view->orderDetails[‘details’][‘BT’])){
$replyTo[0] = $view->orderDetails[‘details’][‘BT’]->email;
$replyTo[1] = $view->orderDetails[‘details’][‘BT’]->first_name.’ ‘.$view->orderDetails[‘details’][‘BT’]->last_name;
} else {
if (isset($view->user->email) and $view->user->name) {
$replyTo[0] = $view->user->email;
$replyTo[1] = $view->user->name;
} else {
$replyTo[0] = $view->user[’email’];
$replyTo[1] = $view->user[‘name’];
}} $mailer->addReplyTo( $replyTo ); }
Replaced above with
$replyTo = array(); $replyToName = array(); if(!$noVendorMail) { $replyTo[0] = $view->vendorEmail; $replyToName[0] = $view->vendor->vendor_name; } else { if(isset($view->orderDetails['details']) && isset($view->orderDetails['details']['BT'])) { $replyTo[0] = $view->orderDetails['details']['BT']->email; $replyToName[0] = $view->orderDetails['details']['BT']->first_name . ' ' . $view->orderDetails['details']['BT']->last_name; } else { if(isset($view->user->email) && $view->user->name) { $replyTo[0] = $view->user->email; $replyToName[0] = $view->user->name; } else { $replyTo[0] = $view->user['email']; $replyToName[0] = $view->user['name']; } } } if(count($replyTo)) { if(version_compare(JVERSION, '3.5', 'ge')) { $mailer->addReplyTo($replyTo, $replyToName); } else { $replyTo[1] = $replyToName[0]; $mailer->addReplyTo($replyTo); } }
Save the file and its is done.
1 user says Thank You to Gigaparts for this useful post
-
AuthorPosts
Viewing 14 posts - 1 through 14 (of 14 total)This topic contains 14 replies, has 2 voices, and was last updated by Gigaparts 8 years, 8 months ago.
The topic ‘VM checkout problem’ is closed to new replies.
Jump to forum