Shop All Pop-Up Cards, Gifts, & More (2024)

Table of Contents
${product.title} ${product.title} Father's Day Bigfoot Legend Pop-Up Card Father's Day Bigfoot Legend Pop-Up Card Father's Day Spider Hero Pop-Up Card Father's Day Spider Hero Pop-Up Card Best Pop Pop-Up Card Best Pop Pop-Up Card Ted Lasso Happy Father's Day Pop-Up Card Ted Lasso Happy Father's Day Pop-Up Card Star Wars™ Most Impressive Father's Day Nesting Card Star Wars™ Most Impressive Father's Day Nesting Card Marvel Deadpool Father's Day Nesting Card Marvel Deadpool Father's Day Nesting Card Cat Dad Father's Day Pop-Up Card Cat Dad Father's Day Pop-Up Card Star Wars™ Darth Vader™: Best Dad Pop-Up Card Star Wars™ Darth Vader™: Best Dad Pop-Up Card Reel Kick-Bass Dad Father's Day Pop-Up Card Reel Kick-Bass Dad Father's Day Pop-Up Card Happy Father's Day Pop-Up Card Happy Father's Day Pop-Up Card Fungi Dad Pop-Up Card Fungi Dad Pop-Up Card Father’s Day Classic Car Pop-Up Card Father’s Day Classic Car Pop-Up Card Star Wars™ The Mandalorian™ Beskar Father's Day Pop-Up Card Star Wars™ The Mandalorian™ Beskar Father's Day Pop-Up Card Best Dad By Par Pop-Up Card Best Dad By Par Pop-Up Card Awesome Dad Father’s Day Pop-Up Card Awesome Dad Father’s Day Pop-Up Card Fetching Father’s Day Dog Pop-Up Card Fetching Father’s Day Dog Pop-Up Card Classic Father’s Day 3-Pack Classic Father’s Day 3-Pack Father’s Day Fishing Bear Pop-Up Card Father’s Day Fishing Bear Pop-Up Card Disney's Goofy Father's Day Pop-Up Card Disney's Goofy Father's Day Pop-Up Card Disney's The Lion King Best Dad in the Pride Lands Pop-Up Card Disney's The Lion King Best Dad in the Pride Lands Pop-Up Card Father's Day Toolbox Pop-Up Card Father's Day Toolbox Pop-Up Card Husband Happy Father’s Day Compass Pop-Up Card Husband Happy Father’s Day Compass Pop-Up Card Cheers Father’s Day Pop-Up Card Cheers Father’s Day Pop-Up Card Tee-rific Dad Pop-Up Card Tee-rific Dad Pop-Up Card Happy Birthday Endless Surprises Nesting Card Happy Birthday Endless Surprises Nesting Card Star Wars™ Darth Vader™ Best Father Pop-Up Card Star Wars™ Darth Vader™ Best Father Pop-Up Card Holy Smokes You're Old Birthday Pop-Up Card Holy Smokes You're Old Birthday Pop-Up Card Happy Birthday Pop-Up Card Happy Birthday Pop-Up Card Watercolor Orchid Pop-Up Card Watercolor Orchid Pop-Up Card Disney and Pixar Up My Greatest Adventure Pop-Up Card Disney and Pixar Up My Greatest Adventure Pop-Up Card The Best Grandpa Pop-Up Card The Best Grandpa Pop-Up Card Party Cats Birthday Pop-Up Card Party Cats Birthday Pop-Up Card Happy Birthday Cats Pop-Up card Happy Birthday Cats Pop-Up card

${imageHTMLMobile(product)}

${product.title}

${tags.map(tag => productPriceBadgeHTML(tag)).join("")}

${ showSecondaryImageFlag ? ` ` : ``}

${productBadgeHTML(tags)}

${product.title}

${priceHTML(product)}

` } /** * Returns the HTML for a badge based on the provided tag. * @param {string} tag - The tag to determine the badge to return. * @returns {string} - The HTML for the corresponding badge. */ function productPriceBadgeHTML(tag) { switch (tag.trim()) { case "5 for $50 eligible": return '

5 for $50

' case "3 Pack": return '

$39 value

' case "5 Pack": return '

$65 value

' case "7 Pack": return '

$91 value

' case "12 Pack": return '

$156 value

' case "3 Pack licensed": return '

$45 value

' case "5 Pack licensed": return '

$75 value

' case "7 Pack licensed": return '

$105 value

' case "12 Pack Bonus": return '

$169 value

' case "Bouquet 3-Pack": return '

$72 value

' case "Bouquet 5-Pack": return '

$120 value

' case "Small Super Pack": return '

$159 value

' case "bundle": return '

$37 value

' case "licensed bundle": return '

$41 value

' case "gift wrap bundle": return '

$50 value

' case "24 Pack": return '

$312 value

' case "REDROSESHOP": return '

Save 20% with code REDROSE

' case "Handcrafted Paper Flower Bundle": return '

$72 value

' case "licensed bouquet wreath card bundle": return '

$67 value

' case "bouquet wreath bundle": return '

$48 value

' case "VDAYSALE": return '

Save $6 on selected cards with VDAYSALE

' case "trickortreatpromo": return '

Save 20% with code TRICKORTREAT

' case "starwarsday23": return '

Use code STARWARS40

' case "Donation_with_purchase": return '

Donation with Purchase

' case "Val-24-30Percent": return '

30% OFF WITH CODE LOVE30

' default: return } } /** * Returns the HTML for additional information based on the provided tags. * @param {array} tags - List of tags to determine the additional information to return. * @returns {string} - The HTML for the corresponding dditional information. */ function productBadgeHTML(tags) { const allIconsArray = []; let resultIconObject = ''; tags.forEach(tag => { switch (tag.trim()) { case 'low-inventory': allIconsArray.push({ tag: ' Hurry - almost gone! ', priority: 1 }) break; case 'New Releases': allIconsArray.push({ tag: ' New! ', priority: 2 }) break; case 'license': allIconsArray.push({ tag: ' Officially Licensed ', priority: 3 }) break; case 'Direct Relief': allIconsArray.push({ tag: ' Liquid error (snippets/featured-collection line 305): Could not find asset snippets/con-heart.liquid Donation with purchase ', priority: 4 }) break; case "Happy Mother's Day": allIconsArray.push({ tag: ' Sentiment: Happy Mother's Day ', priority: 4 }) break; case "Happy Father's Day": allIconsArray.push({ tag: ' Sentiment: Happy Father's Day ', priority: 4 }) break; case 'To Mom': allIconsArray.push({ tag: ' Sentiment: To Mom ', priority: 5 }) break; case 'To Grandma': allIconsArray.push({ tag: ' Sentiment: To Grandma ', priority: 5 }) break; case 'To Dad': allIconsArray.push({ tag: ' Sentiment: To Dad ', priority: 5 }) break; } }) allIconsArray.forEach( tagObject => { if (resultIconObject === '') resultIconObject = tagObject; if (resultIconObject.priority > tagObject.priority) { resultIconObject = tagObject; } }) if (resultIconObject.tag) { return resultIconObject.tag; } return ''; } /** * Returns the CTA HTML information based on inventory_quantity. * @param {string} product - The tag to determine the additional information to return. * @returns {string} - The HTML for the corresponding additional information. */ function ctaHTML(product) { const variant = product.variants[0]; const inStock = variant.inventory_quantity >= 1 ? "in_stock" : "out_of_stock"; switch (inStock) { case "out_of_stock": return ` Notify Me When Back in Stock Sold Out - Request In Stock Notification ` default: return ` ` } } /** * Returns the product price HTML information based on product compare at price. * @param {string} product - The tag to determine the additional information to return. * @returns {string} - The HTML for the corresponding additional information. */ function priceHTML(product){ const variant = product.variants[0]; const compareAtPrice = variant.compare_at_price; return `

Regular price $${variant.price}

Sale price $${variant.price} Regular price $${compareAtPrice}

Unit price / per

` } /** * Returns the image HTML information based on product type. * @param {string} product - The product to determine the additional information to return. * @returns {string} - The HTML for the corresponding additional information. */ function imageHTML(product){ let defaultMedia = product.images[0]; let hoverMedia = product.images[1]; let showSecondaryImageFlag = false; if(product.product_type == "Pop up greeting card" && product.images[2]){ showSecondaryImageFlag = true defaultMedia = product.images[2] hoverMedia = product.images[1] } if(product.product_type == "Card Pack"){ defaultMedia = product.images[0] showSecondaryImageFlag = false } if(product.product_type != "Card Pack" && product.product_type != "Pop up greeting card" && product.images[2]){ showSecondaryImageFlag = true defaultMedia = product.images[0] hoverMedia = product.images[1] } return showSecondaryImageFlag ? ` Shop All Pop-Up Cards, Gifts, & More (1) Shop All Pop-Up Cards, Gifts, & More (2) ` : `Shop All Pop-Up Cards, Gifts, & More (3) ` } function imageHTMLMobile(product){ let defaultMedia = product.images[0]; let hoverMedia = product.images[1]; let showSecondaryImageFlag = false; if(product.product_type == "Pop up greeting card" && product.images[2]){ showSecondaryImageFlag = true defaultMedia = product.images[2] hoverMedia = product.images[1] } if(product.product_type == "Card Pack"){ defaultMedia = product.images[0] showSecondaryImageFlag = false } if(product.product_type != "Card Pack" && product.product_type != "Pop up greeting card" && product.images[2]){ showSecondaryImageFlag = true defaultMedia = product.images[0] hoverMedia = product.images[1] } return showSecondaryImageFlag ? `

Shop All Pop-Up Cards, Gifts, & More (4)

Shop All Pop-Up Cards, Gifts, & More (5)

` : `

Shop All Pop-Up Cards, Gifts, & More (6)

` }})();

Father's Day Bigfoot Legend Pop-Up Card

5 for $50

Sentiment: Happy Father's Day

Personalize

Father's Day Bigfoot Legend Pop-Up Card

Regular price $13

Sale price $13 Regular price $0

Unit price / per

Personalize and Send

Father's Day Spider Hero Pop-Up Card

5 for $50

Sentiment: Happy Father's Day

Personalize

Father's Day Spider Hero Pop-Up Card

Regular price $13

Sale price $13 Regular price $0

Unit price / per

Personalize and Send

Best Pop Pop-Up Card

5 for $50

Sentiment: To Dad

Personalize

Best Pop Pop-Up Card

Regular price $13

Sale price $13 Regular price $0

Unit price / per

Personalize and Send

Ted Lasso Happy Father's Day Pop-Up Card

Sentiment: Happy Father's Day

Personalize

Ted Lasso Happy Father's Day Pop-Up Card

Regular price $15

Sale price $15 Regular price $0

Unit price / per

Personalize and Send

Star Wars™ Most Impressive Father's Day Nesting Card

Officially Licensed

Star Wars™ Most Impressive Father's Day Nesting Card

Regular price $24

Sale price $24 Regular price $0

Unit price / per

Marvel Deadpool Father's Day Nesting Card

Officially Licensed

Marvel Deadpool Father's Day Nesting Card

Regular price $24

Sale price $24 Regular price $0

Unit price / per

Cat Dad Father's Day Pop-Up Card

5 for $50

Sentiment: Happy Father's Day

Personalize

Cat Dad Father's Day Pop-Up Card

Regular price $13

Sale price $13 Regular price $0

Unit price / per

Personalize and Send

Star Wars™ Darth Vader™: Best Dad Pop-Up Card

Officially Licensed

Personalize

Star Wars™ Darth Vader™: Best Dad Pop-Up Card

Regular price $15

Sale price $15 Regular price $0

Unit price / per

Personalize and Send

Sentiment: Happy Father's Day

Personalize

Regular price $25

Sale price $25 Regular price $0

Unit price / per

Personalize and Send

Reel Kick-Bass Dad Father's Day Pop-Up Card

5 for $50

Sentiment: Happy Father's Day

Personalize

Reel Kick-Bass Dad Father's Day Pop-Up Card

Regular price $13

Sale price $13 Regular price $0

Unit price / per

Personalize and Send

Happy Father's Day Pop-Up Card

5 for $50

Sentiment: Happy Father's Day

Personalize

Happy Father's Day Pop-Up Card

Regular price $13

Sale price $13 Regular price $0

Unit price / per

Personalize and Send

Fungi Dad Pop-Up Card

5 for $50

Sentiment: To Dad

Personalize

Fungi Dad Pop-Up Card

Regular price $13

Sale price $13 Regular price $0

Unit price / per

Personalize and Send

Father’s Day Classic Car Pop-Up Card

5 for $50

Sentiment: Happy Father's Day

Personalize

Father’s Day Classic Car Pop-Up Card

Regular price $13

Sale price $13 Regular price $0

Unit price / per

Personalize and Send

Star Wars™ The Mandalorian™ Beskar Father's Day Pop-Up Card

Sentiment: Happy Father's Day

Personalize

Star Wars™ The Mandalorian™ Beskar Father's Day Pop-Up Card

Regular price $15

Sale price $15 Regular price $0

Unit price / per

Personalize and Send

Best Dad By Par Pop-Up Card

5 for $50

Sentiment: Happy Father's Day

Personalize

Best Dad By Par Pop-Up Card

Regular price $13

Sale price $13 Regular price $0

Unit price / per

Personalize and Send

Awesome Dad Father’s Day Pop-Up Card

5 for $50

Sentiment: Happy Father's Day

Personalize

Awesome Dad Father’s Day Pop-Up Card

Regular price $13

Sale price $13 Regular price $0

Unit price / per

Personalize and Send

Fetching Father’s Day Dog Pop-Up Card

5 for $50

Sentiment: Happy Father's Day

Personalize

Fetching Father’s Day Dog Pop-Up Card

Regular price $13

Sale price $13 Regular price $0

Unit price / per

Personalize and Send

Sentiment: Happy Father's Day

Personalize

Regular price $25

Sale price $25 Regular price $0

Unit price / per

Personalize and Send

Classic Father’s Day 3-Pack

$39 value

Sentiment: Happy Father's Day

Classic Father’s Day 3-Pack

Regular price $33

Sale price $33 Regular price $0

Unit price / per

New!

Personalize

Regular price $25

Sale price $25 Regular price $0

Unit price / per

Personalize and Send

Father’s Day Fishing Bear Pop-Up Card

5 for $50

Sentiment: Happy Father's Day

Personalize

Father’s Day Fishing Bear Pop-Up Card

Regular price $13

Sale price $13 Regular price $0

Unit price / per

Personalize and Send

Disney's Goofy Father's Day Pop-Up Card

Officially Licensed

Personalize

Disney's Goofy Father's Day Pop-Up Card

Regular price $15

Sale price $15 Regular price $0

Unit price / per

Personalize and Send

Disney's The Lion King Best Dad in the Pride Lands Pop-Up Card

Officially Licensed

Personalize

Disney's The Lion King Best Dad in the Pride Lands Pop-Up Card

Regular price $15

Sale price $15 Regular price $0

Unit price / per

Personalize and Send

Father's Day Toolbox Pop-Up Card

5 for $50

Sentiment: Happy Father's Day

Personalize

Father's Day Toolbox Pop-Up Card

Regular price $13

Sale price $13 Regular price $0

Unit price / per

Personalize and Send

Husband Happy Father’s Day Compass Pop-Up Card

5 for $50

Sentiment: Happy Father's Day

Personalize

Husband Happy Father’s Day Compass Pop-Up Card

Regular price $13

Sale price $13 Regular price $0

Unit price / per

Personalize and Send

Cheers Father’s Day Pop-Up Card

5 for $50

Sentiment: Happy Father's Day

Personalize

Cheers Father’s Day Pop-Up Card

Regular price $13

Sale price $13 Regular price $0

Unit price / per

Personalize and Send

Tee-rific Dad Pop-Up Card

Sentiment: To Dad

Personalize

Tee-rific Dad Pop-Up Card

Regular price $7

Sale price $7 Regular price $13

Unit price / per

Personalize and Send

Sale

Happy Birthday Endless Surprises Nesting Card

Happy Birthday Endless Surprises Nesting Card

Regular price $19

Sale price $19 Regular price $0

Unit price / per

Star Wars™ Darth Vader™ Best Father Pop-Up Card

Sentiment: Happy Father's Day

Personalize

Star Wars™ Darth Vader™ Best Father Pop-Up Card

Regular price $15

Sale price $15 Regular price $0

Unit price / per

Personalize and Send

Holy Smokes You're Old Birthday Pop-Up Card

5 for $50

New!

Personalize

Holy Smokes You're Old Birthday Pop-Up Card

Regular price $13

Sale price $13 Regular price $0

Unit price / per

Personalize and Send

Happy Birthday Pop-Up Card

5 for $50

Personalize

Happy Birthday Pop-Up Card

Regular price $13

Sale price $13 Regular price $0

Unit price / per

Personalize and Send

Watercolor Orchid Pop-Up Card

5 for $50

New!

Personalize

Watercolor Orchid Pop-Up Card

Regular price $13

Sale price $13 Regular price $0

Unit price / per

Personalize and Send

Disney and Pixar Up My Greatest Adventure Pop-Up Card

Officially Licensed

Personalize

Disney and Pixar Up My Greatest Adventure Pop-Up Card

Regular price $15

Sale price $15 Regular price $0

Unit price / per

Personalize and Send

The Best Grandpa Pop-Up Card

5 for $50

Personalize

The Best Grandpa Pop-Up Card

Regular price $13

Sale price $13 Regular price $0

Unit price / per

Personalize and Send

Party Cats Birthday Pop-Up Card

5 for $50

New!

Personalize

Party Cats Birthday Pop-Up Card

Regular price $13

Sale price $13 Regular price $0

Unit price / per

Personalize and Send

Happy Birthday Cats Pop-Up card

5 for $50

Personalize

Happy Birthday Cats Pop-Up card

Regular price $13

Sale price $13 Regular price $0

Unit price / per

Personalize and Send

Never miss an important date. Get timely email reminders for all important occasions.

We apologize, but it seems there was an issue processing your request. Please try again later. Thank you for your understanding

We will send reminders to your email {email}.

We apologize, but it seems there was an issue processing your request. Please try again later. Thank you for your understanding

If you need to make any changes, log in to your Lovepop account page. All your reminders will be located in the Occasion Reminders tab

You can fill out this form for each upcoming occasion.

We apologize, but it seems there was an issue processing your request. Please try again later. Thank you for your understanding

Shop All Pop-Up Cards, Gifts, & More (2024)
Top Articles
Latest Posts
Article information

Author: Trent Wehner

Last Updated:

Views: 6151

Rating: 4.6 / 5 (56 voted)

Reviews: 95% of readers found this page helpful

Author information

Name: Trent Wehner

Birthday: 1993-03-14

Address: 872 Kevin Squares, New Codyville, AK 01785-0416

Phone: +18698800304764

Job: Senior Farming Developer

Hobby: Paintball, Calligraphy, Hunting, Flying disc, Lapidary, Rafting, Inline skating

Introduction: My name is Trent Wehner, I am a talented, brainy, zealous, light, funny, gleaming, attractive person who loves writing and wants to share my knowledge and understanding with you.