Skip to main content
A Beginners Guide to Disney Pin Trading

A Beginners Guide to Disney Pin Trading

·
Written by R.J. Hevier
  • This guide provides a beginner-friendly introduction to Disney Pin Trading to make the most of the experience.
  • Disney Pin Trading involves collecting and trading Disney-themed pins with cast members and other guests.
  • To get started, buy your first Disney Pin, purchase a PinFolio to carry your pins, and start trading with cast members.
  • Cast members must trade one pin for one pin and can trade up to two pins per guest.
  • Be polite when trading, trade for pins you love, know the value of your pins, and keep your pins organized in the PinFolio.
  • PinFolios can be purchased online at gopinpro.com, Amazon, Etsy, eBay, or Walmart.
Continue reading
document.addEventListener("DOMContentLoaded", function() { let toggleButton = document.querySelector("#pinny-toggle"); let chatbox = document.querySelector("#pinny-chatbox"); let sendButton = document.querySelector(".pinny-send-btn"); if (!toggleButton || !chatbox || !sendButton) { console.error("Pinny Chat elements not found on the page."); return; } toggleButton.onclick = function() { chatbox.style.display = chatbox.style.display === "flex" ? "none" : "flex"; }; sendButton.onclick = function() { let input = document.querySelector(".pinny-input"); let message = input.value.trim(); if (!message) return; let messages = document.querySelector("#pinny-messages"); messages.innerHTML += `
You: ${message}
`; fetch("https://pinny-chatbot-bc02cd1c9b90.herokuapp.com/search", { method: "POST", headers: { "Content-Type": "application/json" }, body: JSON.stringify({ query: message }) }) .then(response => response.json()) .then(data => { messages.innerHTML += `
Pinny: ${data.reply}
`; messages.scrollTop = messages.scrollHeight; }) .catch(error => { console.error("Fetch error:", error); messages.innerHTML += `
Pinny: Oops! Something went wrong. Try again later.
`; }); input.value = ""; }; });