Advertisement
Guest User

Untitled

a guest
Jun 24th, 2019
324
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.18 KB | None | 0 0
  1. <?php
  2. echo $_product->getId();
  3. $wishlist = $this->helper('MagentoWishlistHelperData')->getWishlistItemCollection()->addFieldToFilter('product_id', $_product->getId());
  4. print_r($wishlist->getData());
  5.  
  6. ?>
  7.  
  8. <div class="cdz-product-wishlist show-tooltip">
  9. <?php if ($this->helper('MagentoWishlistHelperData')->isAllow() && $showCompareWishlist): ?>
  10. <a href="#"
  11. class="action towishlist"
  12. title="<?php echo $block->escapeHtml(__('Add to Wish List')); ?>"
  13. aria-label="<?php echo $block->escapeHtml(__('Add to Wish List')); ?>"
  14. data-post='<?php /* @escapeNotVerified */ echo $block->getAddToWishlistParams($_product); ?>'
  15. data-action="add-to-wishlist"
  16. role="button">
  17. <span><?php /* @escapeNotVerified */ echo __('Add to Wish List') ?></span>
  18. </a>
  19. <?php endif; ?>
  20. </div>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement