Modular Merchant
QuickCode™ Glossary
{FIELD-WISH-LIST-ITEM-DELETE}
QuickCode Tag Glossary Home
See also:
Knowledge Base
Articles in this category:
{FIELD-WISH-LIST-ACCESS-CODE}

{FIELD-WISH-LIST-DELETE}

{FIELD-WISH-LIST-IS-PUBLIC}

{FIELD-WISH-LIST-ITEM-COMMENT}

{FIELD-WISH-LIST-ITEM-DELETE}

{FIELD-WISH-LIST-ITEM-EXPIRATION-DATE}

{FIELD-WISH-LIST-ITEM-PRIORITY}

{FIELD-WISH-LIST-ITEM-REMOVE-WHEN-PURCHASED}

{FIELD-WISH-LIST-NAME}

{FIELD-WISH-LIST-SELECT}

{IF-USING-WISH-LISTS-BEGIN}

{IF-USING-WISH-LISTS-END}

{IF-WISH-LIST-BEGIN}

{IF-WISH-LIST-END}

{IF-WISH-LIST-IS-PUBLIC-BEGIN}

{IF-WISH-LIST-IS-PUBLIC-END}

{IF-WISH-LIST-OWNER-BEGIN}

{IF-WISH-LIST-OWNER-END}

{URL-ADD-TO-WISH-LIST}

{URL-ADD-WISH-LIST-TO-BASKET}

{WISH-LIST-ACCESS-CODE}

{WISH-LIST-BLOCK-BEGIN}

{WISH-LIST-BLOCK-END}

{WISH-LIST-IS-PUBLIC}

{WISH-LIST-ITEM-BLOCK-BEGIN}

{WISH-LIST-ITEM-BLOCK-END}

{WISH-LIST-ITEM-COMMENT}

{WISH-LIST-ITEM-CREATE-DATE}

{WISH-LIST-ITEM-EXPIRATION-DATE}

{WISH-LIST-ITEM-PRIORITY}

{WISH-LIST-ITEM-QUANTITY}

{WISH-LIST-ITEM-REMOVE-WHEN-PURCHASED}

{WISH-LIST-ITEM-SID}

{WISH-LIST-NAME}

Wish List > {FIELD-WISH-LIST-ITEM-DELETE}
<< {FIELD-WISH-LIST-ITEM-COMMENT} {FIELD-WISH-LIST-ITEM-EXPIRATION-DATE} >>
{FIELD-WISH-LIST-ITEM-DELETE} Updated: 06/11/2013

The {FIELD-WISH-LIST-ITEM-DELETE} QuickCode Tag may be used to create a checkbox that customers may use to delete an item from their wish list.

Only the customer who created the wish list, or a store admin, may delete items from their wish list.
 
If the customer who created the wish list is logged into their customer account, they may manage their wish lists through the storefront wish list page (http://[storedomain]/wish_list.php). 
 
Store admins may use the Search Wish Lists page (located at [Modules > Wish Lists > Search Wish Lists] to view all wish lists. An individual wish list may be selected to view and edit all of its settings, including the priority of wish list items, in the Wish List Editor.

Requirements / Prerequisites
Since {FIELD-WISH-LIST-ITEM-DELETE} creates an input (the checkbox), this QuickCode Tag must be placed within a properly formatted HTML form, and the form must include a submit button, in order for the checkbox created by {FIELD-WISH-LIST-ITEM-DELETE} to actually function. If {FIELD-WISH-LIST-ITEM-DELETE} is not within a property formatted HTML form with a submit button, selecting the checkbox will have no effect.
 
The {FIELD-WISH-LIST-ITEM-DELETE} QuickCode Tag must be used within the {WISH-LIST-ITEM-BLOCK-BEGIN} {WISH-LIST-ITEM-BLOCK-END} QuickCode Block, in order to create a "delete item" checkbox for each of the customer's current wish list items. The  {WISH-LIST-ITEM-BLOCK-BEGIN} {WISH-LIST-ITEM-BLOCK-END} QuickCode Block must be contained within the {WISH-LIST-BLOCK-BEGIN} {WISH-LIST-BLOCK-END} QuickCode Block, which in turn must be contained within the {IF-WISH-LIST-OWNER-BEGIN} {IF-WISH-LIST-OWNER-END} QuickCode Block.
 
It is recommended to always place any content related to wish lists between the {IF-USING-WISH-LISTS-BEGIN} and {IF-USING-WISH-LISTS-END} QuickCode Tags, so that the content will be shown when the store's Wish List Module is enabled, but hidden if the store's Wish List Module is disabled.
Example of Use
1. Add the following code to a storefront template:
Example
<!-- Show the content between IF-USING-WISH-LISTS-BEGIN and IF-USING-WISH-LISTS-END only if the store's Wish List Module is enabled. -->
<h3>Wish Lists</h3>
 
<!-- Show the content between IF-WISH-LIST-BEGIN and ELSE only if the shopping session has a wish list. -->
<div style="border:2px solid black;padding:15px;width:700px;">
<!-- Show the content between IF-WISH-LIST-OWNER-BEGIN and IF-WISH-LIST-OWNER-END only if the logged in customer owns the wish list. -->
        <form name="wish_list_form" method="post" action="{THIS-PAGE}">
<h3>Edit your wish lists...</h3><br />
 
<!-- Show the content between WISH-LIST-BLOCK-BEGIN and WISH-LIST-BLOCK-END once for each wish list. -->
<ul style="border:2px solid grey;padding:15px;width:auto;list-style-type: none;">
<li style="text-align:center;"><strong>Wish List Name:</strong> WISH-LIST-NAME}</li>
<li>
<!-- Show the content between WISH-LIST-ITEM-BLOCK-BEGIN and WISH-LIST-ITEM-BLOCK-END once for each product in the current wish list. -->
<ul style="border:1px solid grey;padding:10px;width:auto;list-style-type: none;">
<li><strong>Product Name:</strong> {PRODUCT-NAME}</li>
<li><strong>Price:</strong> {PRODUCT-PRICE}</li>
<li><strong>Delete Item:</strong> {FIELD-WISH-LIST-ITEM-DELETE}</li>
<li><button type="button" name="" value="" onclick="location.href='quick_return.php?id={PRODUCT-SID}&qty=1'">ADD TO CART</button></li>
</ul><br />
<!-- End of WISH-LIST-ITEM-BLOCK content. -->
</li>
<li style="text-align:center;"><a href="{URL-ADD-WISH-LIST-TO-BASKET}">Add entire wish list to my order.</a></li>
</ul><br />
<!-- End of WISH-LIST-BLOCK content. -->
            <input type="submit" name="submit_wish_list_form" value="Update wish lists" />
</form>
<!-- End of content to be shown only if the current customer owns the wish list. -->
 
</div>
<!-- End of content to be shown only if the shopping session has a wish list. -->
 
<!-- End of content to be shown only if the store's Wish List Module is enabled. -->                      
<hr />
 
 
2. If the store's Wish List Module is enabled -AND- the logged in customer owns two wish lists (named "What I want for my birthday" and "What I want to buy later"), then the following would display:
Example
Wish Lists
  • Wish List Name: What I want for my birthday
  •  
    • Product Name: Blue T-Shirt
    • Price: $10.00
    • Delete Item: 
    • Product Name: Blue Sneakers
    • Price: $50.00
    • Delete Item: 
  • Add entire wish list to my order.

  • Wish List Name: What I want to buy later
  •  
    • Product Name: Red T-Shirt
    • Price: $12.00
    • Delete Item: 
    • Product Name: Red Travel Mug
    • Price: $20.00
    • Delete Item: 
  • Add entire wish list to my order.


 
 
3. If the store's Wish List Module is enabled -BUT- the current customer does not own any wish lists, then the following would display:
Example
Wish Lists

 
 
4. If the store's Wish List Module is not enabled, then the following would display:
Example

 

Source Code Source Code Updated:
When a web page using a template that contains this QuickCode Tag is viewed in the storefront, the {FIELD-WISH-LIST-ITEM-DELETE} QuickCode Tag is changed into the source code below prior to the web page being displayed.
LOG IN TO ADD COMMENTS
  Copyright © 2001 - 2024 Modular Merchant™. All rights reserved.
Modular Merchant | Privacy Policy | Legal Statement | Terms of Service | Contact Us | Site Map