Skip to Content

Budget Wedding Registry Tips

Wedding Registry Tips: Ideas for choosing a registry when you and your guests are on a small budget. | #MyOnlineWeddingHelp MyOnlineWeddingHelp.com

So you are engaged, have sent save the dates, are trying to figure out how to stay within your tight wedding budget, and now need a wedding registry. While it may be tempting to go with a higher end store, it’s both more practical and beneficial to you if you stick with a quality discount retailer.

Your guests are on a tight budget, too. It’s unlikely they can easily afford many of the items on your registry if you opt for a high-priced store. For example, as of this writing a Calphalon 4 Quart Slow Cooker at Crate and Barrel is $79.95. The 6 Quart Crock Pot at Target is $23.99 as of this writing. More folks are likely to be able to afford the Crock Pot.

Use a registry with good perks at a modestly-priced store.  A while back I researched registries and found three with more benefits than the rest. While prices are approximately comparable between the three, Kohl’s has frequent, quite lucrative Kohl’s Cash promotions. If your guests buy a gift during this period, they can get more merchandise free, at a later date, for dollars spent (each varies, but $10 back for $50 spent is a recent example). Also, as of this writing, customers purchasing off a registry get 20% off if they buy at least $100.

(Note: I received no money or free merchandise for writing this post. Because Kohl’s and Target are my affiliate partners, however, I do get a commission if you buy something through a link.)

You have more options at a general department store than specialty retailer. One or both of you are likely to have already set up household. Consequently, your needs may be less than traditional. In this day and age it is perfectly OK to expand your choices to other items you will use.  You will want to choose a retailer that can accommodate. Looking at Pottery Barn versus Target, for example, the former is limited to household items. The latter also carries electronics, luggage, sports equipment, automotive items, and more.

Popular wedding registry items …

[php]

# Determine the current base URL
if(!isset($_SERVER[‘REQUEST_URI’])) {
$psps_base_url = $_SERVER[‘PHP_SELF’];
if (isset($HTTP_SERVER_VARS[‘QUERY_STRING’])) { $psps_base_url .= $HTTP_SERVER_VARS[‘QUERY_STRING’]; }
} else {
$psps_base_url = $_SERVER[‘REQUEST_URI’];
}

$psps_parameters = ”;

foreach ($_REQUEST as $key => $value) {
if (strpos($key,”psps_”) > -1 ) {
$psps_parameters .= ‘&’.$key.’=’.urlencode($value);
$psps_base_url = str_replace(‘&’.$key.’=’.urlencode($value), “”, $psps_base_url);
$psps_base_url = str_replace($key.’=’.urlencode($value), “”, $psps_base_url);
}
}

$psps_parameters .= “&psps_show_search=true”;
$psps_parameters .= “&psps_show_navigation=true”;
$psps_parameters .= “&psps_show_products=true”;

$psps_url = “?psps_base_url=”.urlencode($psps_base_url);

$psps_url=”http://shops.popshops.com/shops/php/2z5czlsggez91l5nhpzb7a126$psps_url$psps_parameters”;

# Include the shop
if (function_exists(‘curl_init’)) {
$shop=curl_init();
curl_setopt($shop,CURLOPT_URL,$psps_url);
curl_exec($shop);
curl_close($shop);
} else {
readfile($psps_url);
}

[/php]