New Pop Up Card Designs, Our Freshest Releases (2024)

Table of Contents
${product.title} ${product.title} Disney's Stitch Cowabunga Birthday Pop-Up Card Disney's Stitch Cowabunga Birthday Pop-Up Card Disney’s Mickey and Friends Birthday 4-in-1 Nesting Card Disney’s Mickey and Friends Birthday 4-in-1 Nesting Card Berry Sweet Birthday Strawberries Suncatcher Card Berry Sweet Birthday Strawberries Suncatcher Card Wisteria Bouquet Wisteria Bouquet Get Well Soon 3-Pack Get Well Soon 3-Pack Disney’s Winnie the Pooh Thinking of You Pop-Up Card Disney’s Winnie the Pooh Thinking of You Pop-Up Card Disney Princess Birthday Dreams Come True Pop-Up Card Disney Princess Birthday Dreams Come True Pop-Up Card Purr-fect Cat Bouquet Purr-fect Cat Bouquet Birthday Margarita Pop-Up Card Birthday Margarita Pop-Up Card Minions Bello Birthday! Pop-Up Card Minions Bello Birthday! Pop-Up Card You Brighten My World Birds Suncatcher Card You Brighten My World Birds Suncatcher Card Shell-ebrate Birthday Turtle Pop-Up Card Shell-ebrate Birthday Turtle Pop-Up Card Sympathy 3-Pack Sympathy 3-Pack Marvel Deadpool Birthday 4-in-1 Nesting Card Marvel Deadpool Birthday 4-in-1 Nesting Card Marvel's Spider-Man Miles Morales Birthday Pop-Up Card Marvel's Spider-Man Miles Morales Birthday Pop-Up Card Disney and Pixar Up Birthday Adventures Pop-Up Card Disney and Pixar Up Birthday Adventures Pop-Up Card Midnight Florals Bouquet Midnight Florals Bouquet Welcome Little One New Baby Pop-Up Card Welcome Little One New Baby Pop-Up Card Oh Spritz! Birthday Pop-Up Card Oh Spritz! Birthday Pop-Up Card Just for the Record Anniversary Pop-Up Card Just for the Record Anniversary Pop-Up Card Party Cats Birthday Pop-Up Card Party Cats Birthday Pop-Up Card Thinking of You Bouquet Thinking of You Bouquet Birthday Animals 3-Pack Birthday Animals 3-Pack Disney's Winnie the Pooh New Baby Pop-Up Card Disney's Winnie the Pooh New Baby Pop-Up Card Peachy Birthday Peaches Suncatcher Card Peachy Birthday Peaches Suncatcher Card Beautiful Botanicals 12-Pack: Paperpop® Card Beautiful Botanicals 12-Pack: Paperpop® Card Pansy Bouquet Pansy Bouquet Zest Birthday Lemons Suncatcher Card Zest Birthday Lemons Suncatcher Card Disney and Pixar Cars Lightning McQueen Kachow! Birthday Pop-Up Card Disney and Pixar Cars Lightning McQueen Kachow! Birthday Pop-Up Card Harry Potter™ Magical Birthday Surprises 4-in-1 Nesting Card Harry Potter™ Magical Birthday Surprises 4-in-1 Nesting Card Disney and Pixar’s WALL•E Out Of This World Birthday Pop-Up Card Disney and Pixar’s WALL•E Out Of This World Birthday Pop-Up Card Halloween Greetings Pop-Up Card Halloween Greetings Pop-Up Card Golden Sunflower Bouquet Golden Sunflower Bouquet FAQs References

${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 322): 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 ? ` New Pop Up Card Designs, Our Freshest Releases (1) New Pop Up Card Designs, Our Freshest Releases (2) ` : `New Pop Up Card Designs, Our Freshest Releases (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 ? `

New Pop Up Card Designs, Our Freshest Releases (4)

New Pop Up Card Designs, Our Freshest Releases (5)

` : `

New Pop Up Card Designs, Our Freshest Releases (6)

` }})();

Disney's Stitch Cowabunga Birthday Pop-Up Card

Officially Licensed

Personalize

Disney's Stitch Cowabunga Birthday Pop-Up Card

Regular price $15

Sale price $15 Regular price $0

Unit price / per

Disney’s Mickey and Friends Birthday 4-in-1 Nesting Card

Officially Licensed

Disney’s Mickey and Friends Birthday 4-in-1 Nesting Card

Regular price $24

Sale price $24 Regular price $0

Unit price / per

Berry Sweet Birthday Strawberries Suncatcher Card

5 for $50

New!

Personalize

Berry Sweet Birthday Strawberries Suncatcher Card

Regular price $13

Sale price $13 Regular price $0

Unit price / per

Wisteria Bouquet

New!

Personalize

Wisteria Bouquet

Regular price $15

Sale price $15 Regular price $0

Unit price / per

Get Well Soon 3-Pack

$39 value

New!

Get Well Soon 3-Pack

Regular price $33

Sale price $33 Regular price $0

Unit price / per

Disney’s Winnie the Pooh Thinking of You Pop-Up Card

Officially Licensed

Personalize

Disney’s Winnie the Pooh Thinking of You Pop-Up Card

Regular price $15

Sale price $15 Regular price $0

Unit price / per

Disney Princess Birthday Dreams Come True Pop-Up Card

Officially Licensed

Personalize

Disney Princess Birthday Dreams Come True Pop-Up Card

Regular price $15

Sale price $15 Regular price $0

Unit price / per

Purr-fect Cat Bouquet

New!

Personalize

Purr-fect Cat Bouquet

Regular price $15

Sale price $15 Regular price $0

Unit price / per

Birthday Margarita Pop-Up Card

5 for $50

New!

Personalize

Birthday Margarita Pop-Up Card

Regular price $13

Sale price $13 Regular price $0

Unit price / per

New!

Personalize

Regular price $25

Sale price $25 Regular price $0

Unit price / per

Minions Bello Birthday! Pop-Up Card

Officially Licensed

Personalize

Minions Bello Birthday! Pop-Up Card

Regular price $15

Sale price $15 Regular price $0

Unit price / per

You Brighten My World Birds Suncatcher Card

5 for $50

New!

Personalize

You Brighten My World Birds Suncatcher Card

Regular price $13

Sale price $13 Regular price $0

Unit price / per

Shell-ebrate Birthday Turtle Pop-Up Card

5 for $50

New!

Personalize

Shell-ebrate Birthday Turtle Pop-Up Card

Regular price $13

Sale price $13 Regular price $0

Unit price / per

Sympathy 3-Pack

$39 value

New!

Sympathy 3-Pack

Regular price $33

Sale price $33 Regular price $0

Unit price / per

Marvel Deadpool Birthday 4-in-1 Nesting Card

Officially Licensed

Marvel Deadpool Birthday 4-in-1 Nesting Card

Regular price $24

Sale price $24 Regular price $0

Unit price / per

Marvel's Spider-Man Miles Morales Birthday Pop-Up Card

Officially Licensed

Personalize

Marvel's Spider-Man Miles Morales Birthday Pop-Up Card

Regular price $15

Sale price $15 Regular price $0

Unit price / per

Disney and Pixar Up Birthday Adventures Pop-Up Card

Officially Licensed

Personalize

Disney and Pixar Up Birthday Adventures Pop-Up Card

Regular price $15

Sale price $15 Regular price $0

Unit price / per

Midnight Florals Bouquet

New!

Personalize

Midnight Florals Bouquet

Regular price $15

Sale price $15 Regular price $0

Unit price / per

Welcome Little One New Baby Pop-Up Card

5 for $50

New!

Personalize

Welcome Little One New Baby Pop-Up Card

Regular price $13

Sale price $13 Regular price $0

Unit price / per

Oh Spritz! Birthday Pop-Up Card

5 for $50

New!

Personalize

Oh Spritz! Birthday Pop-Up Card

Regular price $13

Sale price $13 Regular price $0

Unit price / per

Just for the Record Anniversary Pop-Up Card

5 for $50

New!

Personalize

Just for the Record Anniversary Pop-Up Card

Regular price $13

Sale price $13 Regular price $0

Unit price / per

New!

Personalize

Regular price $25

Sale price $25 Regular price $0

Unit price / per

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

Thinking of You Bouquet

New!

Personalize

Thinking of You Bouquet

Regular price $15

Sale price $15 Regular price $0

Unit price / per

Birthday Animals 3-Pack

$39 value

New!

Birthday Animals 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

Disney's Winnie the Pooh New Baby Pop-Up Card

Officially Licensed

Personalize

Disney's Winnie the Pooh New Baby Pop-Up Card

Regular price $15

Sale price $15 Regular price $0

Unit price / per

Peachy Birthday Peaches Suncatcher Card

5 for $50

New!

Personalize

Peachy Birthday Peaches Suncatcher Card

Regular price $13

Sale price $13 Regular price $0

Unit price / per

Beautiful Botanicals 12-Pack: Paperpop® Card

New!

Beautiful Botanicals 12-Pack: Paperpop® Card

Regular price $49

Sale price $49 Regular price $0

Unit price / per

Pansy Bouquet

New!

Personalize

Pansy Bouquet

Regular price $15

Sale price $15 Regular price $0

Unit price / per

Zest Birthday Lemons Suncatcher Card

5 for $50

New!

Personalize

Zest Birthday Lemons Suncatcher Card

Regular price $13

Sale price $13 Regular price $0

Unit price / per

Disney and Pixar Cars Lightning McQueen Kachow! Birthday Pop-Up Card

Officially Licensed

Personalize

Disney and Pixar Cars Lightning McQueen Kachow! Birthday Pop-Up Card

Regular price $15

Sale price $15 Regular price $0

Unit price / per

Harry Potter™ Magical Birthday Surprises 4-in-1 Nesting Card

Officially Licensed

Harry Potter™ Magical Birthday Surprises 4-in-1 Nesting Card

Regular price $24

Sale price $24 Regular price $0

Unit price / per

Disney and Pixar’s WALL•E Out Of This World Birthday Pop-Up Card

Officially Licensed

Personalize

Disney and Pixar’s WALL•E Out Of This World Birthday Pop-Up Card

Regular price $15

Sale price $15 Regular price $0

Unit price / per

Halloween Greetings Pop-Up Card

5 for $50

New!

Personalize

Halloween Greetings Pop-Up Card

Regular price $13

Sale price $13 Regular price $0

Unit price / per

Golden Sunflower Bouquet

New!

Personalize

Golden Sunflower Bouquet

Regular price $15

Sale price $15 Regular price $0

Unit price / per

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

New Pop Up Card Designs, Our Freshest Releases (2024)

FAQs

Are greeting cards going out of fashion? ›

The stereotypical greeting card might be going out of style, as a new survey finds that nearly 80% of millennials never even send them. Fortunately, there are much better, more personalized ways to show someone your gratitude.

Is Love Pop still in business? ›

Lovepop got its start as a direct-to-consumer site, and that channel is still the brand's biggest sales driver. In total, Lovepop's revenue grew 44% year-over-year in 2020. This digital focus helps Lovepop stand out compared to other greeting card companies.

What greeting cards sell the most? ›

The most popular Everyday card-sending occasion by far is Birthday, followed by Sympathy, Thank You, Wedding, Thinking of You, Get Well, New Baby and Congratulations.

Is there any reason to keep old greeting cards? ›

The cards that bring you immense joy when you look at them, remind you of a special relationship, or are from a unique time in your life, deserve a special home. Remember that the more cards that you keep, the less time you'll have to enjoy the most unique ones through the years.

What is an alternative to Lovepop? ›

The best alternatives to LovePop Cards are Mailjoy, Crudely Drawn Love Letter, and loveletter.

Are Lovepop cards worth it? ›

Buying a LovePop card to enhance a once-in-a-lifetime occasion or special experience feels worth it to me. For other events that come and go annually (not that they're not special), you're probably better off buying a card that won't break the bank and buying it somewhere that's convenient for you.

Who owns Love Pop cards? ›

Wombi Rose and John Wise founded Lovepop and today hold the titles of CEO and COO, respectively.

Are greeting cards becoming obsolete? ›

Holiday cards, despite many digital alternatives, are still a popular way of sending season's greetings.

Are greeting cards going out of business? ›

In recent years, the once-thriving greeting card industry has faced a major decline. Sales have dwindled, and retailers are scaling back on shelf space. Once prominent retailers like Hallmark have been forced to close multiple store locations over the last few years.

What is the future of greeting cards? ›

The global Greeting Cards market size reached US$ XX Billion in 2023. Looking forward,360 market updates believes the market to reach USD 22300.0 million by 2031, showing agrowth rate [CAGR of -1.56%] during 2024-2031.

Are greeting cards declining? ›

The market size of the Greeting Cards & Other Publishing industry in the US has declined 5.7% per year on average between 2018 and 2023.

References

Top Articles
Latest Posts
Article information

Author: Moshe Kshlerin

Last Updated:

Views: 6096

Rating: 4.7 / 5 (57 voted)

Reviews: 88% of readers found this page helpful

Author information

Name: Moshe Kshlerin

Birthday: 1994-01-25

Address: Suite 609 315 Lupita Unions, Ronnieburgh, MI 62697

Phone: +2424755286529

Job: District Education Designer

Hobby: Yoga, Gunsmithing, Singing, 3D printing, Nordic skating, Soapmaking, Juggling

Introduction: My name is Moshe Kshlerin, I am a gleaming, attractive, outstanding, pleasant, delightful, outstanding, famous person who loves writing and wants to share my knowledge and understanding with you.