Sunday, August 5, 2018

Mermaids!

I've made lot's of mermaids soaps this summer. Always a sell out. Here are a few of them.








Vanity Soap Bowl full of mermaids and shells. These are precut in half. After you're done looking at them on the sink counter for a while.....give them to the kids!

One layer Mermaid Fantasy Cake. Easy to cut.

 div id="smart-button-container">
      <div style="text-align: center;">
        <div id="paypal-button-container"></div>
      </div>
    </div>
  <script src="https://www.paypal.com/sdk/js?client-id=sb&enable-funding=venmo&currency=USD" data-sdk-integration-source="button-factory"></script>
  <script>
    function initPayPalButton() {
      paypal.Buttons({
        style: {
          shape: 'rect',
          color: 'gold',
          layout: 'horizontal',
          label: 'checkout',
          
        },

        createOrder: function(data, actions) {
          return actions.order.create({
            purchase_units: [{"description":"Fancy soap","amount":{"currency_code":"USD","value":11.49,"breakdown":{"item_total":{"currency_code":"USD","value":7},"shipping":{"currency_code":"USD","value":4},"tax_total":{"currency_code":"USD","value":0.49}}}}]
          });
        },

        onApprove: function(data, actions) {
          return actions.order.capture().then(function(orderData) {
            
            // Full available details
            console.log('Capture result', orderData, JSON.stringify(orderData, null, 2));

            // Show a success message within this page, e.g.
            const element = document.getElementById('paypal-button-container');
            element.innerHTML = '';
            element.innerHTML = '<h3>Thank you for your payment!</h3>';

            // Or go to another URL:  actions.redirect('thank_you.html');
            
          });
        },

        onError: function(err) {
          console.log(err);
        }
      }).render('#paypal-button-container');
    }
    initPayPalButton();
  </script>

<div id="smart-button-container"> <div style="text-align: center;"> <div id="paypal-button-container"></div> </div> </div> <script src="https://www.paypal.com/sdk/js?client-id=sb&enable-funding=venmo&currency=USD" data-sdk-integration-source="button-factory"></script> <script> function initPayPalButton() { paypal.Buttons({ style: { shape: 'rect', color: 'gold', layout: 'horizontal', label: 'checkout', }, createOrder: function(data, actions) { return actions.order.create({ purchase_units: [{"description":"Fancy soap","amount":{"currency_code":"USD","value":11.49,"breakdown":{"item_total":{"currency_code":"USD","value":7},"shipping":{"currency_code":"USD","value":4},"tax_total":{"currency_code":"USD","value":0.49}}}}] }); }, onApprove: function(data, actions) { return actions.order.capture().then(function(orderData) { // Full available details console.log('Capture result', orderData, JSON.stringify(orderData, null, 2)); // Show a success message within this page, e.g. const element = document.getElementById('paypal-button-container'); element.innerHTML = ''; element.innerHTML = '<h3>Thank you for your payment!</h3>'; // Or go to another URL: actions.redirect('thank_you.html'); }); }, onError: function(err) { console.log(err); } }).render('#paypal-button-container'); } initPayPalButton(); </script>

No comments: