Francis Kim
Francis Kim

Reputation: 4285

Magento - Get wishlist share link from template

Is it possible to get the wishlist share link (usually generated via an email when shared with a friend) before the email, IE from the template directly? I want to share this via Facebook.

Upvotes: 1

Views: 3450

Answers (1)

Francis Kim
Francis Kim

Reputation: 4285

This can be achieved by the following code in .../template/wishlist/view.phtml

Mage::getUrl('*/shared/index', array('code' => $this->getWishlistInstance()->getSharingCode()))

Upvotes: 1

Related Questions