By Paul Murray on Tuesday, 09 January 2018
Replies 21
Likes 0
Views 1.2K
Votes 0
Hi Stackideas Team

First off Happy New Year

Maybe this is a really stupid question but here it goes...
I am reading documentation for Hika Shops email system.

https://www.hikashop.com/support/documentation/54-hikashop-config.html#main_emails

Address format
You can specify here the normal format HikaShop will use to display the addresses on invoices, on the checkout, on emails, etc.
The tags used here correspond to the column name of the address fields that you can find via the menu Display->Custom fields.
It is also possible to add custom PHP code and get the address data with such PHP:



<?php $address = $this->params->get('address'); ?>


Is there a way to pull an address from an Easy Social Profile that would insert it in an invoice?

thanks

Paul
Happy New Year Paul! Not entirely sure how is the invoices being generated but ideally this is the code that you could use in EasySocial to retrieve an address,

[gist]
<?php
include_once(JPATH_ADMINISTRATOR . '/components/com_easysocial/includes/easysocial.php');

// Assuming that $id is the id of the user.
$user = ES::user($id);

$address = $user->getFieldValue('ADDRESS');

echo $address->address;
[/gist]

The "ADDRESS" unique key is set by default unless you changed it. If you did change it, you can always get it from the custom field parameters, http://take.ms/qP6CQ
·
Tuesday, 09 January 2018 22:06
·
0 Likes
·
0 Votes
·
0 Comments
·
Hey Mark

Thanks for going the extra mile.

I got some more info from Hika Shop:

https://www.hikashop.com/forum/orders-management/893399-getting-address-from-easy-social-profile-with-php-code.html#285656

Hi,

Supposing that you remove the capability for the customers to edit/create/delete/select addresses on the checkout, you could add such code in the emails/invoice/order details views and replace $id by the id of the customer in the order.

It will be in either $data->cart->customer->user_cms_id, or $this->order->customer->user_cms_id etc based on where you do the change.

But for HikaShop to be able to pull the data of the address of EasySocial in HikaShop so that the addresses of EasySocial can be selected/modified/deleted, etc in HikaShop will require some heavy development for a synchronization system.

However, if you don't know coding at all, even the easy solution won't be possible. I would recommend to ask for help from a PHP developer to help you with that.


As of now I do not have the end solution but am a lot closer. And will post at the link above if and when I have a solution.

thanks as always

Paul
·
Wednesday, 10 January 2018 18:52
·
0 Likes
·
0 Votes
·
0 Comments
·
Hm, you could try something like this,

[gist]
<?php
include_once(JPATH_ADMINISTRATOR . '/components/com_easysocial/includes/easysocial.php');

// Assuming that $id is the id of the user.
$user = ES::user($data->cart->customer->user_cms_id);

$address = $user->getFieldValue('ADDRESS');

echo $address->address;
[/gist]
·
Wednesday, 10 January 2018 21:34
·
0 Likes
·
0 Votes
·
0 Comments
·
Hi Mark

Ok you suggested that I try your code twice now.
So here it goes.

I added the code here:

Components>HikaShop>System>Configuration>Checkout>Shipping & Payment

Please see the first screen shot.

The Second screen shot show how the Confirmation looks before I add the code.

The Third screen shot show how the Confirmation looks after I add the code.

Result = No address shows in the Confirmation after I add the code.

Fourth Screen shot is the address as it appears in the HikaShop back end.

Fifth Screen shot is how it appears in Easy Social.

Demo 03
examplethree
(no prizes for guessing what the password for examplethree is ;-)

hikaShop:

Mr Demo Three
HikaStreet 03
030303 Demo Three Baden-Württemberg
Germany

Demo 03

Easy Social:

215 16 St SE, Calgary, AB T2E 2P5, Canada

maybe you notice something!?!

thanks

Paul
·
Thursday, 11 January 2018 00:32
·
0 Likes
·
0 Votes
·
0 Comments
·
Hi Paul,

Can you try the code below and see how it goes?
[gist type="php"]
<?php
include_once(JPATH_ADMINISTRATOR . '/components/com_easysocial/includes/easysocial.php');

// Assuming that $id is the id of the user.
$user = ES::user($data->cart->customer->user_cms_id);

$address = $user->getFieldValue('ADDRESS');

echo $address->value->address;
[/gist]
·
Thursday, 11 January 2018 12:03
·
0 Likes
·
0 Votes
·
0 Comments
·
Hi Fadhli

This works please see the screen shots.

Thank you and thank you Mark as well.

I have one last question (realted)

This is the Hika Shop address link:

https://www.finalbug.net/store/address

Lets say I want to redirect it to the Easy Social Profile for the person who is currently logged in.

This could be:

https://www.finalbug.net/exampleone
https://www.finalbug.net/exampletwo
https://www.finalbug.net/examplethree

And yes I have this here:

https://stackideas.com/apps/item/3338-url-shortener

Is there some kind of generic/wild card link that I can use:

Something that I can use in a redirect that will send:

ANY currently logged in user
From here: https://www.finalbug.net/store/address
To their Easy Social Profile what ever the exact link is for their profile!?!

Does this make sense?

thanks

Paul
·
Thursday, 11 January 2018 16:11
·
0 Likes
·
0 Votes
·
0 Comments
·
If I understand correctly, you want redirection when user access the link below:
https://www.finalbug.net/store/address

Perhaps, you can try the code below:
[gist type="php"]
$hikaredirect = JFactory::getApplication();

$hikaredirect->redirect(FRoute::profile(), false);
[/gist]
and see how it goes?
·
Thursday, 11 January 2018 18:25
·
0 Likes
·
0 Votes
·
0 Comments
·
Hi Fadhli

This level of support is inanely good.
I added the code after the previous code, same place.
And every works perfectly.

I can´t believe my eyes and want to test a couple of more times.

In a state of shock (In a good way)

Paul
·
Thursday, 11 January 2018 19:16
·
0 Likes
·
0 Votes
·
0 Comments
·
Thanks for updating Paul
·
Thursday, 11 January 2018 22:39
·
0 Likes
·
0 Votes
·
0 Comments
·
Hi SI Team

Ok I have found the a scenario where this breaks!

I think what happens is this.

So far I have been testing where test users have a Hika Shop Address and this is then redirected to the ES Profile.

For e.g. exampleone

Has an address in Hika Shop Component as follows:

First name* Demo
Last name* One
Address*HikaStreet 01
Post code:010101
City*EMPTY
Telephone:EMPTY
Country*Germany
State*Baden-Wuttenburg

exampletwo is similar:

First name* Demo
Last name* Two
Address*HikaStreet 02
Post code:020202
City*EMPTY
Telephone:EMPTY
Country*Germany
State*Baden-Wuttenburg

examplethree is similar:

First name* Demo
Last name* Three
Address*HikaStreet 03
Post code:030303
City*EMPTY
Telephone:EMPTY
Country*Germany
State*Baden-Wuttenburg

I did not do very extensive testing with users examplethree through to examplefive

Which means that I never entered a HikaShop address:

They all have standard/wild card address in Hika Shop similar to this:

First name* Demo
Last name* Four
Address*EMPTY
Post code:EMPTY
City*EMPTY
Telephone:EMPTY
Country*Germany
State*Baden-Wuttenburg

Ditto examplefive etc

As far as I can tell any registered user will have their name & the following in their HS Address as a matter of course:

Country*Germany
State*Baden-Wuttenburg

Is there a way to adjust the code above that takes this into account!?!
I guess a code that looks for a Country and State in the Hika Shop Address Filed and then redirects to Easy Social!

hope this makes sense

And sorry about this being so long.

thanks

Paul
·
Friday, 12 January 2018 02:37
·
0 Likes
·
0 Votes
·
0 Comments
·
Hi Paul,

As I understand you correctly here, do you mean you want to add the country and state (from HS) and append it in the address code as given previously?
If yes, could you get contact with HS how they get the parameter from the user in code wise, so we can help you to append it in the address previously.

If I misunderstood you here, can you elaborate more on this
·
Friday, 12 January 2018 19:46
·
0 Likes
·
0 Votes
·
0 Comments
·
Hi Fadhi

Ok the last piece of code the redirect code causes more problems than it is worth.

a) (almost) Empty Hika Shop Addresses do not get redirected to Easy Social Profiles.
b) Pressing "Finish" in the cart process takes me to my Easy Social Profile.

I am asking Hika Shop if they have any ideas.

If not I will talk with a developer at some point in the future.

If you leave this ticket open and I find a solution I will report back.

Maybe you could move this to some kind of tips and tricks section?

As there is already some valuable info in here.

thank you

Paul
·
Friday, 12 January 2018 21:34
·
0 Likes
·
0 Votes
·
0 Comments
·
Sure, will move this to another category so that it doesn't disrupt our support flow.
·
Saturday, 13 January 2018 00:24
·
0 Likes
·
0 Votes
·
0 Comments
·
View Full Post