Activity sheet: draw items in a bag illustration.

£2.00

Item Rating
0 0

Alongside the ‘Get to Know You: What’s in my Bag?’ lesson, use this worksheet to allow the learners to draw 5 items that can tell you about them. Suits a variety of learners.

Write a Review

Leave a Reply

£2.00

Item Rating
0
0

Item Information

Last Update: 15 October 2024
Released: 15 October 2024



document.addEventListener("DOMContentLoaded", function() { setTimeout(function() { // Select all price elements document.querySelectorAll(".edd_price").forEach(priceElement => { let basePrice = parseFloat(priceElement.textContent.replace("£", "").trim()); let paypalFee = (basePrice * 0.05) + 0.05; let totalPrice = (basePrice + paypalFee).toFixed(2); // Update price display priceElement.innerHTML = `£${totalPrice} (inc. PayPal Fee)`; }); // Update the add-to-cart button (primary) document.querySelectorAll(".edd-add-to-cart span.edd-add-to-cart-label").forEach(buttonElement => { let basePrice = parseFloat(buttonElement.textContent.replace("£", "").trim()); let paypalFee = (basePrice * 0.05) + 0.05; let totalPrice = (basePrice + paypalFee).toFixed(2); // Update button text buttonElement.innerHTML = `£${totalPrice} – Download`; }); // Update the add-to-cart button (fallback version in form) document.querySelectorAll("input.edd-add-to-cart.edd-no-js").forEach(buttonElement => { let basePrice = parseFloat(buttonElement.value.replace("£", "").trim()); let paypalFee = (basePrice * 0.05) + 0.05; let totalPrice = (basePrice + paypalFee).toFixed(2); // Update button text buttonElement.value = `£${totalPrice} – Download`; }); }, 1500); // Delays execution slightly to ensure elements are loaded });