Vintage 1940’s/50’s Old World Santa with Walking Stick Tree Topper (2025)

× Bidding has ended on this item.

"); if (!$(this).is(":visible")) { $(this).fadeTo(1000, 1, function () { $(this).slideDown(500); }); } }); } if (data.Accepted) { //prepare success system message systemMessage = "

×" + contextMessageDictionary["ActionSuccess"] + "

"; if (!$(".awe-rt-ListingActionMessage").is(":visible") || $(".awe-rt-ListingActionMessage").html() == "") { $(".awe-rt-ListingActionMessage").hide(); $(".awe-rt-ListingActionMessage").html(systemMessage); $(".awe-rt-ListingActionMessage").slideDown(); } else { $(".awe-rt-ListingActionMessage").fadeOut(200, function () { $(this).html(systemMessage); $(this).fadeIn(200); }); } //render checkout button if a lineitem was returned //EXCEPT: when Auto Generate Invoices is enabled, do not render checkout buttons for lots until the entire event has ended if (!autoGenerateInvoices && ownerAllowsInstantCheckout && data.LineItemID) { var checkoutUrl = 'https://buyorbidonit.com/Account/Checkout?lineitemid=' + data.LineItemID; checkoutUrl += '&returnUrl=%2fEvent%2fLotDetails%2f72240229%2fVintage-1940s50s-Old-World-Santa-with-Walking-Stick-Tree-Topper'; if (autoCheckoutForBuyNow) { window.location = checkoutUrl; } var checkoutHtml = '

' + '' + '' + '' + '' + '' + '' + 'Checkout' + '' + '' + '

'; if ($(".detail__context-menu").find(".btn__detail__checkout").length == 0) { $(".detail__context-menu").prepend(checkoutHtml).show(); } else { jslog("skipped rendering checkout button because one already exists."); } } if (data.LineItemID && !highlightCheckoutButtonForBuyNow) { //render contact seller button if one does not already exist if (true && $("a.btn__detail__contactuser").length == 0) { var contactSellerUrl = '/Account/SendListingMessage?receiver=SeymourAuctions&template=ask_listing_question&listingID=72240230&returnUrl=%2FEvent%2FLotDetails%2F72240229%2FVintage-1940s50s-Old-World-Santa-with-Walking-Stick-Tree-Topper'; var contactSellerHtml = '

' + '' + '' + '' + '' + '' + '' + 'Contact Seller' + '' + '' + '

'; $(".detail__context-menu").append(contactSellerHtml).show(); jslog("contact button rendered for line item #" + data.LineItemID); } //render feedback button if (false) { var feedbackUrl = '/Account/SubmitFeedback?LineItemID=REPLACELINEITEMID&ListingID=72240230&Receiver=SeymourAuctions' .replace("REPLACELINEITEMID", data.LineItemID); var feedbackHtml = '

' + '' + '' + '' + '' + '' + '' + 'Feedback' + '' + '' + '

'; $(".detail__context-menu").append(feedbackHtml).show(); jslog("feedback button rendered for line item #" + data.LineItemID); } } } else { //ReasonString is populated, prepare a Negative System message if (contextMessageDictionary[data.ReasonString]) { systemMessage = "

×" + contextMessageDictionary[data.ReasonString] + "

"; } else { systemMessage = "

×" + data.ReasonString + "

"; } if (!$(".awe-rt-ListingActionMessage").is(":visible") || $(".awe-rt-ListingActionMessage").html() == "") { $(".awe-rt-ListingActionMessage").hide(); $(".awe-rt-ListingActionMessage").html(systemMessage); $(".awe-rt-ListingActionMessage").slideDown(); } else { $(".awe-rt-ListingActionMessage").fadeOut(200, function () { $(this).html(systemMessage); $(this).fadeIn(200); }); } } } else { //Context is null, but ReasonString is populated, prepare a Negative System message if (contextMessageDictionary[data.ReasonString]) { systemMessage = "

×" + contextMessageDictionary[data.ReasonString] + "

"; } else { systemMessage = "

×" + data.ReasonString + "

"; } if (!$(".awe-rt-ListingActionMessage").is(":visible") || $(".awe-rt-ListingActionMessage").html() == "") { $(".awe-rt-ListingActionMessage").hide(); $(".awe-rt-ListingActionMessage").html(systemMessage); $(".awe-rt-ListingActionMessage").slideDown(); } else { $(".awe-rt-ListingActionMessage").fadeOut(200, function () { $(this).html(systemMessage); $(this).fadeIn(200); }); } } } }); // render a checkout button if: // // - the lot ends successfully, and // - the winner is viewing, but only if // - auto gen invoices is disabled // // mainly to prevent one invoice per LOT per buyer, rather than the generally preferred one invoice per EVENT per buyer $(document).on("SignalR_UpdateListingStatus", function (event, data) { if ($.inArray(data.ListingID, interestingListings) < 0) return; if (autoGenerateInvoices || ownerAllowsInstantCheckout) { if (data.Status == "Successful" && data.LineItemID && data.LineItemPayerUN == "") { //when Auto Generate Invoices is enabled, do not render checkout buttons for lots until the entire event has ended if (!autoGenerateInvoices) { var checkoutUrl = 'https://buyorbidonit.com/Account/Checkout?lineitemid=' + data.LineItemID; checkoutUrl += '&returnUrl=%2fEvent%2fLotDetails%2f72240229%2fVintage-1940s50s-Old-World-Santa-with-Walking-Stick-Tree-Topper'; var checkoutHtml = '

' + '' + '' + '' + '' + '' + '' + 'Checkout' + '' + '' + '

'; if ($(".detail__context-menu").find(".btn__detail__checkout").length == 0) { $(".detail__context-menu").prepend(checkoutHtml).show(); } else { jslog("skipped rendering checkout button because one already exists."); } } //render contact seller button if one does not already exist if (true && $("a.btn__detail__contactuser").length == 0) { //"/Account/SendListingMessage?receiver=tester1&template=ask_listing_question&listingID=166614&returnUrl=%2FListing%2FDetails%2F166614%2Ftest-item-J" var contactSellerUrl = '/Account/SendListingMessage?receiver=SeymourAuctions&template=ask_listing_question&listingID=72240230&returnUrl=%2FEvent%2FLotDetails%2F72240229%2FVintage-1940s50s-Old-World-Santa-with-Walking-Stick-Tree-Topper'; var contactSellerHtml = '

' + '' + '' + '' + '' + '' + '' + 'Contact Seller' + '' + '' + '

'; $(".detail__context-menu").append(contactSellerHtml).show(); jslog("contact button rendered for line item #" + data.LineItemID); } //render feedback button if (false) { var feedbackUrl = '/Account/SubmitFeedback?LineItemID=REPLACELINEITEMID&ListingID=72240230&Receiver=SeymourAuctions' .replace("REPLACELINEITEMID", data.LineItemID); var feedbackHtml = '

' + '' + '' + '' + '' + '' + '' + 'Feedback' + '' + '' + '

'; $(".detail__context-menu").append(feedbackHtml).show(); jslog("feedback button rendered for line item #" + data.LineItemID); } } } }); $(".GoToPrevLot").on("click", function () { var thisLotOrder = 30; var lastLotOrder = 124; if (thisLotOrder > 0) { $(".GoToPrevLot").prop("disabled", true); $.post("/RealTime/GetLotIdByLotOrder", { eventId: 71609161, lotOrder: (thisLotOrder - 1) }) .done(function (data) { if (data.LotId) { window.location.href = "/Event/LotDetails" + "/" + data.LotId; } }); } }); $(".GoToNextLot").on("click", function () { var thisLotOrder = 30; var lastLotOrder = 124; if (thisLotOrder < lastLotOrder) { $(".GoToNextLot").prop("disabled", true); $.post("/RealTime/GetLotIdByLotOrder", { eventId: 71609161, lotOrder: (thisLotOrder + 1) }) .done(function (data) { console.log("next lot result: ", data); if (data.LotId) { window.location.href = "/Event/LotDetails" + "/" + data.LotId; } }); } }); $(document).on("SignalR_UpdateInvoiceStatus", function (event, data) { if ($.inArray(data.ListingID, interestingListings) < 0) return; jslog("SignalR_UpdateInvoiceStatus (listing, invoice, status, payer): " + data.ListingID + ", " + data.InvoiceID + ", " + data.InvoiceStatus + ", " + data.InvoicePayerUN); //show "View Invoice" or "Checkout" button if applicable if (data.InvoicePayerUN == aweUserName) { //get result of /RealTime/IsInvoicePayable?invoiceId=nnnnnn var promise = Proxy.invokeAsync("IsInvoicePayable", { invoiceId: data.InvoiceID }, function(result) { var checkoutUrl = 'https://buyorbidonit.com/Account/Invoice/' + data.InvoiceID; checkoutUrl += '?returnUrl=%2fEvent%2fLotDetails%2f72240229%2fVintage-1940s50s-Old-World-Santa-with-Walking-Stick-Tree-Topper'; if (result.isPayable) { //invoice is payable if (autoCheckoutForBuyNow) { window.location = checkoutUrl; } if ($("a.btn__detail__checkout").length == 0) { //render checkout button if one does not already exist var checkoutHtml = '

' + '' + '' + '' + '' + '' + '' + 'Checkout' + '' + '' + '

'; $(".detail__context-menu").prepend(checkoutHtml).show(); jslog("checkout button rendered for invoice #" + data.InvoiceID); } } else { //the invoice is not payable, so instead of 'checkout' button, render 'view invoice' button if one does not already exist if ($("a.btn__detail__invoices").length == 0) { var viewInvoiceHtml = '

' + '' + '' + '' + '' + '' + '' + 'View Invoice' + '' + '' + '

'; $(".detail__context-menu").append(viewInvoiceHtml).show(); jslog("view invoice button rendered for invoice #" + data.InvoiceID); } } //only render the contact and/or feedback buttons if either // a) the web.config setting HighlightCheckoutButtonForBuyNow is set to False, or // b) the invoice is not payable if (!highlightCheckoutButtonForBuyNow || !result.isPayable) { //render contact seller button if one does not already exist if (true && $("a.btn__detail__contactuser").length == 0) { var contactSellerUrl = '/Account/SendListingMessage?receiver=SeymourAuctions&template=ask_listing_question&listingID=72240230&returnUrl=%2FEvent%2FLotDetails%2F72240229%2FVintage-1940s50s-Old-World-Santa-with-Walking-Stick-Tree-Topper'; var contactSellerHtml = '

' + '' + '' + '' + '' + '' + '' + 'Contact Seller' + '' + '' + '

'; $(".detail__context-menu").append(contactSellerHtml).show(); jslog("contact button rendered for invoice #" + data.InvoiceID); } //render feedback button if (false) { var feedbackUrl = '/Account/SubmitFeedback?LineItemID=REPLACELINEITEMID&ListingID=72240230&Receiver=SeymourAuctions' .replace("REPLACELINEITEMID", data.LineItemID); var feedbackHtml = '

' + '' + '' + '' + '' + '' + '' + 'Feedback' + '' + '' + '

'; $(".detail__context-menu").append(feedbackHtml).show(); jslog("feedback button rendered for invoice #" + data.InvoiceID); } } }, function(error) { jslog("Error retrieving invoice status (1): " + error); } ); promise.fail(function (jqXHR, textStatus) { jslog("Error retrieving invoice status (2): " + textStatus); }); } }); });

Back To Catalog


Shipping Information

This auction is an ONLINE-ONLY AUCTION. All items are sold AS-IS, WHERE-IS with no warranty expressed or implied. All items are located at Seymour Auctions Gallery, 1664 Cottageville Hwy (US 17A North), Walterboro SC 29488.The auction closes 2 lots/min on Sunday, Nov. 17th starting at 7 PM.

Payment will be processed by the Jarman Auction Co. at the conclusion of the auction.Pick up for these items is at the Seymour Auctions Gallery, 1664Cottageville Hwy (US 17A North), Walterboro SC 29488.

Pick up is Monday through Friday,10 AM – 5 PM,after hoursby appointment only - text to 843-562-6638.We will assist customers with items, butCANNOTload vehicles...please remember tobring packing materials and help to load furniture orother large items.

A 15% buyer’s premium will be added to all sales. There is an additional 3% convenience fee for credit card processing. It will be billed to and paid by the successful bidder. All charges are then subject to local taxes, shipping, and handling (if applicable). Tax-exempt buyers must have exemption documents on file with Jarman Auction Co.

By bidding on an item on this site, you have entered into a legally binding contract between yourself andSeymour Auctions.Successful bidders who fail to complete a transaction may be blocked or permanently banned from participation in future auctions or sales.All lots are subject to extended-time bidding. When last-minute bids are made, time is extended to allow all bidders a chance to make a final bid.

Seymour Auctions reserves the right to remove any listing at any time or to modify descriptions.Should there be any malfunction of the website during an ongoing auction or should any naturaloccurrencedisrupt the bidder's ability to access the site, we reserve the right to extend or continue the auction or re-list any items affected.

Items will not be shipped, delivered, or available for pick up until payment has been made.Items not paid for (FOR ANY REASON) within 3days maybe forfeited and shall become the property of Seymour Auctions.When you do not pay for an item, your account will be restricted and you will not be allowed to bid on any of our auctions until that account comes into good standing.Seymour Auctions reservesthe right to resell, donate, or otherwise discard unclaimed items.

Items not picked up after the secondweek following the auction WILL BE FORFEITED

All items are located at the Seymour AuctionsGallery in Walterboro for pickup Monday through Friday,10AM – 5 PM, &the following week, after hours by appointment only- text to 843-562-6638.Items not picked up after the secondweek following the auction WILL BE FORFEITED.Shipping is available on some items - please notify us PRIOR TO BIDDING at info@seymourauctions.com OR IMMEDIATELY AFTER THE AUCTION on this platform's messaging system IF YOU REQUIRE SHIPPING.We are located in Walterboro, SC - Exits 53 & 57 off I-95, one mile past the airport on US17A North.Owned and operated by Seymour Auctions,Fred Skipper SCAL #2582. Please visit our website,www.seymourauctions.com.(843) 554-5005. Call if you need us!

If you purchase an item that you need to have shipped, please CONTACT US to let us know that you need shipping. We have many local bidders who still have out-of-town addresses, so we do not automatically ship something just because the address is not local.

Items not picked up after the secondweek following the auction WILL BE FORFEITED

15.00% Buyer's Premium

This Auction Uses Proxy Bidding.

Active

Vintage 1940’s/50’s Old World Santa with Walking Stick Tree Topper Vintage 1940’s/50’s Old World Santa with Walking Stick Tree Topper (1)

Lot # 31

Vintage 1940’s/50’s Old World Santa with Walking Stick Tree Topper (2)

  • Vintage 1940’s/50’s Old World Santa with Walking Stick Tree Topper (3)

  • Vintage 1940’s/50’s Old World Santa with Walking Stick Tree Topper (4)

  • Vintage 1940’s/50’s Old World Santa with Walking Stick Tree Topper (5)

  • Vintage 1940’s/50’s Old World Santa with Walking Stick Tree Topper (6)

  • Vintage 1940’s/50’s Old World Santa with Walking Stick Tree Topper (7)

  • Vintage 1940’s/50’s Old World Santa with Walking Stick Tree Topper (8)

  • Vintage 1940’s/50’s Old World Santa with Walking Stick Tree Topper (9)

  • Vintage 1940’s/50’s Old World Santa with Walking Stick Tree Topper (10)

  • Vintage 1940’s/50’s Old World Santa with Walking Stick Tree Topper (11)

  • Vintage 1940’s/50’s Old World Santa with Walking Stick Tree Topper (12)

  • Current Price $5.00 ( ) No Reserve
  • 1 Bid(s) View Bid History

SeymourAuctions WALTERBORO, SC US
View Seller's Other Listings

Contact Seller

Payment Options Seller Accepts Credit Cards

Payment Instructions
Payments will be processed automatically at the close of the auction using the credit card on file. If your card is declined, you have 3 days to complete payment or you may face forfeiting your item and being removed from the site.

Description

Very good vintage condition

Details

Location

S1

Address

1664 Cottageville Hwy. US17A North, Walterboro SC 29488

Business Hours

Mon - Fri 10 AM - 5 PM or by appt.

Shipping

Yes

Lot # 31

System ID # 72240229

End Date

Start Date

Vintage 1940’s/50’s Old World Santa with Walking Stick Tree Topper (2025)
Top Articles
Latest Posts
Recommended Articles
Article information

Author: Fredrick Kertzmann

Last Updated:

Views: 5277

Rating: 4.6 / 5 (66 voted)

Reviews: 89% of readers found this page helpful

Author information

Name: Fredrick Kertzmann

Birthday: 2000-04-29

Address: Apt. 203 613 Huels Gateway, Ralphtown, LA 40204

Phone: +2135150832870

Job: Regional Design Producer

Hobby: Nordic skating, Lacemaking, Mountain biking, Rowing, Gardening, Water sports, role-playing games

Introduction: My name is Fredrick Kertzmann, I am a gleaming, encouraging, inexpensive, thankful, tender, quaint, precious person who loves writing and wants to share my knowledge and understanding with you.