What Is Souping? The Tasty Way To Boost Your Health (2024)

DISCOVERY TRAVEL SET- SHOP TRAVEL DAILY SKIN TRIO WITH 15% OFF
GET 10% OFF YOUR FIRST ORDER* - sign up now
FREE UK DELIVERY OVER £80

  • Login
    • Book Now
    ' + '

    ' + '

    ' + '

    ' + item.product_title + recurring_desc + '' + '

    ' + '

    ' + '

    '+ item.variant_options[0].replace('100% off', 'Complimentary Gift') + '

    ' + '

    '+ item.variant_options[1] + '

    ' + '

    ' + '

    '; if(item_prop!=null && item_prop!="{}") { var pre= (JSON.stringify(item.properties['Item'])); var myStr = pre.replace(/"/g, ""); cart_items_html += '

    '+ myStr +'

    '; } var price ='£'+(item.line_price/100).toFixed(2); var qtyHidden = `

    `+ '-' + '' + '+' + '

    '; if(item.product_type == 'FREEGIFT_HIDDEN'){ price = '' qtyHidden = item.quantity + '' } cart_items_html +='

    ' + price + '

    ' + // cart_items_html +='

    £' + (item.line_price/100).toFixed(2) + '

    ' + '

    ' + ' Qty'+ qtyHidden+ '

    ' + '

    ' + 'remove' + '

    ' + '

    ' + '' ; }); cart_items_html += '

    '; if(freeSamples >= 2){ cart_items_html += `

  • Free sample limit reached

  • ` } else{ cart_items_html += `

    Pick two free samples with your order!

    All Day Long Sachet

    Daily Moisturiser
    with SPF 50+

    Good Night Sachet

    Night Cream

    Good Morning Sachet

    Vitamin C Serum

    Supernova Sachet

    Antioxidant Cleansing
    Gel

    ` } var upsellList = await UpsellData(cart); // -------------Up-Sale--------------- setTimeout(function(){ upsell_html += '

    YOUR SKIN MAY ALSO LIKE

      '; for (var item of window.productsData) { for (var product_id of upsellList) { if (item.id == product_id) { console.log("jest:", item.id); console.log("jest:", product_id); var recurring_desc = ""; upsell_html += '
    • ' + '

      ' + 'What Is Souping? The Tasty Way To Boost Your Health (16)' + '

      ' + '

      ' + '

      ' + '

      ' + item.title + recurring_desc + '' + '

      ' + '

      ' + '

      '+ item.variants[0] + '

      ' + '

      ' + '

      ' '

      '; var price ='£'+(item.line_price/100).toFixed(2); if(item.product_type == 'FREEGIFT_HIDDEN'){ price = '' } upsell_html +='

      ' + price + '

      ' + '
    • '; } } }; upsell_html += '

    '; if(upsellList.length > 0) { //$('.upsale_warpper').html(upsell_html) } else { $('.upsale_warpper').html(''); }; },1000); // subtotal += '

    '+ cart.item_count +'

    Subtotal:

    £' + (cart.total_price/100).toFixed(2) + '

    ' + '

    You will earn points with this purchase.

    '+ '

    Shipping is calculated at checkout.

    '+ '

    '; checkoutbtn += '

    Checkout

    '+ 'Continue Shopping

    '+ '

    '; $(".cart-button").addClass('itemincart'); $("#CartCount").removeClass('count_0'); $(".site-header__cart").removeClass('count_empty'); $(".cart_sec .icondiv").css('opacity', '1'); $(".site-header__cart-count").css('opacity', '0'); // $("#cart_addpro").show(); setTimeout(function(){ $(".cart_sec .icondiv").css('opacity', '0'); $(".site-header__cart-count").css('opacity', '1'); }, 2000); $("#added-box #cart").removeClass('hide_gift'); $(".cart-button").html('' +cart.item_count+ ''); $('.new-total-price').html("£"+(cart.total_price/100).toFixed(2)); $cart.html(cart_items_html); $('.upsale_subtotal_warpper').html(subtotal); $('.upsale_cart_btn_warpper').html(checkoutbtn) //$("subtotal_box").html(upsell_html); //$cart.append(cart_items_html); $('#ll-cart-points').attr("data-lion-points-for", cart.total_price); window.loyaltylion && window.loyaltylion.ui.refresh(); $cart.find('li.cart_item:last').addClass('last_cart_item'); if($('.currencies:visible option:selected').val()) { Currency.convertAll($cart.data('shop-currency'), $('.currencies:visible option:selected').val()); } $("#PageContainer").addClass('slideleft_body'); $(".bottle-product-title_hide.ajax_show").addClass('hide_bottal'); $("#added-box-wrapper").addClass('showcart'); $(".blk_tras").addClass('ac_blk_tras'); // setTimeout(function(){ // $("#added-box-wrapper").removeClass('showcart'); // $("#added-box-wrapper").slideUp(); // $(".blk_tras").removeClass('ac_blk_tras'); //}, 5000); //$("#added-box-wrapper").slideDown(); $("#Prod_added_suc").html('Product added to cart'); $("#Prod_added_suc").fadeIn(6000); $("#Prod_added_suc").fadeOut(6000); $(".addbag_count").show(); $("body").addClass('body_noscroll'); if($("li.cart_item").hasClass("hide_bottal")){ $("#cart_addpro").hide(); } else{ $("#cart_addpro").show(); } $("div.Size_sec:contains(Default)").hide(); $("div.Color_sec:contains(undefined)").hide(); if(cart.item_count==1){ $("#item_name").html('ITEM'); } else{ $("#item_name").html('ITEMS'); } } } } function htmlEncode(value){ if (value) { return $('

    ').text(value).html(); } else { return ''; }} function remove_item(id) { document.getElementById('updates_'+id).value = 0; ajaxSubmitCart(); } $(document).on("click", "#direct_cart", function() { window.location.href="/cart"; }); $(document).on("change", "#cart input[type='number']", function() { ajaxSubmitCart(); }); $(document).on("click", ".minus", function() { var quantity = parseInt($(this).next("input").val()); var qty = quantity ; quantity -= 1; $(this).next("input").attr("value", quantity); if (qty <= 0) { $(this).closest('li.cart_item').addClass('animated fadeOutUp') setTimeout(ajaxSubmitCart, 500); } else { ajaxSubmitCart(); } }); $(document).on("click", ".plus", function() { var quantity = parseInt($(this).prev("input").val()); quantity += 1; $(this).prev("input").attr("value", quantity); ajaxSubmitCart(); }); $(document).on("submit",".product-form", function(e) { e.preventDefault(); var $addToCartForm = $(this); var $addToCartBtn = $addToCartForm.find('.singleaddcart'); $.ajax({ url: '/cart/add.js', dataType: 'json', type: 'post', data: $addToCartForm.serialize(), success: function(itemData) { Shopify.getCart(function(cart) { refreshCart(cart); window.setTimeout(function(){ $('.cart-button').click(); }, 500); }); }, error: function(XMLHttpRequest) { var response = eval('(' + XMLHttpRequest.responseText + ')'); response = response.description; $('.warning').remove(); //var warning = '

    ' + response.replace('All 1 ', 'All ') + '

    '; var warning = '

    ' + response.replace('All ', 'All ') + '

    '; $addToCartBtn.after(warning); $addToCartBtn.removeAttr('disabled').removeClass('disabled'); $addToCartBtn.find('span').text("Sold out").removeClass('zoomOut').addClass('zoomIn'); // var str = $( ".warning" ).text('array contains unpermitted members: id'); $( ".warning:contains('array contains unpermitted members: id')" ).css( "display", "none" ); } }); return false; }); $(document).on("click", ".slideleft_body", function(){ $("#added-box-wrapper").removeClass('showcart'); $("body").removeClass('body_noscroll'); $(".blk_tras").removeClass('ac_blk_tras'); // $("#added-box-wrapper").slideUp(); }); $(document).on("click", "#close_bag", function(){ $("#added-box-wrapper").removeClass('showcart'); $("body").removeClass('body_noscroll'); $(".blk_tras").removeClass('ac_blk_tras'); // $("#added-box-wrapper").slideUp(); }); $(document).on("click", ".blk_tras", function(){ $("#added-box-wrapper").removeClass('showcart'); $("body").removeClass('body_noscroll'); $(this).removeClass('ac_blk_tras'); // $("#added-box-wrapper").slideUp(); }); $(document).on("click", "#CartButton", function(){ $("#added-box-wrapper").toggleClass('showcart'); $(".blk_tras").toggleClass('ac_blk_tras'); });

    • May 27, 2018
    • Diet

    AUTHOR - DR. DAVID JACK

    Similar to juicing, souping can be used to increase your daily intake of nutrients, and even to lose weight, by replacing meals with between 4 -6 liquid meals per day.

    High fibre soups can be placed into your meal plan on a regular basis, either through a full-on soup cleanse or simply by replacing one meal a day.

    Soup provides fibre and volume, hydration and a delivery system for foods which are typically easier to process than raw foods themselves.

    It is usually lower in sugar than juice – but watch out for salt levels. Souping can also assist with weight loss if done correctly. While going on an all liquid, low calorie diet will lead to weight loss but if those soups aren't high in protein, it will also result in muscle loss.

    Intermittent fasting helps with weight loss, decreasing inflammation in the body, reducing blood pressure, improving metabolism, and decreasing the risk of Type 2 Diabetes.

    Taking a break from solid foods and having high protein smoothies or soups instead achieves many of the same health benefits while simultaneously helping people to feel full and guarding the muscles.

    Nutritionists suggest souping for one day per week while you have weight to lose – and then swapping out either lunch or dinner for a soup every day. The soup should have at least 30 grams of protein and be less than 370 calories and nutrient-dense.

    While initial cravings might occur for the junk foods you’ve been eating, your tastes will start to change and your body will adapt.

    The key is to eat the right kind of soup. Avoid cans, and processed, salty, fatty soups. Fill your day with all-natural, plant-based, slow-cooked and blended soups, without chemicals or preservatives.

    Go for organic ingredients and load your soup with dark leafy greens, add one to two herbs—think parsley and celery leaves—and include a variety of spices.

    Here are a couple of recipes to get you started.

    Red lentil and coconut soup

    What Is Souping? The Tasty Way To Boost Your Health (17)

    (Serves 6)

    • Mix one diced white onion, a tablespoon of fresh minced ginger, a finely chopped chilli and two peeled and chopped carrots in a large pot and fry with a little oil for about 10 minutes.
    • Add 3 tablespoons of cumin, 2 tablespoons of coriander, and a tablespoon of paprika, and mix well.
    • Add eight cups of vegetable stock and two cups of red lentils to the pot and bring to the boil, simmering for 10 minutes.
    • Add half a cup of coconut milk, a quarter cup of tomato paste and a 400g can of diced tomatoes and simmer for a further 20 minutes.

    Tender and spicy green soup

    What Is Souping? The Tasty Way To Boost Your Health (18)

    (Serves 2)

    • Boil a litre of water in a pot.
    • Chop four celery stalks, one onion, green bell pepper and five handfuls of spinach and add them to the pot.
    • Place a lid over the pot and cook on medium heat for 15 minutes.
    • Turn off the heat and add two whole garlic cloves, before blending.
    • Pour into two bowls, adding cream or coconut milk, and a little sea salt and black pepper to taste.

    Back to Diet

    Beauty Advice

    • Diet

    Why does the sun damage my skin? The sun's rays make us feel good, and in the...

    Read more

    • Diet

    ‘Healthy eating’ has long been shown toslow ageing processes, with diets hig...

    Read more

    • Diet

    Magic Mushrooms. If you’ve been watching Gwyneth Paltrow’s series on Netflix ...

    Read more

    • Diet

    The Skinny on Dietary Fats: How to tell the good from the bad. Fats. Once the...

    Read more

    • Diet

    What's so great about Yerba Mate? Made from the leaves of the South American ...

    Read more

    • Diet

    What are parabens - and why are they bad? Parabens are the most widely used p...

    Read more

    • Diet

    Juicing for your skin. The simplest way to think about juicing is that you ar...

    Read more

    • Diet

    Why you should eat more mint. Mint aids digestion, relieves congestion of the...

    Read more

    • Diet

    How To Reach Your Recommended Intake Of Vitamin D. Vitamin D helps keeps bone...

    Read more

    • Diet

    Boost Your Body With Bananas. Bananas contain Vitamin B6 and magnesium which ...

    Read more

    What Is Souping? The Tasty Way To Boost Your Health (29)

    JOIN OUR SKIN HEALTH CONVERSATION & GET 10% OFF SKINCARE ON YOUR FIRST ORDER*

    *Excludes sets

    Use left/right arrows to navigate the slideshow or swipe left/right if using a mobile device

    What Is Souping? The Tasty Way To Boost Your Health (2024)
    Top Articles
    Latest Posts
    Article information

    Author: The Hon. Margery Christiansen

    Last Updated:

    Views: 6769

    Rating: 5 / 5 (50 voted)

    Reviews: 81% of readers found this page helpful

    Author information

    Name: The Hon. Margery Christiansen

    Birthday: 2000-07-07

    Address: 5050 Breitenberg Knoll, New Robert, MI 45409

    Phone: +2556892639372

    Job: Investor Mining Engineer

    Hobby: Sketching, Cosplaying, Glassblowing, Genealogy, Crocheting, Archery, Skateboarding

    Introduction: My name is The Hon. Margery Christiansen, I am a bright, adorable, precious, inexpensive, gorgeous, comfortable, happy person who loves writing and wants to share my knowledge and understanding with you.