<?xml version="1.0" encoding="UTF-8"?>
<!-- generator="FeedCreator 1.8" -->
<?xml-stylesheet href="https://wiki.foxycart.com/lib/exe/css.php?s=feed" type="text/css"?>
<rss version="2.0">
    <channel xmlns:g="http://base.google.com/ns/1.0">
        <title>Foxy Wiki - v:2.0:snippets</title>
        <description></description>
        <link>https://wiki.foxycart.com/</link>
        <lastBuildDate>Mon, 06 Jul 2026 02:47:17 +0000</lastBuildDate>
        <generator>FeedCreator 1.8</generator>
        <image>
            <url>https://wiki.foxycart.com/_media/wiki/dokuwiki.svg</url>
            <title>Foxy Wiki</title>
            <link>https://wiki.foxycart.com/</link>
        </image>
        <item>
            <title>add_empty_cart_button_to_the_cart</title>
            <link>https://wiki.foxycart.com/v/2.0/snippets/add_empty_cart_button_to_the_cart?rev=1533091152&amp;do=diff</link>
            <description>Add an &quot;Empty Cart&quot; Button to Cart and Checkout

Step 1: Apply the snippet to your configuration

You can apply the snippet below within the “configuration” section of your store's FoxyCart administration - look for the “Add custom header and footer code to your templates</description>
            <author>anonymous@undisclosed.example.com (Anonymous)</author>
            <pubDate>Wed, 01 Aug 2018 02:39:12 +0000</pubDate>
        </item>
        <item>
            <title>add_link_to_receipt_category</title>
            <link>https://wiki.foxycart.com/v/2.0/snippets/add_link_to_receipt_category?rev=1497470850&amp;do=diff</link>
            <description>Add a link to the web receipt based on item category

If you'd like to add a link to the web receipt based on the category of items in the order, you can use this snippet to look through the items in the cart for any items with a specified category. If that category is found in the cart, you can display the link on your web receipt.</description>
            <author>anonymous@undisclosed.example.com (Anonymous)</author>
            <pubDate>Wed, 14 Jun 2017 20:07:30 +0000</pubDate>
        </item>
        <item>
            <title>add_message_above_email</title>
            <link>https://wiki.foxycart.com/v/2.0/snippets/add_message_above_email?rev=1532323283&amp;do=diff</link>
            <description>Add a Message Above the Email Field

You can use this snippet if you'd like to show your customers a message at the top of the checkout page.

Step 1: Get the Snippet

Copy this code onto your computer's clipboard: 


{% block login_register %}
&lt;div class=&quot;fc-messages&quot;&gt;
    &lt;div class=&quot;fc-alert fc-alert--info custom-message&quot;&gt;
        &lt;ul&gt;&lt;li&gt;Your custom message here.&lt;/li&gt;&lt;/ul&gt;
    &lt;/div&gt;
&lt;/div&gt;
{{ parent() }}
{% endblock %}</description>
            <author>anonymous@undisclosed.example.com (Anonymous)</author>
            <pubDate>Mon, 23 Jul 2018 05:21:23 +0000</pubDate>
        </item>
        <item>
            <title>add_message_above_shipping_rates</title>
            <link>https://wiki.foxycart.com/v/2.0/snippets/add_message_above_shipping_rates?rev=1611088712&amp;do=diff</link>
            <description>Add a Message Above the Shipping Rates

You can use this snippet if you'd like to show your customers a message above the shipping rates.

Step 1: Get the Snippet

Copy this code onto your computer's clipboard: 


{% if context == &quot;cart&quot; or context == &quot;checkout&quot; %}
&lt;script&gt;
FC.client.on(&quot;render.done&quot;, function() {
    var message = '&lt;p&gt;REPLACE THIS WITH YOUR SHIPPING NOTICE.&lt;/p&gt;';

    if ($(&quot;.shipping-note&quot;).length == 0 &amp;&amp; FC.json.shipping_address.shipping_results.length &gt; 0) {
        if (FC.j…</description>
            <author>anonymous@undisclosed.example.com (Anonymous)</author>
            <pubDate>Tue, 19 Jan 2021 20:38:32 +0000</pubDate>
        </item>
        <item>
            <title>add_or_remove_coupon_based_on_item_in_cart</title>
            <link>https://wiki.foxycart.com/v/2.0/snippets/add_or_remove_coupon_based_on_item_in_cart?rev=1497058238&amp;do=diff</link>
            <description>Add or Remove Coupon Based on Item in Cart

If you have a promotion that you're offering, such as “purchase x product and receive x off of x product”, you'll want to make sure that the user can't override the purchase requirement by adding the required product, receiving the discount on the second product, then removing the original required product.</description>
            <author>anonymous@undisclosed.example.com (Anonymous)</author>
            <pubDate>Sat, 10 Jun 2017 01:30:38 +0000</pubDate>
        </item>
        <item>
            <title>auto_fill_and_hide_purchase_order</title>
            <link>https://wiki.foxycart.com/v/2.0/snippets/auto_fill_and_hide_purchase_order?rev=1742250498&amp;do=diff</link>
            <description>Auto-Fill and Hide Purchase Order Field

If your site is made for creating quotes, or similar functionality, where you don't want to require payment from your customers, you can pre-fill the Purchase Order field and hide it so your customers can check out without providing payment or a Purchase Order.</description>
            <author>anonymous@undisclosed.example.com (Anonymous)</author>
            <pubDate>Mon, 17 Mar 2025 22:28:18 +0000</pubDate>
        </item>
        <item>
            <title>automatically_add_coupon</title>
            <link>https://wiki.foxycart.com/v/2.0/snippets/automatically_add_coupon?rev=1533008661&amp;do=diff</link>
            <description>Automatically add a coupon to the cart

Currently Foxy coupons require the customer add them to the cart using a code on the cart or checkout. Sometimes though you'd like to offer a discount automatically to your customers, without them needing to add a code.</description>
            <author>anonymous@undisclosed.example.com (Anonymous)</author>
            <pubDate>Tue, 31 Jul 2018 03:44:21 +0000</pubDate>
        </item>
        <item>
            <title>autoselect_first_shipping_rate</title>
            <link>https://wiki.foxycart.com/v/2.0/snippets/autoselect_first_shipping_rate?rev=1587571108&amp;do=diff</link>
            <description>Auto-Select First Shipping Rate

The following steps allow you to have the cart/checkout automatically select the first shipping rate from the options returned after a customer enters their shipping address.

	*  Go to this page and copy the code you see there to your computer's clipboard.</description>
            <author>anonymous@undisclosed.example.com (Anonymous)</author>
            <pubDate>Wed, 22 Apr 2020 15:58:28 +0000</pubDate>
        </item>
        <item>
            <title>breaking_large_shipments_into_multiple</title>
            <link>https://wiki.foxycart.com/v/2.0/snippets/breaking_large_shipments_into_multiple?rev=1537190410&amp;do=diff</link>
            <description>Breaking large shipments into multiple smaller packages

This snippet has been replaced. Beginning in FoxyCart 2.0, we now have basic support for breaking large shipments into multiple packages. Review the live rates section on our shipping wiki page for more details. Please use the new functionality functionality instead of this snippet.</description>
            <author>anonymous@undisclosed.example.com (Anonymous)</author>
            <pubDate>Mon, 17 Sep 2018 13:20:10 +0000</pubDate>
        </item>
        <item>
            <title>category_emails_excluding_products</title>
            <link>https://wiki.foxycart.com/v/2.0/snippets/category_emails_excluding_products?rev=1572642260&amp;do=diff</link>
            <description>Make Category Receipt Emails Only Include That Category's Products

If you'd like to set category-specific receipt emails that only include products from that specific category, read on. This can be useful for notifying multiple vendors or providers of an order, but without including the rest of the order details.</description>
            <author>anonymous@undisclosed.example.com (Anonymous)</author>
            <pubDate>Fri, 01 Nov 2019 21:04:20 +0000</pubDate>
        </item>
        <item>
            <title>change_continue_category</title>
            <link>https://wiki.foxycart.com/v/2.0/snippets/change_continue_category?rev=1518488559&amp;do=diff</link>
            <description>Dynamically customising the URL/text of the Web Receipt &quot;Continue To&quot; Button

If you'd like to change the URL or text on the web receipt “Continue To” button, you can use this snippet to look through the items in the cart for any items with a specified category. If that category is found in the cart, you can display the desired text on your button. The logic can also be updated to look for other conditions too, such as a specific product code or even a custom session attribute.</description>
            <author>anonymous@undisclosed.example.com (Anonymous)</author>
            <pubDate>Tue, 13 Feb 2018 02:22:39 +0000</pubDate>
        </item>
        <item>
            <title>checkout_custom_datepicker_field</title>
            <link>https://wiki.foxycart.com/v/2.0/snippets/checkout_custom_datepicker_field?rev=1660052728&amp;do=diff</link>
            <description>Adding a datepicker field on the checkout

Quite often - it's necessary to capture a date from the customer on the checkout. This could be to allow the customer to specify a preferred delivery date - but there are a number of other uses you might have.</description>
            <author>anonymous@undisclosed.example.com (Anonymous)</author>
            <pubDate>Tue, 09 Aug 2022 13:45:28 +0000</pubDate>
        </item>
        <item>
            <title>checkout_upsells</title>
            <link>https://wiki.foxycart.com/v/2.0/snippets/checkout_upsells?rev=1748641493&amp;do=diff</link>
            <description>Upsells On The Checkout

Beginning in version 2.0 we've added some basic upsell functionality into the checkout. It allows you to quickly show a modal window to customers on the checkout providing opportunities for them to add additional products to their cart prior to checkout.</description>
            <author>anonymous@undisclosed.example.com (Anonymous)</author>
            <pubDate>Fri, 30 May 2025 21:44:53 +0000</pubDate>
        </item>
        <item>
            <title>conversion_tracking</title>
            <link>https://wiki.foxycart.com/v/2.0/snippets/conversion_tracking?rev=1738950460&amp;do=diff</link>
            <description>Conversion Tracking Pixels/Scripts

Often you'll need to be able to send off a ping, possibly with some basic information, to third party services when a customer completes a transaction. Commonly this is for services like Google Adwords, Facebook Ads etc, so you can tell how effective an ad campaign has been.</description>
            <author>anonymous@undisclosed.example.com (Anonymous)</author>
            <pubDate>Fri, 07 Feb 2025 17:47:40 +0000</pubDate>
        </item>
        <item>
            <title>custom_live_rate_endpoint</title>
            <link>https://wiki.foxycart.com/v/2.0/snippets/custom_live_rate_endpoint?rev=1493190150&amp;do=diff</link>
            <description>Custom Live Rate Endpoint

This snippet has been replaced. In place of the following snippet, we now have a custom shipping endpoint feature in FoxyCart 2.0 that allows you to provide custom rates to your customers without needing to add custom javascript to change the way the checkout works. Please use the custom shipping endpoint instead of this snippet. This page will remain for reference.</description>
            <author>anonymous@undisclosed.example.com (Anonymous)</author>
            <pubDate>Wed, 26 Apr 2017 07:02:30 +0000</pubDate>
        </item>
        <item>
            <title>date_picker_for_sub_startdate</title>
            <link>https://wiki.foxycart.com/v/2.0/snippets/date_picker_for_sub_startdate?rev=1542600451&amp;do=diff</link>
            <description>Use a date picker for the start date in a subscription form

As part of our native subscription product attributes, it's possible to set when a given subscription will start, either as a specific date, a specific day of the month, or a date relative to today. Sometimes though it can be useful to allow customers to select a specific date for their own subscription, rather than hard-coding it yourself.</description>
            <author>anonymous@undisclosed.example.com (Anonymous)</author>
            <pubDate>Mon, 19 Nov 2018 04:07:31 +0000</pubDate>
        </item>
        <item>
            <title>donation_on_checkout</title>
            <link>https://wiki.foxycart.com/v/2.0/snippets/donation_on_checkout?rev=1493190150&amp;do=diff</link>
            <description>Adding a donation option on the Checkout

The following snippet adds a text input to the checkout to allow customers to add a donation to the cart when completing the checkout.

Add javascript

On the configuration page of your store's FoxyCart administration, under</description>
            <author>anonymous@undisclosed.example.com (Anonymous)</author>
            <pubDate>Wed, 26 Apr 2017 07:02:30 +0000</pubDate>
        </item>
        <item>
            <title>dynamic_product_total_with_multicurrency_support</title>
            <link>https://wiki.foxycart.com/v/2.0/snippets/dynamic_product_total_with_multicurrency_support?rev=1692081393&amp;do=diff</link>
            <description>Dynamic product total with multicurrency support

For stores looking to support multiple different currencies, it's important to be able to show product prices in those different currencies. This helps customers to be able to know exactly what they'll be paying - rather than needing to do those calculations themselves.</description>
            <author>anonymous@undisclosed.example.com (Anonymous)</author>
            <pubDate>Tue, 15 Aug 2023 06:36:33 +0000</pubDate>
        </item>
        <item>
            <title>dynamic_terms_of_service_link</title>
            <link>https://wiki.foxycart.com/v/2.0/snippets/dynamic_terms_of_service_link?rev=1534390961&amp;do=diff</link>
            <description>Dynamic Terms of Service Link

The following functionality allows you to customize the terms of service link based on the states or countries selected by the user.

Add Javascript

Paste the following into the “footer” textarea of the “Add custom header and footer code to your templates</description>
            <author>anonymous@undisclosed.example.com (Anonymous)</author>
            <pubDate>Thu, 16 Aug 2018 03:42:41 +0000</pubDate>
        </item>
        <item>
            <title>dynamic-custom-checkout-options</title>
            <link>https://wiki.foxycart.com/v/2.0/snippets/dynamic-custom-checkout-options?rev=1533567751&amp;do=diff</link>
            <description>Dynamically populating custom checkout field options

While Foxy provides the ability to define custom checkout fields to allow you to capture any details you need from the customer on the checkout - this requires that the options available are hard-coded on the page. Sometimes it may be easier to be able to populate the options for the customer to select dynamically from your own website.</description>
            <author>anonymous@undisclosed.example.com (Anonymous)</author>
            <pubDate>Mon, 06 Aug 2018 15:02:31 +0000</pubDate>
        </item>
        <item>
            <title>dynamically_blocking_checkouts</title>
            <link>https://wiki.foxycart.com/v/2.0/snippets/dynamically_blocking_checkouts?rev=1733222151&amp;do=diff</link>
            <description>Dynamically blocking checkouts

Sometimes you need to prevent customers from being able to complete the checkout based on specific conditions, such as the total cost or quantity of products. This simple snippet will hide the checkout button and instead display a message for the customer.</description>
            <author>anonymous@undisclosed.example.com (Anonymous)</author>
            <pubDate>Tue, 03 Dec 2024 10:35:51 +0000</pubDate>
        </item>
        <item>
            <title>dynamically_require_phone</title>
            <link>https://wiki.foxycart.com/v/2.0/snippets/dynamically_require_phone?rev=1760943102&amp;do=diff</link>
            <description>Dynamically Require Shipping Phone Number

The following functionality allows you to dynamically require the shipping phone number depending on the shipping country of the customer.

Set phone to optional

To dynamically require the phone, it will need to be set as optional by default. You can do that from the Settings &gt; Checkout page in the admin, or the</description>
            <author>anonymous@undisclosed.example.com (Anonymous)</author>
            <pubDate>Mon, 20 Oct 2025 06:51:42 +0000</pubDate>
        </item>
        <item>
            <title>dynamically_require_taxid</title>
            <link>https://wiki.foxycart.com/v/2.0/snippets/dynamically_require_taxid?rev=1499692946&amp;do=diff</link>
            <description>Dynamically Require Tax ID

The following functionality allows you to dynamically require the tax ID depending on the country of the customer.

Add Javascript

From the configuration section of your store's FoxyCart administration, under “checkout”</description>
            <author>anonymous@undisclosed.example.com (Anonymous)</author>
            <pubDate>Mon, 10 Jul 2017 13:22:26 +0000</pubDate>
        </item>
        <item>
            <title>dynamically_set_shipping_box_dimensions</title>
            <link>https://wiki.foxycart.com/v/2.0/snippets/dynamically_set_shipping_box_dimensions?rev=1607618040&amp;do=diff</link>
            <description>Dynamically setting the shipping box dimensions for live rates

When using live rate shipping for your store, the shipping rate request will utilise a default box dimension along with the total weight and address to determine rates. Currently those default dimensions are a 5</description>
            <author>anonymous@undisclosed.example.com (Anonymous)</author>
            <pubDate>Thu, 10 Dec 2020 16:34:00 +0000</pubDate>
        </item>
        <item>
            <title>dynamically_set_shipping_origin</title>
            <link>https://wiki.foxycart.com/v/2.0/snippets/dynamically_set_shipping_origin?rev=1493190150&amp;do=diff</link>
            <description>Dynamically setting the shipping origin point for live rates

If your store ships from multiple different fulfilment centres, you'll probably want the shipping rates to be calculated correctly based on the correct origin point for the customer. This script allows you to change the shipping origin point dynamically from the one set in the store to your own custom location.</description>
            <author>anonymous@undisclosed.example.com (Anonymous)</author>
            <pubDate>Wed, 26 Apr 2017 07:02:30 +0000</pubDate>
        </item>
        <item>
            <title>email_notifications_subscriptions</title>
            <link>https://wiki.foxycart.com/v/2.0/snippets/email_notifications_subscriptions?rev=1683029836&amp;do=diff</link>
            <description>Email Notification for Subscriptions

The following functionality allows you to receive email notifications for subscription events.

Configure your store

This page is primarily related to configuring custom email notifications that are sent to the store administrators. This approach could be applied to the main store email receipt though - so that the changes impact the emails that customers receive as well.</description>
            <author>anonymous@undisclosed.example.com (Anonymous)</author>
            <pubDate>Tue, 02 May 2023 12:17:16 +0000</pubDate>
        </item>
        <item>
            <title>enable_multiple_languages</title>
            <link>https://wiki.foxycart.com/v/2.0/snippets/enable_multiple_languages?rev=1493190150&amp;do=diff</link>
            <description>Enable Multiple Languages

The following functionality allows you to display multiple languages for all customer-facing text in your cart. Have a look at our internationalization documentation for more information on what can be customizable.

Even though we do have a very diverse international team, the language you are looking for may not be readily available, so you might have to manually do the translations yourself.</description>
            <author>anonymous@undisclosed.example.com (Anonymous)</author>
            <pubDate>Wed, 26 Apr 2017 07:02:30 +0000</pubDate>
        </item>
        <item>
            <title>flat_rate_shipping_modification</title>
            <link>https://wiki.foxycart.com/v/2.0/snippets/flat_rate_shipping_modification?rev=1537190291&amp;do=diff</link>
            <description>Flat Rate Shipping Modification

This snippet has been replaced. In place of the following snippet, we now have a custom shipping code feature in FoxyCart 2.0 that allows you to modify returned live rates and provide custom rates to your customers without needing to add extra javascript to change the way the checkout works.</description>
            <author>anonymous@undisclosed.example.com (Anonymous)</author>
            <pubDate>Mon, 17 Sep 2018 13:18:11 +0000</pubDate>
        </item>
        <item>
            <title>gift_wrapping_checkbox_on_checkout</title>
            <link>https://wiki.foxycart.com/v/2.0/snippets/gift_wrapping_checkbox_on_checkout?rev=1569306231&amp;do=diff</link>
            <description>Adding a Gift Wrapping Checkbox on the Checkout

Paste the chunk of code below into the templates -&gt; configuration -&gt; checkout -&gt; Add custom form fields to your checkout -&gt; custom checkout fields.


{% if gift_wrapping is not defined %}
    {% set gift_wrapping = false %}
    {% for item in items %}
        {% if item.code == &quot;giftwrapping&quot; %}
            {% set gift_wrapping = true %}
        {% endif %}
    {% endfor %}
{% endif %}
&lt;div class=&quot;fc-form-group&quot;&gt;
    &lt;div class=&quot;fc-checkout__addit…</description>
            <author>anonymous@undisclosed.example.com (Anonymous)</author>
            <pubDate>Tue, 24 Sep 2019 06:23:51 +0000</pubDate>
        </item>
        <item>
            <title>google_trusted_stores</title>
            <link>https://wiki.foxycart.com/v/2.0/snippets/google_trusted_stores?rev=1493190150&amp;do=diff</link>
            <description>Google Trusted Stores for FoxyCart 2.0

Important This is a new page and experimental code - ensure you properly test any changes to your store

Required Reading

If you haven't already, read through Google's documentation page for Google Trusted Stores.

Requirements

One of the requirements for GTS to work is that the confirmation page is hosted on the same domain as your own website. As FoxyCart serves the receipt confirmation page to the customer for you, you have two options, one incurring …</description>
            <author>anonymous@undisclosed.example.com (Anonymous)</author>
            <pubDate>Wed, 26 Apr 2017 07:02:30 +0000</pubDate>
        </item>
        <item>
            <title>guest_checkout</title>
            <link>https://wiki.foxycart.com/v/2.0/snippets/guest_checkout?rev=1493190150&amp;do=diff</link>
            <description>Guest Checkout

The following functionality allows your customers to checkout without entering an email address. You are required to enter a valid guest email that you would default to.

Add Javascript

Put this javascript in a custom header via the</description>
            <author>anonymous@undisclosed.example.com (Anonymous)</author>
            <pubDate>Wed, 26 Apr 2017 07:02:30 +0000</pubDate>
        </item>
        <item>
            <title>hide_forms_links_before_page_load</title>
            <link>https://wiki.foxycart.com/v/2.0/snippets/hide_forms_links_before_page_load?rev=1604103137&amp;do=diff</link>
            <description>Hide the add to cart forms and links before the page loads

By design, the Foxy javascript doesn't block a pageload, so clicking on an add-to-cart button before the page is fully loaded will take you to the full page cart. If you would like to prohibit this default behavior use the following JavaScript code snippet.</description>
            <author>anonymous@undisclosed.example.com (Anonymous)</author>
            <pubDate>Sat, 31 Oct 2020 00:12:17 +0000</pubDate>
        </item>
        <item>
            <title>hide_zip_code_entry_on_cart</title>
            <link>https://wiki.foxycart.com/v/2.0/snippets/hide_zip_code_entry_on_cart?rev=1583820666&amp;do=diff</link>
            <description>Hide Zip/Postal Code Entry on Cart

The following CSS styling allows you to hide the calculate shipping/taxes address entry on the cart. Shipping and/or taxes will still be calculated on the checkout - but this can be useful if you want to remove some of the requirements for customers on the cart.</description>
            <author>anonymous@undisclosed.example.com (Anonymous)</author>
            <pubDate>Tue, 10 Mar 2020 06:11:06 +0000</pubDate>
        </item>
        <item>
            <title>live_rate_shipping_modification</title>
            <link>https://wiki.foxycart.com/v/2.0/snippets/live_rate_shipping_modification?rev=1537190275&amp;do=diff</link>
            <description>Live Rate Shipping Modification

This snippet has been replaced. In place of the following snippet, we now have a custom shipping code feature in FoxyCart 2.0 that allows you to modify returned live rates and provide custom rates to your customers without needing to add extra javascript to change the way the checkout works.</description>
            <author>anonymous@undisclosed.example.com (Anonymous)</author>
            <pubDate>Mon, 17 Sep 2018 13:17:55 +0000</pubDate>
        </item>
        <item>
            <title>locations_modfication</title>
            <link>https://wiki.foxycart.com/v/2.0/snippets/locations_modfication?rev=1685637328&amp;do=diff</link>
            <description>Locations Modification

The following functionality adds some helper functions to your templates to allow you to dynamically restrict the countries and states that can be used by your customers to check out.

The functionality described on this page require advanced javascript knowledge, and are not officially supported.</description>
            <author>anonymous@undisclosed.example.com (Anonymous)</author>
            <pubDate>Thu, 01 Jun 2023 16:35:28 +0000</pubDate>
        </item>
        <item>
            <title>other_drop_down</title>
            <link>https://wiki.foxycart.com/v/2.0/snippets/other_drop_down?rev=1532983571&amp;do=diff</link>
            <description>Display a dropdown list with &quot;Other&quot; text box

The following snippet will display a dropdown list in the checkout, and will display an extra text box for “Other” input if “Other” is selected.

Add javascript

On the Templates configuration page of your store's FoxyCart administration, under</description>
            <author>anonymous@undisclosed.example.com (Anonymous)</author>
            <pubDate>Mon, 30 Jul 2018 20:46:11 +0000</pubDate>
        </item>
        <item>
            <title>prevent_shipping_to_po_boxes</title>
            <link>https://wiki.foxycart.com/v/2.0/snippets/prevent_shipping_to_po_boxes?rev=1507256890&amp;do=diff</link>
            <description>Prevent Shipping to PO Boxes

The following functionality prevents your customers from shipping to PO Box addresses.

Add Javascript

Paste this javascript in the “footer” textarea of the “Add custom header and footer code to your templates” option in your store admin's</description>
            <author>anonymous@undisclosed.example.com (Anonymous)</author>
            <pubDate>Fri, 06 Oct 2017 02:28:10 +0000</pubDate>
        </item>
        <item>
            <title>redirect_upon_receipt</title>
            <link>https://wiki.foxycart.com/v/2.0/snippets/redirect_upon_receipt?rev=1600271603&amp;do=diff</link>
            <description>Redirect the customer to a webpage instead of showing the Foxy receipt

If you'd like to redirect the customer to a webpage (perhaps a Thank You page on your site), you can use this snippet to do so.

Step 1: Apply the snippet to your configuration</description>
            <author>anonymous@undisclosed.example.com (Anonymous)</author>
            <pubDate>Wed, 16 Sep 2020 15:53:23 +0000</pubDate>
        </item>
        <item>
            <title>remove_usps_day_timeframe_label</title>
            <link>https://wiki.foxycart.com/v/2.0/snippets/remove_usps_day_timeframe_label?rev=1537190312&amp;do=diff</link>
            <description>Remove days timeframe from USPS rates

This snippet has been replaced. In place of the following snippet, we now have a custom shipping code feature in FoxyCart 2.0 that allows you to modify returned live rates and provide custom rates to your customers without needing to add extra javascript to change the way the checkout works.</description>
            <author>anonymous@undisclosed.example.com (Anonymous)</author>
            <pubDate>Mon, 17 Sep 2018 13:18:32 +0000</pubDate>
        </item>
        <item>
            <title>restrict_shipping_to_specific_map_area</title>
            <link>https://wiki.foxycart.com/v/2.0/snippets/restrict_shipping_to_specific_map_area?rev=1576146424&amp;do=diff</link>
            <description>Generate Google Maps Platform API Key

To get the coordinates of the customer's shipping address, we will be using the Google Maps API. They require an account with billing account connected for access there though, so you'll need to sign up and create an account if you haven't already. They provide a $200 free allowance per month, which should allow for 40,000 requests per month before any billing would kick in.</description>
            <author>anonymous@undisclosed.example.com (Anonymous)</author>
            <pubDate>Thu, 12 Dec 2019 10:27:04 +0000</pubDate>
        </item>
        <item>
            <title>shipping_set_by_product_attributes</title>
            <link>https://wiki.foxycart.com/v/2.0/snippets/shipping_set_by_product_attributes?rev=1537190438&amp;do=diff</link>
            <description>Setting the shipping total through product attributes

This snippet has been replaced. In place of the following snippet, we now have a custom shipping code feature in FoxyCart 2.0 that allows you to modify returned live rates and provide custom rates to your customers without needing to add extra javascript to change the way the checkout works.</description>
            <author>anonymous@undisclosed.example.com (Anonymous)</author>
            <pubDate>Mon, 17 Sep 2018 13:20:38 +0000</pubDate>
        </item>
        <item>
            <title>toggle_tax_exemption</title>
            <link>https://wiki.foxycart.com/v/2.0/snippets/toggle_tax_exemption?rev=1498185183&amp;do=diff</link>
            <description>Toggle tax exemption status from the checkout

While FoxyCart does support the ability for a customer to be tax exempt - it relies on them entering a tax ID value on the checkout as part of their address. If you don't need the customer to provide their specific tax ID value, but still want them to be able to set that they're tax exempt, you can use the following snippet. It specifically adds a checkbox as a custom checkout field, which if checked will set the hidden tax ID fields with a static v…</description>
            <author>anonymous@undisclosed.example.com (Anonymous)</author>
            <pubDate>Fri, 23 Jun 2017 02:33:03 +0000</pubDate>
        </item>
        <item>
            <title>unapplied_coupon</title>
            <link>https://wiki.foxycart.com/v/2.0/snippets/unapplied_coupon?rev=1544485980&amp;do=diff</link>
            <description>Add a Message to Coupon Area when Coupon Doesn't Meet Discount Criteria

If a coupon applied doesn't meet the criteria yet (for example, the customer needs to purchase a certain quantity of a product) and you'd like to add a message explaining why the customer isn't getting the discount yet, you can use this snippet.</description>
            <author>anonymous@undisclosed.example.com (Anonymous)</author>
            <pubDate>Mon, 10 Dec 2018 23:53:00 +0000</pubDate>
        </item>
        <item>
            <title>updating_total_price_with_option_modifers</title>
            <link>https://wiki.foxycart.com/v/2.0/snippets/updating_total_price_with_option_modifers?rev=1689158289&amp;do=diff</link>
            <description>Updating a total element to reflect selected price modifiers in your page

It can be useful to display a dynamically update total cost to customers on your add to cart pages - to let them know what the options they're selecting will cost. The following snippet will allow you to display a dynamic total to customers, taking into consideration a change in quantity or options that include a price product option modifier.</description>
            <author>anonymous@undisclosed.example.com (Anonymous)</author>
            <pubDate>Wed, 12 Jul 2023 10:38:09 +0000</pubDate>
        </item>
        <item>
            <title>vat_validation_using_apilayer</title>
            <link>https://wiki.foxycart.com/v/2.0/snippets/vat_validation_using_apilayer?rev=1537420914&amp;do=diff</link>
            <description>VAT ID Validation using Vatlayer

Currently the Tax ID field on the checkout doesn't provide any validation that the value is correct - just that a value is entered. Native validation is planned as a future enhancement, but in the meantime - you can use a service like</description>
            <author>anonymous@undisclosed.example.com (Anonymous)</author>
            <pubDate>Thu, 20 Sep 2018 05:21:54 +0000</pubDate>
        </item>
    </channel>
</rss>
