const objContactForm = { template: `
Contact Listing Power Tools
Full name
Email address
Phone number
Are you currently a member?
Message
{{ message }}
` , data(){ return { form: { name: '', email: '', phone: '', member: false, message: '' }, submittingForm: false, showingMessage: false, messageColor: { 'text-danger': true }, message: '' } }, methods: { async submitContact(event) { event.preventDefault() if (this.validateForm()) { this.submittingForm = true const response = await fetch(`api/backend.cfc?method=contactLPT`, { method: 'POST', body: JSON.stringify(this.form) }) let data = await response.json() if (data.success === true) { this.messageColor = { 'text-success': true } this.submittingForm = false this.message = 'Thank you! Your information has been received.' this.showingMessage = true setTimeout(() => { this.showingMessage = false }, 5000) this.clearForm() }else { this.messageColor = { 'text-danger': true } this.submittingForm = false this.message = 'Failed to send communincation please try again.' this.showingMessage = true setTimeout(() => { this.showingMessage = false }, 5000) } } }, validateForm() { if ( this.form.name !== '' && this.form.email !== '' && this.form.phone !== '' && this.form.message !== '' ) { return true } else return false }, clearForm() { this.form.name = '' this.form.email = '' this.form.phone = '' this.form.member = false this.form.message = '' }, maskPhone() { let unmaskedValue = this.form.phone let maskedValue = unmaskedValue let x = unmaskedValue.replace(/\D/g, '').match(/(\d{0,3})(\d{0,3})(\d{0,4})/) maskedValue = !x[2] ? x[1] : x[1] + '-' + x[2] + (x[3] ? '-' + x[3] : '') this.form.phone = maskedValue } } } app.component('contact-form', objContactForm); const objContactInfo = { template: `
Get in touch
The Listing Power Tools team is a dedicated group of marketing professionals whose goal is to empower real estate agents with affordable, all-in-one marketing solutions. Our dynamic team is made up of real estate marketing specialists and service-driven staff, ensuring our members have access to the most advanced and effective features and dedicated support.
Office
2884 S Orlando Dr
Sanford, FL
Live chat
Monday-Friday 8am to 6pm
Phone
Monday-Friday 8am to 6pm
855-208-9097
` , data(){ return { } } } app.component('contact-info', objContactInfo); const objFaqBanner = { template: `
` , data(){ return { searchString: '' } }, props: { faqObject: { type: Object, required: true } }, computed: { searchData() { let searchStringsQuestions = [] let searchStringsAnswers = [] this.faqObject.first.forEach(obj => { searchStringsQuestions.push(obj.question) if (obj.answer) searchStringsAnswers.push(obj.answer) else if (obj.answerPreserve) searchStringsAnswers.push(obj.answerPreserve) }) this.faqObject.second.forEach(obj => { searchStringsQuestions.push(obj.question) if (obj.answer) searchStringsAnswers.push(obj.answer) else if (obj.answerPreserve) searchStringsAnswers.push(obj.answerPreserve) }) return [...searchStringsQuestions, ...searchStringsAnswers] } }, methods: { checkStrings(string) { return this.searchData.some(x => x == string) }, clickDataList(string) { let found = false this.faqObject.first.forEach((obj,index) => { if (!found && obj.question == string || obj.answer == string || obj.answerPreserve == string) { this.$root.toggleFAQAccordion(this.faqObject.firstHeader, index) this.searchString = '' found = true } }) if (!found) { this.faqObject.second.forEach((obj,index) => { if (!found && obj.question == string || obj.answer == string || obj.answerPreserve == string) { this.$root.toggleFAQAccordion(this.faqObject.secondHeader, index) this.searchString = '' found = true } }) } } }, watch: { searchString: { handler (newString, oldString) { let stringExists = this.checkStrings(newString) if (stringExists && oldString !== newString) { this.clickDataList(newString) } } } } } app.component('faq-banner', objFaqBanner); const objFaqList = { template: `
{{ faqObject.firstHeader }}
{{ faq.question }}
{{ faqObject.secondHeader }}
{{ faq.question }}
{{ faq.question }}
` , data(){ return { } }, props: { faqObject: { type: Object, required: true } }, computed: { firstColumnOfFirst() { let faqObjectFiltered = [] this.faqObject.first.forEach((x,index) => { if (index <= 5) { faqObjectFiltered.push(x) } }) return faqObjectFiltered }, firstColumnOfSecond() { let faqObjectFiltered = [] this.faqObject.second.forEach((x,index) => { if (index <= 5) { faqObjectFiltered.push(x) } }) return faqObjectFiltered }, secondColumnOfSecond() { let faqObjectFiltered = [] this.faqObject.second.forEach((x,index) => { if (index > 5 && index <= 11) { faqObjectFiltered.push(x) } }) return faqObjectFiltered } } } app.component('faq-list', objFaqList); const objFaqAccordionsCard = { template: `
{{ header }}
{{ faq.question }}

{{ faq.answer }}

{{ answerItem.heading }}

  • {{ item }}
` , data(){ return { } }, props: { header: { type: String, required: true }, icon: { type: String, required: true }, faqArray: { type: Array, required: true } }, methods: { getAccordionRowStyle(index) { if (index % 2 == 0) return { backgroundColor: '#f1f1f1' } else return { backgroundColor: '#fff' } }, toggleAccordion(index) { let expansionEl = document.getElementById(`${this.$root.trimString(this.header)}-expansion-${index}`) let iconEl = document.getElementById(`${this.$root.trimString(this.header)}-icon-${index}`) if (!expansionEl.classList.contains('expanded')) this.expandAccordion(expansionEl, iconEl, index) else this.collapseAccordion(expansionEl, iconEl, index) }, expandAccordion(expansionEl, iconEl, index) { let expansions = [...document.querySelectorAll('.accordion-answer')] expansions.forEach(expansion => { expansion.classList.remove('expanded') }) let icons = [...document.querySelectorAll('.accordion-icon')] icons.forEach(icon => { icon.classList.remove('rotate-down') }) iconEl.classList.add('rotate-down') expansionEl.classList.add('expanded') }, collapseAccordion(expansionEl, iconEl, index) { iconEl.classList.remove('rotate-down') expansionEl.classList.remove('expanded') } } } app.component('faq-accordions-card', objFaqAccordionsCard); const objFaqAccordionsContainer = { template: `
` , data(){ return { } }, props: { faqObject: { type: Object, required: true } } } app.component('faq-accordions-container', objFaqAccordionsContainer); const objGlobalBanner = { template: `
` , data(){ return { } } } app.component('global-banner', objGlobalBanner); const objGlobalChatlio = { template: `

Support

Enter your information to start a live chat

` , data(){ return { showingForm: false, showingChatlio: true, chalioButton: "block", lastScrollPosition: 0, initialized: false, contact: { fullName: "", email: "" } } }, mounted(){ let vm = this; if(document.querySelector("chatlio-open") != null){ vm.showingChatlio = true; }else{ setTimeout(function(){ vm.showingChatlio = false; }, 1500); } document.addEventListener("chatlio.visibilityChange", function(event){ if(event.data.visibility == "closed"){ vm.showingChatlio = false; }else{ vm.showingForm = false; vm.showingChatlio = true; } }); document.addEventListener("chatlio.expanded", function(event){ vm.showingForm = false; vm.showingChatlio = true; }); document.addEventListener("chatlio.collapsed", function(event){ vm.showingChatlio = false; }); window.addEventListener('scroll', this.onScroll); }, computed:{ chatlioScrollShow(){ return this.chalioButton } }, beforeDestroy() { window.removeEventListener('scroll', this.onScroll) }, methods: { submit(){ this.initialized = true; this.showingForm = false; this.showingChatlio = true; _chatlio.show({expanded: true}); _chatlio.identify(this.contact.fullName, this.contact); _chatlio.send("I need help."); }, showForm(){ if(this.initialized){ _chatlio.show({expanded: true}); return; } if(this.showingForm) { document.getElementById('chalioBtn').style.boxShadow = 'none' }else { document.getElementById('chalioBtn').style.boxShadow = '0 0 0 0.25rem rgb(248 200 66 / 50%)' } this.showingForm = !this.showingForm }, onScroll () { const currentScrollPosition = window.pageYOffset || document.documentElement.scrollTop if (currentScrollPosition < 0) { return } } } } app.component('global-chatlio', objGlobalChatlio); const objGlobalFooter = { template: `` , } app.component('global-footer', objGlobalFooter); const objGlobalNavbar = { template: `
` , data(){ return { } } } app.component('global-navbar', objGlobalNavbar); const objLandingHousebanner = { template: `
` , data(){ return { } } } app.component('landing-housebanner', objLandingHousebanner); const objLandingIntro = { template: `
Marketing with a presence
Become the marketing expert in your community. Join Listing Power Tools for just $399 per month.
` , data(){ return { } } } app.component('landing-intro', objLandingIntro); const objLandingAddonsContainer = { template: `
In addition to our Classic Listing Package,
we also offer add-ons
Direct Mail
Digital Advertising
Express Power Pack
Prospecting Power Pack
Follow-Up Power Mail
` , data(){ return { selectedTabWatcher: 0, // trick computed into updating optionsWatcher: 0 // trick computed into updating } }, computed: { selectedTab() { let selectedTabWatcher = this.selectedTabWatcher // trick computed into updating if (document.querySelector('.selected-addon-tab')) { return document.querySelector('.selected-addon-tab').innerText } else return '' }, tabNames() { let optionsWatcher = this.optionsWatcher // trick computed into updating let options = [...document.querySelectorAll('.addon-tab-option')] if (options.length > 0) { let optionNames = options.map((option) => { return option.innerText }) return optionNames } else return [] } }, methods: { selectTab(event) { this.selectedTabWatcher++ // trick computed into updating document.querySelector('.selected-addon-tab').classList.remove('selected-addon-tab') event.target.classList.add('selected-addon-tab') } }, mounted() { this.selectedTabWatcher++ // trick computed into updating this.optionsWatcher++ // trick computed into updating } } app.component('landing-addons-container', objLandingAddonsContainer); const objLandingAddonsTabcontent = { template: `
` , data(){ return { } } } app.component('landing-addons-tabcontent', objLandingAddonsTabcontent); const objLandingPackagefeaturesCard = { template: `
` , data(){ return { } }, props: { image: { type: String, required: true }, color: { type: String, required: true }, imageRight: { type: Boolean, required: false, default: false } }, computed: { myColor() { return { backgroundColor: this.color } }, imgStyle() { if (this.imageRight) { return { background: `url(${this.image}) right top no-repeat` } } else { return { background: `url(${this.image}) left top no-repeat` } } }, cardStyle() { if (this.imageRight) { return { marginRight: 'auto' } } else { return { marginLeft: 'auto' } } } } } app.component('landing-packagefeatures-card', objLandingPackagefeaturesCard); const objLandingPackagefeaturesContainer = { template: `






` , data(){ return { } } } app.component('landing-packagefeatures-container', objLandingPackagefeaturesContainer); const objLandingPackagesCard = { template: `
{{ packageObj.header }}
{{ packageObj.body }}
` , data(){ return { } }, props: { packageObj: { type: Object, required: true } }, computed: { myColor() { return { backgroundColor: this.packageObj.color } } } } app.component('landing-packages-card', objLandingPackagesCard); const objLandingPackagesContainer = { template: `
Your membership includes up to 2 Classic Listing Packages each month
Our Classic Listing Package includes:
` , data(){ return { packages: [ { color: '#ffbe00', image: './assets/images/Package_PrintMarketing.png', header: 'Print Marketing', body: 'Put the time-tested and proven reliability of print marketing to work for your real estate business. With Listing Power Tools, you\'ll have access to our signature Classic Power Packs, each offering a collection of unique, high-quality printed materials exclusively featuring the home you are selling.', }, { color: '#ef5552', image: './assets/images/Package_DigitalMarketing.png', header: 'Digital Marketing', body: 'Professionally designed digital ads available for download on each listing. Even those in the market for a new home don\'t spend all their time online on real estate portals. To effectively reach all potential buyers, post your listing on social media platforms, targeting buyers where they spend their time online.', }, { color: '#455b64', image: './assets/images/Package_DirectMailMarketing.png', header: 'Direct Mail Marketing', body: 'Direct mail marketing has been proven to be one of the easiest and most effective ways of generating awareness and interest in real estate listings. Just add a stamp and target potential buyers with a high-gloss, full-color postcard.', } ] } } } app.component('landing-packages-container', objLandingPackagesContainer); const objLayouts404 = { template: `

Looks like you are lost. Check URL again.

` , data(){ return { } }, methods: { buildMetaData() { // build meta title let title = `Page Not Found` // build meta description let desc = `404 Not Found` // update meta data this.$root.updateSiteMetaData(title, desc, '', '', '') } }, created() { // this.buildMetaData() } } app.component('layouts-404', objLayouts404); const objLayoutsContact = { template: `
` , data(){ return { } }, methods: { buildMetaData() { // update meta data this.$root.updateSiteMetaData('Contact', 'Description', '', '', '') } }, created() { // this.buildMetaData() } } app.component('layouts-contact', objLayoutsContact); const objLayoutsFaq = { template: `
` , data(){ return { faqObject: { firstHeader: 'Popular general questions', firstIcon: './assets/images/star.svg', first: [ { question: 'What is Listing Power Tools?', answer: 'Fast, effective and affordable, Listing Power Tools is a membership-based real estate marketing solution for agents looking to stand out in their markets with property-specific print marketing, direct mail, and digital advertising. Our products and services have been designed to enhance listing presentations, increase exposure for listings, and generate buyer and seller leads for our members.' }, { question: 'How much is a membership?', answer: 'Join Listing Power Tools for just $399 a month. Your membership includes up to 2 listing packages each month.' }, { question: 'Are there options for customization?', answer: 'With a Listing Power Tools membership, you can customize your marketing materials with a unique headline and tagline. The membership also offers the option of printing your brokerage or team logo on the outside of your Power Pack box as a $5 add-on.' }, { question: 'Can I add more than the initial three property photos?', answer: 'You have the option to add up to 90 additional photos to your property-specific webpage.' }, { question: 'Do I have to be a member to order materials?', answer: 'Yes. Only active members can access their account and place orders.' }, { question: 'Is my account linked to the MLS?', answer: 'No, Listing Power Tools is not linked to any MLS.' } ], secondHeader: 'Popular product and features questions', secondIcon: './assets/images/box.svg', second: [ { question: 'What is an AR phone number?', answer: 'Your AR (auto-response) number is your account\'s lead capture line. Your AR phone number is unique to you and your account, and will be the primary lead capture mechanism for any/all orders you place with Listing Power Tools. Your AR phone number will never change as long as you\'re a member.' }, { question: 'Can I choose my own AR phone number?', answer: 'Although agents are not able to choose a custom AR number, you will be able to select your area code.' }, { question: 'What is an AR code?', answer: 'Each listing you add inside your account will receive a unique, AR (auto-response) code. Every marketing piece you order for that property will feature that listing\'s unique code, as well as your AR phone number, for efficient lead capture.' }, { question: 'What is Smart ID?', answer: 'Smart ID is an $20 add-on option for your Power Mail order. With Smart ID, each piece of mail we send includes a unique text code linked to the address that received the postcard. When an inquiry is made using the unique code, we will link those details with the mailing list and provide you with verified lead information. You will also have ability to download the mailing list used so that you can do additional follow-up.' }, { question: 'What are the quantities for each Power Pack?', answerPreserve: [ { heading: 'Classic Power Pack ($99 + shipping)', items: [ '1 - Color Sign Rider - 12 x 24', '24 - Large Flyers - 8.5 x 11', '28 - Small Flyers - 5 x 7', '42 - Door Hangers - 4 x 11', '12 - Thank You Cards - 6 x 4.5 (folded)', '16 - Postcards - 9 x 6', '24 - Folding Business Cards - 3.5 x 2', '21 - Double-Sided Business Cards - 3.5 x 2' ] }, { heading: 'Express Power Pack ($99 + shipping)', items: [ '8 - Postcards - 6 x 9', '21 - Double-Sided Business Cards 3.5 x 2', '24 - Folding Business Cards - 3.5 x 2', '24 - Small Flyers - 5 x 7', '20 - Neighborhood Reports OR', '36 - Door Hangers - 4 x 11', ] }, { heading: 'Prospecting Power Pack ($99 + shipping)', items: [ '80 - Jumbo Door Hangers - 18 x 6', '30 - Large Flyers - 8.5 x 11', '90 - Door Hangers - 4 x 11', '24 - Folding Business Cards - 3.5 x 2', '42 - Double-Sided Business Cards - 3.5 x 2', '60 - Small Flyer - 5 x7`' ] } ] }, { question: 'Can I order Power Pack items individually?', answer: 'At the moment, Power Pack items cannot be ordered individually.' }, { question: 'Where will my Power Pack be shipped to?', answer: 'We will ship your Power Pack to the shipping address you have entered inside your account. You can update this information at any time. There is a $4 additional shipping charge for delivery to residential addresses.' }, { question: 'How do I view a proof of my Power Pack materials before ordering?', answer: 'You will be able to review and approve the specific print items on the order page.' }, { question: 'What is the Lead Communication Platform?', answer: 'This member feature provides a direct and immediate connection to inbound leads through three customizable and automated communication options - Power Connect auto-dialer, automated text message responses, and follow-up text message campaigns.' } ] } } }, methods: { buildMetaData() { // update meta data this.$root.updateSiteMetaData('FAQ', 'Description', '', '', '') } }, created() { // this.buildMetaData() } } app.component('layouts-faq', objLayoutsFaq); const objLayoutsLanding = { template: `
` , data(){ return { } }, methods: { buildMetaData() { // update meta data this.$root.updateSiteMetaData('Landing Site', 'Description', '', '', '') } }, created() { // this.buildMetaData() } } app.component('layouts-landing', objLayoutsLanding); const objLayoutsLeadcapture = { template: `
` , data(){ return { } }, methods: { buildMetaData() { // update meta data this.$root.updateSiteMetaData('Lead Capture', 'Description', '', '', '') } }, created() { // this.buildMetaData() } } app.component('layouts-leadcapture', objLayoutsLeadcapture); const objLayoutsPresentation = { template: `
` , data(){ return { } }, methods: { buildMetaData() { // update meta data this.$root.updateSiteMetaData('Presentation', 'Description', '', '', '') } }, created() { // this.buildMetaData() } } app.component('layouts-presentation', objLayoutsPresentation); const objLayoutsTerms = { template: `

LISTING POWER TOOLS, INC. TERMS AND CONDITIONS

THE LEGAL AGREEMENTS SET OUT BELOW GOVERN YOUR USE OF THE LISTING POWER TOOLS WEBSITE OR APP ("SITE OR APP"). TO AGREE TO THESE TERMS, CLICK "AGREE." IF YOU DO NOT AGREE TO THESE TERMS, DO NOT CLICK "AGREE," AND DO NOT USE THE SERVICES.

TERMS OF USE

Electronic Contracting

  • Your use of the Site or App includes the ability to enter into agreements and/or to make transactions electronically. YOU ACKNOWLEDGE THAT YOUR ELECTRONIC SUBMISSIONS CONSTITUTE YOUR AGREEMENT AND INTENT TO BE BOUND BY AND TO PAY FOR SUCH AGREEMENTS AND TRANSACTIONS. YOUR AGREEMENT AND INTENT TO BE BOUND BY ELECTRONIC SUBMISSIONS APPLIES TO ALL RECORDS RELATING TO ALL TRANSACTIONS YOU ENTER INTO ON THIS SITE, INCLUDING NOTICES OF CANCELLATION, POLICIES, CONTRACTS, AND APPLICATIONS. In order to access and retain your electronic records, you may be required to have certain hardware and software, which are your sole responsibility.

User Account

  • As a registered user of the Site or App, you must establish an account ("Account"). You are solely responsible for maintaining the confidentiality and security of your Account and for all activities that occur on or through your Account, and you agree to immediately notify Listing Power Tools (“LPT”) of any security breach of your Account. LPT shall not be responsible for any losses arising out of the unauthorized use of your Account.
  • You agree to provide accurate and complete information when you register with, and as you use, the Site or App and you agree to update your LPT Registration Data to keep it accurate and complete. You agree that LPT may store and use the LPT Registration Data you provide for use in maintaining and billing fees to your Account.

System Requirements

  • For full optimization of the Site or App, it is your responsibility to ensure your system or devise has the following minimum requirements:
    1. For PC users Windows 7 or higher; for Mac users OS X version 10 or greater.
    2. Internet Explorer 8
    3. Chrome 40.0 version 1/20/2015
    4. Java Script must be enabled

Acceptable Use

  • By accessing, browsing or using this Site or the App, you acknowledge that you have read, understood and agreed to be bound by these Terms of Use (these “Terms”). If you do not agree to these Terms, you should not use or access this Site or the App. LPT reserves the right to revise these Terms at any time. You are encouraged to review these Terms each time you use the Site or the App because your use of the Site or the App after the posting of changes will constitute your acceptance of the changes.
  • You may use the Site and the App only for your personal or professional use and in compliance with these Terms. You are responsible for your own communications, including the transmission, uploading or posting of information to the Site or the App and are responsible for the consequences of such communications. Any other use of the Site or the App is prohibited. You may not otherwise copy, modify, or distribute the contents of this Site or the App. You may not modify, publish, transmit, participate in the transfer of, sell, create derivative works from, or in any way exploit any of the content found on the Site or the App, in whole or in part.
  • You agree that only one user per account is permitted. Use of the Site or App by any other person other than the registered account user is strictly prohibited. All content, picture(s), or information uploaded or inputted into the Site or App must pertain to properties in which the account user is the duly authorized listing agent for that property.
  • You agree that the Site or App and certain LPT Products limits your use of LPT Products and that, whether or not LPT Products are limited by security technology, you shall use the Site, the APP, and LPT Products in compliance with the applicable usage rules established by LPT and its licensors, and that any other use of the LPT Products and/or Site or App may constitute a copyright infringement. You agree not to violate, circumvent, reverse-engineer, decompile, disassemble, or otherwise tamper with the Site or APP.
  • LPT strives to make our site a safe and trusted place. Interference or attempted interference with the Site or App, site operations, or policies is prohibited. This includes attempts to purposely circumvent LPT’s policies, or the way the Site or App functions. These kinds of activities can undermine trust and negatively affect LPT.
  • Any attempt to manipulate our site or policies may result in action against your account.
  • Failure to abide by LPT's terms may result in termination of services and civil or criminal liability.

MONTHLY SUBSCRIPTION FEES

Automatic Renewal

  • By purchasing a Monthly Subscription, you acknowledge that your subscription has an initial and recurring payment feature and you accept responsibility for all recurring charges prior to cancellation. Your subscription will be automatically extended for successive monthly periods and your payment method will automatically be charged for each successive monthly period at the then-current subscription rate. To cancel your Monthly Subscription at any time, you must follow the cancellation procedures stated below. LPT may submit periodic charges (e.g., monthly) without further authorization from you, until you provide prior notice that you have terminated this authorization or wish to change your payment method. Such notice will not affect charges submitted before LPT reasonably could act.

Suspension of Account

  • In the event the credit card on file is declined for any reason, you must provide an alternate credit card within 15 days. If your account remains delinquent for a period greater than 15 days, your account shall be suspended and all access to your account will be denied until your account is paid in full.

Non-Refundable

  • All subscription fees are non-refundable.

TERMINATION OF SERVICES

Cancellation of Services by Customer

  • Cancellations shall be made via telephone. In the event a cancellation occurs prior to the expiration of the month, subscriptions fees will not be pro rated nor refunded.

Reinstatement Fee

  1. In the event Cancellation of services occurs, a reinstatement fee of $250.00 shall be required to resume services.

Termination by LPT

  • If you fail, or LPT suspects that you have failed, to comply with any of the provisions of this Agreement, LPT, at its sole discretion, without notice to you may: (i) terminate this Agreement and/or your Account, and you will remain liable for all amounts due under your Account up to and including the date of termination; and/or (ii) terminate the license to the software; and/or (iii) preclude access to the Site or App (or any part thereof).
  • LPT reserves the right to modify, suspend, or discontinue the Site or App (or any part or content thereof) at any time with or without notice to you, and LPT will not be liable to you or to any third party should it exercise such rights.

CONTRIBUTED CONTENT

  • By submitting or posting any materials or content on the Site or the App, you grant LPT a perpetual, irrevocable, non-terminable, worldwide, royalty-free and non-exclusive license to use, copy, distribute, publicly display, modify, create derivative works, and sublicense such materials or any part of such materials. You hereby represent, warrant and covenant that any materials you provide do not include anything (including, but not limited to, text, images, property identifying information or video) to which you do not have the full right to grant LPT the license specified above. You further represent, warrant and covenant that any materials you provide will not contain libelous or otherwise unlawful, abusive or obscene material. LPT will be entitled to use any content submitted by you without incurring obligations of confidentiality, attribution or compensation to you.
  • All contributed content is subject to the terms set forth in this agreement.

INTELLECTUAL PROPERTY

  • You agree that the Site or App, including but not limited to LPT Products, graphics, user interface, audio clips, video clips, editorial content, and the scripts and software used to implement the Site or App, contains proprietary information and material that is owned by LPT and/or its licensors, and is protected by applicable intellectual property and other laws, including but not limited to copyright. You agree that you will not use such proprietary information or materials in any way whatsoever except for use of the Site or App in compliance with this Agreement. No portion of the Site, APP and Products may be reproduced in any form or by any means, except as expressly permitted in these terms. You agree not to modify, rent, lease, loan, sell, distribute, or create derivative works based on the Site or App in any manner, and you shall not exploit the Site or App in any unauthorized way whatsoever, including, but not limited to, by trespass or burdening network capacity.
  • THE USE OF THE SOFTWARE OR ANY PART OF THE SITE OR APP AND PRODUCTS, EXCEPT FOR USE OF THE SITE OR APP AS PERMITTED IN THIS AGREEMENT, IS STRICTLY PROHIBITED AND INFRINGES ON THE INTELLECTUAL PROPERTY RIGHTS OF OTHERS AND MAY SUBJECT YOU TO CIVIL AND CRIMINAL PENALTIES, INCLUDING POSSIBLE MONETARY DAMAGES, FOR COPYRIGHT INFRINGEMENT.
  • LPT, the LPT logo, and other LPT trademarks, service marks, graphics, and logos used in connection with the Site or App are trademarks or registered trademarks of LISTING POWER TOOLS, Inc. in the U.S. and/or other countries. Other trademarks, service marks, graphics, and logos used in connection with the Site or App may be the trademarks of their respective owners. You are granted no right or license with respect to any of the aforesaid trademarks and any use of such trademarks.

WARRANTIES

  • LPT SHALL USE REASONABLE EFFORTS TO PROTECT INFORMATION SUBMITTED BY YOU IN CONNECTION WITH LPT SERVICE, BUT YOU AGREE THAT YOUR SUBMISSION OF SUCH INFORMATION IS AT YOUR SOLE RISK, AND LPT HEREBY DISCLAIMS ANY AND ALL LIABILITY TO YOU FOR ANY LOSS OR LIABILITY RELATING TO SUCH INFORMATION IN ANY WAY.

GENERAL DISCLAIMERS

  • You assume all responsibility and risk with respect to your use of the Site or the App. THE SITE, THE APP, AND ALL CONTENT, PRODUCTS, AND OTHER INFORMATION ON OR ACCESSIBLE FROM OR THROUGH THIS SITE OR THE APP OR A “LINKED” SITE ARE PROVIDED ON AN “AS IS” AND “AS AVAILABLE” BASIS WITHOUT WARRANTY OF ANY KIND, EITHER EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE IMPLIED WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE, NON-INFRINGEMENT, SECURITY OR ACCURACY. SPECIFICALLY, BUT WITHOUT LIMITATION, LPT DOES NOT WARRANT THAT: (1) THE INFORMATION ON THIS SITE OR THE APP IS CORRECT, ACCURATE OR RELIABLE; (2) THE FUNCTIONS CONTAINED ON THIS SITE OR THE APP WILL BE UNINTERRUPTED OR ERROR-FREE; OR (3) DEFECTS WILL BE CORRECTED, OR THAT THIS SITE OR THE APP OR THE SERVER THAT MAKE THEM AVAILABLE IS FREE OF VIRUSES OR OTHER HARMFUL COMPONENTS. LPT makes no warranties of any kind regarding any non-LPT sites to which you may be directed or hyperlinked from this Site or the App. Hyperlinks are included solely for your convenience, and LPT makes no representations or warranties with regard to the accuracy, availability, suitability or safety of information provided in such non-LPT sites. LPT does not endorse, warrant or guarantee any products or services offered or provided by or on behalf of third parties on the Site or the App.
  • LPT DOES NOT WARRANT COMPLIANCE WITH INDUSTRY STANDARDS THAT MAY BE APPLICABLE TO YOU.
  • LPT DOES NOT REVIEW ANY INPUTTED DATA ENTERED INTO THE SITE OR APP FOR ACCURACY, INCLUDING BUT NOT LIMITED TO TYPOGRAPHICAL ERRORS.
  • You assume all responsibility and risk with respect to any leads obtained from LPT, including the responsibility to review all phone numbers and/or addresses to ensure compliance with the Federal Trade Commission’s Do Not Call Registry.
  • YOU AGREE, TO THE EXTENT PERMITTED BY LAW, TO INDEMNIFY AND HOLD LPT, ITS DIRECTORS, OFFICERS, EMPLOYEES, AFFILIATES, AGENTS, CONTRACTORS, AND LICENSORS HARMLESS WITH RESPECT TO ANY CLAIMS ARISING OUT OF YOUR FAILURE TO COMPLY WITH THE FEDERAL TRADE COMMISSION, OR ANY ACTION TAKEN AGAINST LPT RELATING TO YOUR USE OF ANY LEADS.
  • USER UNDERSTANDS AND AGREES THAT LEADS SOLD TO USER MAY BE OBTAINED BY LPT FROM A THIRD PARTY. USER FURTHER UNDERSTANDS AND AGREES THAT LPT DOES NOT REVIEW ANY LEADS SOLD TO USER FOR COMPLIANCE WITH THE FEDERAL TRADE COMMISSION AND THE DO NOT CALL REGISTRY.
  • YOU AGREE, TO THE EXTENT PERMITTED BY LAW, TO INDEMNIFY AND HOLD LPT, ITS DIRECTORS, OFFICERS, EMPLOYEES, AFFILIATES, AGENTS, CONTRACTORS, AND LICENSORS HARMLESS WITH RESPECT TO ANY CLAIMS ARISING OUT OF YOUR FAILURE TO COMPLY WITH THE FEDERAL TRADE COMMISSION, OR ANY ACTION TAKEN AGAINST LPT RELATING TO YOUR USE OF ANY LEADS.

RISK OF LOSS

  • All Products will be available for pickup or will be shipped by LPT to the delivery address listed on your account. Delivery of Products shall be made using FedEx.
  • Deliveries shall only be made within the US, excluding Alaska, Hawaii, Puerto Rico, and United States territories.
  • Any products purchased from our Site or the App will be shipped by a third party carrier. As a result, title and risk of loss for such merchandise will pass to you upon our delivery to the carrier.

USER WARRANTIES

Authorized Use of Content

  • User warrants he/she is the owner of the content provided to LPT or has received proper authorization from any third party owner to use content, including but not limited to any pictures, videos, data and property identifying information.

Compliance with Industry Standards

  • USER WARRANTS HE/SHE IS SOLELY RESPONSIBLE FOR COMPLIANCE WITH ANY DO NOT CALL REQUIREMENTS IMPOSED BY THE FEDERAL TRADE COMMISSION. FURTHERMORE, USER UNDERSTANDS AND WARRANTS THAT ANY TELEPHONE NUMBERS AND ADDRESSES SOLD OR OBTAINED FROM LPT WILL BE REVIEWED BY USER PRIOR TO USE, TO DETERMINE IF TELEPHONE NUMBERS AND/OR ADDRESSES APPEAR ON THE FEDERAL TRADE COMMISSION’S DO NOT CALL REGISTRY.
  • YOU AGREE, TO THE EXTENT PERMITTED BY LAW, TO INDEMNIFY AND HOLD LPT, ITS DIRECTORS, OFFICERS, EMPLOYEES, AFFILIATES, AGENTS, CONTRACTORS, AND LICENSORS HARMLESS WITH RESPECT TO ANY CLAIMS ARISING OUT OF YOUR FAILURE TO COMPLY WITH THE FEDERAL TRADE COMMISSION, OR ANY ACTION TAKEN AGAINST LPT RELATING TO YOUR USE OF ANY LEADS.
  • USER SHALL BE RESPONSIBLE FOR PROVIDING LPT ANY REQUIRED DISCLOSURES TO BE INCLUDED IN ANY PRODUCTS, INCLUDING BUT NOT LIMITED TO BROKER INFORMATION AND PROPERTY INFORMATION.
  • YOU AGREE, TO THE EXTENT PERMITTED BY LAW, TO INDEMNIFY AND HOLD LPT, ITS DIRECTORS, OFFICERS, EMPLOYEES, AFFILIATES, AGENTS, CONTRACTORS, AND LICENSORS HARMLESS WITH RESPECT TO ANY CLAIMS ARISING OUT OF YOUR FAILURE TO COMPLY WITH THE FEDERAL TRADE COMMISSION, OR ANY ACTION TAKEN AGAINST LPT RELATING TO YOUR USE OF ANY LEADS.

TAXES

  • Your total price will include the price of the product plus any applicable sales tax; such state and local sales tax is based on the shipping address and the sales tax rate in effect at the time you purchase the product. LPT will charge tax only in states where the goods sold over the internet are taxable.

LIMITATION OF LIABILTY

  • IN NO EVENT SHALL LPT, ITS PARENT COMPANY, SUBSIDIARIES, AFFILIATES OR ANY OF THEIR RESPECTIVE OFFICERS, DIRECTORS, EMPLOYEES, AGENTS, SUCCESSORS, SUBSIDIARIES, SUPPLIERS, AFFILIATES, OR THIRD PARTIES PROVIDING INFORMATION ON THIS SITE OR THE APP BE LIABLE TO ANY USER OF THE SITE OR THE APP OR ANY OTHER PERSON OR ENTITY FOR ANY DIRECT, INDIRECT, SPECIAL, INCIDENTAL, PUNITIVE, CONSEQUENTIAL OR EXEMPLARY DAMAGES (INCLUDING, BUT NOT LIMITED TO, DAMAGES FOR LOSS OF PROFITS, LOSS OF DATA, OR LOSS OF USE) ARISING OUT OF THE USE OR INABILITY TO USE THE SITE OR THE APP, WHETHER BASED UPON WARRANTY, CONTRACT, TORT, OR OTHERWISE, EVEN IF LPT HAS BEEN ADVISED OF OR SHOULD HAVE KNOWN OF THE POSSIBILITY OF SUCH DAMAGES OR LOSSES. IN NO EVENT SHALL THE TOTAL LIABILITY OF LPT, ITS AFFILIATES OR ANY OF THEIR RESPECTIVE OFFICERS, DIRECTORS, EMPLOYEES, AGENTS, SUCCESSORS, SUBSIDIARIES, SUPPLIERS, AFFILIATES OR THIRD PARTIES PROVIDING INFORMATION ON THIS SITE OR THE APP TO YOU FOR ALL DAMAGES, LOSSES, AND CAUSES OF ACTION RESULTING FROM YOUR USE OF THIS SITE OR THE APP, WHETHER IN CONTRACT, TORT (INCLUDING, BUT NOT LIMITED TO, NEGLIGENCE) OR OTHERWISE, EXCEED THE AMOUNT YOU PAID TO LPT IN CONNECTION WITH THE EVENT GIVING RISE TO SUCH LIABILITY. You hereby acknowledge that the preceding paragraph shall apply to all content, merchandise and services available through the Site or the App. Because some states do not allow limitations on implied warranties or the exclusion or limitation of certain damages, all of the above disclaimers or exclusions may not apply to all users.

INDEMNIFICATION

  • BY USING THE SITE OR APP, YOU AGREE, TO THE EXTENT PERMITTED BY LAW, TO INDEMNIFY AND HOLD LPT, ITS DIRECTORS, OFFICERS, EMPLOYEES, AFFILIATES, AGENTS, CONTRACTORS, AND LICENSORS HARMLESS WITH RESPECT TO ANY CLAIMS ARISING OUT OF YOUR BREACH OF THIS AGREEMENT, YOUR USE OF THE LPT SERVICE, OR ANY ACTION TAKEN BY LPT AS PART OF ITS INVESTIGATION OF A SUSPECTED VIOLATION OF THIS AGREEMENT OR AS A RESULT OF ITS FINDING OR DECISION THAT A VIOLATION OF THIS AGREEMENT HAS OCCURRED. THIS MEANS THAT YOU CANNOT SUE OR RECOVER ANY DAMAGES FROM LPT, ITS DIRECTORS, OFFICERS, EMPLOYEES, AFFILIATES, AGENTS, CONTRACTORS, AND LICENSORS AS A RESULT OF ITS DECISION TO REMOVE OR REFUSE TO PROCESS ANY INFORMATION OR CONTENT, TO WARN YOU, TO SUSPEND OR TERMINATE YOUR ACCESS TO THE LPT SERVICE, OR TO TAKE ANY OTHER ACTION DURING THE INVESTIGATION OF A SUSPECTED VIOLATION OR AS A RESULT OF LPT’S CONCLUSION THAT A VIOLATION OF THIS AGREEMENT HAS OCCURRED. THIS WAIVER AND INDEMNITY PROVISION APPLIES TO ALL VIOLATIONS DESCRIBED IN OR CONTEMPLATED BY THIS TERMS AND CONDITIONS /AGREEMENT.
  • LPT reserves the right at any time to modify this Agreement and to impose new or additional terms or conditions on your use of the Site or App. Such modifications and additional terms and conditions will be effective immediately and incorporated into this Agreement. Your continued use of the Site or App will be deemed acceptance thereof.

SEVERABILITY

  • If any part of these Terms shall be held or declared to be invalid or unenforceable for any reason by any court of competent jurisdiction, such provision shall be ineffective but shall not affect any other part of these Terms, and in such event, such provision shall be changed and interpreted so as to best accomplish the objectives of such unenforceable or invalid provision within the limits of applicable law or applicable court decisions.

WAIVER; REMEDIES

  • The failure of LPT to partially or fully exercise any rights or the waiver of LPT of any breach of these Terms and Conditions by you shall not prevent a subsequent exercise of such right by LPT or be deemed a waiver by LPT of any subsequent breach by you of the same or any other term of these Terms. The rights and remedies of LPT under these Terms and any other applicable agreement between you and LPT shall be cumulative, and the exercise of any such right or remedy shall not limit LPT’S right to exercise any other right or remedy.

GOVERNING LAW

  • The laws of the State of Florida shall govern these Terms without regard to conflict of laws provisions.

DISPUTES

  • Any dispute relating in any way to your visit to, or use of, the Site or the App, to the products you purchase through the Site or the App (including a subscription), or to your relationship to LPT shall be submitted to confidential arbitration in Orlando, Florida; provided, however, that to the extent that you have in any manner violated or threatened to violate our intellectual property rights, we may seek injunctive or other appropriate relief in any state or federal court in the State of Florida. You hereby consent to, and waive all defenses of lack of personal jurisdiction and forum non conveniens with respect to, venue and jurisdiction in the state and federal courts of Florida. Arbitration under these Terms will be conducted pursuant to the Commercial Arbitration Rules then prevailing at the American Arbitration Association. The arbitrator's award will be final and binding and may be entered into as a judgment in any court of competent jurisdiction. To the fullest extent permitted by applicable law, no arbitration under these Terms will be joined to an arbitration involving any other party subject to this Terms, whether through class action proceedings or otherwise. You agree that regardless of any statute or law to the contrary, any claim or cause of action arising out of, related to or connected with the use of this Site or the App or these Terms must be filed within one (1) year after such claim of action arose or be forever banned.
` , data() { return {} }, methods: { buildMetaData() { // update meta data this.$root.updateSiteMetaData('Terms', 'Description', '', '', '') } }, created() { // this.buildMetaData() } } app.component('layouts-terms', objLayoutsTerms); const objLeadcaptureFeaturestable = { template: `
Advanced Text Lead Capture Technology
Never Lose Another Lead with Smart Text Message Capture
See below how lesser services stack up!
Never miss another lead
with Listing Power Tools
Automated text response
Personal text-enabled phone line
Never miss a lead technology
No orphaned leads
Unique listing code
Text-to-Speech callbacks
One-step CTAs for increased response rate
` , data() { return { } } } app.component('leadcapture-featurestable', objLeadcaptureFeaturestable); const objLeadcaptureIntro = { template: `
Lead Capture Technology
for Real Estate Agents
For agents trying to make it in the highly competitive real estate world, every single lead matters. With a dedicated phone line and a built-in text message lead capture system, Listing Power Tools ensures you never lose another lead to shared line or autocorrect. You can even choose a local area code for your lead line, showing potential clients you're an agent who knows the neighborhood and the market.
Learn More
` , data(){ return { } } } app.component('leadcapture-intro', objLeadcaptureIntro); const objLeadcaptureTextcapture = { template: `
Never lose another lead with Text-Capture 2.0.
Dedicated phone line and text message integration for your Real Estate marketing.
{{ textCaptureFeature.title }}
` , data(){ return { textCaptureFeatures: [ { title: 'Text Capture 2.0', content: 'With outdated systems errors are inevitable. With outdated text capture technology, even the smallest mistakes (ex. using the wrong code) will cost you leads. Listing Power Tools’ Text Capture 2.0 technology was designed to record your leads’ information no matter what. If a prospect texts in the wrong code or sends the wrong message, our system will still capture their contact details and add them to your lead database.', image: './assets/images/phones.png' }, { title: 'Dedicated Phone Line', content: 'No more shared lines. With your own dedicated, text-enabled phone number, you’ll get an instant notification for every interested prospect. And, with unique codes for each of your listings, you’ll know which property your lead is inquiring about.', image: './assets/images/MaskGroup946.png' }, { title: 'Auto Response', content: 'With Listing Power Tool’s integrated text capture technology, all interested buyers have to do to receive more information on your listing is text a four-digit code. They’ll get an automatic text response in just seconds leading them to your listing’s dedicated property website.', image: './assets/images/Group4048.png' }, { title: 'Dedicated Property Website', subtitle: 'Give Interested Buyers the Information They’re Looking For', content: 'As a Listing Power Tools member, each of your listings will have its own dedicated website. Whether texting the code on your print marketing pieces or clicking on a digital ad, leads will be instantly directed to your landing page, exclusively featuring the listing that buyer is interested in.', image: './assets/images/dedicatedpropetywebsite.png' } ], selectedFeature: { title: 'Text Capture 2.0', content: 'With outdated systems errors are inevitable. With outdated text capture technology, even the smallest mistakes (ex. using the wrong code) will cost you leads. Listing Power Tools’ Text Capture 2.0 technology was designed to record your leads’ information no matter what. If a prospect texts in the wrong code or sends the wrong message, our system will still capture their contact details and add them to your lead database.', image: './assets/images/phones.png' } } }, methods: { updateSelected (selectedItem, event) { this.selectedFeature = selectedItem; document.querySelector('.selected-addon-tab').classList.remove('selected-addon-tab') event.target.classList.add('selected-addon-tab') } } } app.component('leadcapture-textcapture', objLeadcaptureTextcapture); const objLeadcaptureTextcapturefeature = { template: `
{{ feature.subtitle }}
{{ feature.title }}
{{ feature.content }}
` , props: { feature: { type: Object, required: true, default: {} } }, mounted(){ } } app.component('leadcapture-textcapturefeature', objLeadcaptureTextcapturefeature); const objMobileContactForm = { template: `
Contact Listing Power Tools
Full name
Email address
Phone number
Are you currently a member?
Message
{{ message }}
` , data(){ return { form: { name: '', email: '', phone: '', member: false, message: '' }, submittingForm: false, showingMessage: false, messageColor: { 'text-danger': true }, message: '' } }, methods: { async submitContact(event) { event.preventDefault() if (this.validateForm()) { this.submittingForm = true const response = await fetch(`api/backend.cfc?method=contactLPT`, { method: 'POST', body: JSON.stringify(this.form) }) let data = await response.json() if (data.success === true) { this.messageColor = { 'text-success': true } this.submittingForm = false this.message = 'Thank you! Your information has been received.' this.showingMessage = true setTimeout(() => { this.showingMessage = false }, 5000) this.clearForm() }else { this.messageColor = { 'text-danger': true } this.submittingForm = false this.message = 'Failed to send communincation please try again.' this.showingMessage = true setTimeout(() => { this.showingMessage = false }, 5000) } } }, validateForm() { if ( this.form.name !== '' && this.form.email !== '' && this.form.phone !== '' && this.form.message !== '' ) { return true } else return false }, clearForm() { this.form.name = '' this.form.email = '' this.form.phone = '' this.form.member = false this.form.message = '' }, maskPhone() { let unmaskedValue = this.form.phone let maskedValue = unmaskedValue let x = unmaskedValue.replace(/\D/g, '').match(/(\d{0,3})(\d{0,3})(\d{0,4})/) maskedValue = !x[2] ? x[1] : x[1] + '-' + x[2] + (x[3] ? '-' + x[3] : '') this.form.phone = maskedValue } } } app.component('mobile-contact-form', objMobileContactForm); const objMobileContactInfo = { template: `

Get in touch

The Listing Power Tools team is a dedicated group of marketing professionals whose goal is to empower real estate agents with affordable, all-in-one marketing solutions. Our dynamic team is made up of real estate marketing specialists and service-driven staff, ensuring our members have access to the most advanced and effective features and dedicated support.

Office

2884 S Orlando Dr

Sanford, FL

Live chat

Monday-Friday 8am to 6pm

Phone

Monday-Friday 8am to 6pm

855-208-9097

` , data(){ return { } } } app.component('mobile-contact-info', objMobileContactInfo); const objMobileFaqBanner = { template: `

Frequently Asked Questions

` , data(){ return { searchString: '' } }, props: { faqObject: { type: Object, required: true } }, computed: { searchData() { let searchStringsQuestions = [] let searchStringsAnswers = [] this.faqObject.first.forEach(obj => { searchStringsQuestions.push(obj.question) if (obj.answer) searchStringsAnswers.push(obj.answer) else if (obj.answerPreserve) searchStringsAnswers.push(obj.answerPreserve) }) this.faqObject.second.forEach(obj => { searchStringsQuestions.push(obj.question) if (obj.answer) searchStringsAnswers.push(obj.answer) else if (obj.answerPreserve) searchStringsAnswers.push(obj.answerPreserve) }) return [...searchStringsQuestions, ...searchStringsAnswers] } }, methods: { checkStrings(string) { return this.searchData.some(x => x == string) }, clickDataList(string) { let found = false this.faqObject.first.forEach((obj,index) => { if (!found && obj.question == string || obj.answer == string || obj.answerPreserve == string) { this.$root.toggleFAQAccordion(this.faqObject.firstHeader, index) this.searchString = '' found = true } }) if (!found) { this.faqObject.second.forEach((obj,index) => { if (!found && obj.question == string || obj.answer == string || obj.answerPreserve == string) { this.$root.toggleFAQAccordion(this.faqObject.secondHeader, index) this.searchString = '' found = true } }) } } }, watch: { searchString: { handler (newString, oldString) { let stringExists = this.checkStrings(newString) if (stringExists && oldString !== newString) { this.clickDataList(newString) } } } } } app.component('mobile-faq-banner', objMobileFaqBanner); const objMobileFaqAccordionsCard = { template: `

{{ header }}

{{ faq.question }}

{{ faq.answer }}

{{ answerItem.heading }}

  • {{ item }}
` , data(){ return { } }, props: { header: { type: String, required: true }, icon: { type: String, required: true }, faqArray: { type: Array, required: true } }, methods: { getAccordionRowStyle(index) { if (index % 2 == 0) return { backgroundColor: '#f1f1f1' } else return { backgroundColor: '#fff' } }, toggleAccordion(index) { let expansionEl = document.getElementById(`${this.$root.trimString(this.header)}-expansion-${index}`) let iconEl = document.getElementById(`${this.$root.trimString(this.header)}-icon-${index}`) if (!expansionEl.classList.contains('expanded')) this.expandAccordion(expansionEl, iconEl, index) else this.collapseAccordion(expansionEl, iconEl, index) }, expandAccordion(expansionEl, iconEl, index) { let expansions = [...document.querySelectorAll('.accordion-answer')] expansions.forEach(expansion => { expansion.classList.remove('expanded') }) let icons = [...document.querySelectorAll('.accordion-icon')] icons.forEach(icon => { icon.classList.remove('rotate-down') }) iconEl.classList.add('rotate-down') expansionEl.classList.add('expanded') }, collapseAccordion(expansionEl, iconEl, index) { iconEl.classList.remove('rotate-down') expansionEl.classList.remove('expanded') } } } app.component('mobile-faq-accordions-card', objMobileFaqAccordionsCard); const objMobileFaqAccordionsContainer = { template: `
` , data(){ return { } }, props: { faqObject: { type: Object, required: true } } } app.component('mobile-faq-accordions-container', objMobileFaqAccordionsContainer); const objMobileLandingAddons = { template: `

In addition to our classic listing package, we also offer

add-ons

"Done for You"

Direct Mail
$25
* Pricing varies
Done for You Direct Mail is professionally designed direct mail marketing tested by real estate agents for maximun response rates and at an unbeatable price! It's the perfect way to get your listing into the hands of buyers while showing potential sellers you aggressively market their listing! Our "Done for You" direct mail process handles the mail listing, printing, addressing, and delivery of all direct mail orders. You simply upload the images and inupt listing information, order, and we handle the rest! And we do it all at a price that can't be beat!

"Done for You"

Digital Advertising
* Pricing varies
Affordable digital marketing with a professional team on your side. Our team of digital marketing experts work to maximize your listing's exposure while keeping a close eye on your budget, ensuring you get the most eyes and quality clicks on your ad.
Express Power Pack
$99
* Shipping not included
Affordable digital marketing with a professional team on your side. Our team of digital marketing experts work to maximize your listing's exposure while keeping a close eye on your budget, ensuring you get the most eyes and quality clicks on your ad.
Prospecting Power Pack
$99
* Shipping not included
Whether you're marketing a new home for sale or building your agent brand through a "Just Sold" campaign to win new listings, our new Prospecting Power Pack offers even more ways to get noticed. Featuring over 320 of some our our most popular print materials, these packs include our small and large fliers, standard and folding business cards, and traditional and jumbo door hangers.

"Done for You"

Follow-Up Mail
* Pricing varies
Build your brand and recognition in areas where you do business and provide potential clients with the information they want most. Our Follow-Up Power Mail campaign targets residences specific to your listing area and showcases recently sold homes on a map of the neighborhood.
` , data(){ return { } } } app.component('mobile-landing-addons', objMobileLandingAddons); const objMobileLandingHousebanner = { template: `
` , data(){ return { } } } app.component('mobile-landing-housebanner', objMobileLandingHousebanner); const objMobileLandingIntro = { template: `
Marketing with a presence
Become the marketing expert in your community. Join Listing Power Tools for just $399 per month.
` , data(){ return { } } } app.component('mobile-landing-intro', objMobileLandingIntro); const objMobileLandingPackagefeaturesCard = { template: `
` , data(){ return { } }, props: { color: { type: String, required: true } }, computed: { myColor() { return { backgroundColor: this.color } } } } app.component('mobile-landing-packagefeatures-card', objMobileLandingPackagefeaturesCard); const objMobileLandingPackagefeaturesContainer = { template: `
` , data(){ return { } }, computed: { bulletGroup() { if (this.$root.windowWidth >= 450) return {'my-4':true} else return {'my-0':true} } } } app.component('mobile-landing-packagefeatures-container', objMobileLandingPackagefeaturesContainer); const objMobileLandingPackagesCard = { template: `
{{ packageObj.header }}
{{ packageObj.body }}
` , data(){ return { } }, props: { packageObj: { type: Object, required: true } }, computed: { myColor() { return { backgroundColor: this.packageObj.color } } } } app.component('mobile-landing-packages-card', objMobileLandingPackagesCard); const objMobileLandingPackagesContainer = { template: `
Your membership includes up to 2 Classic Listing Packages each month
Our classic listing package includes:
` , data(){ return { packages: [ { color: '#ffbe00', image: './assets/images/Package_PrintMarketing.png', header: 'Print Marketing', body: 'Put the time-tested and proven reliability of print marketing to work for your real estate business. With Listing Power Tools, you\'ll have access to our signature Classic Power Packs, each offering a collection of unique, high-quality printed materials exclusively featuring the home you are selling.', link: '' }, { color: '#ef5552', image: './assets/images/Package_DigitalMarketing.png', header: 'Digital Marketing', body: 'Professionally designed digital ads available for download on each listing. Even those in the market for a new home don\'t spend all their time online on real estate portals. To effectively reach all potential buyers, post your listing on social media platforms, targeting buyers where they spend their time online.', link: '' }, { color: '#455b64', image: './assets/images/Package_DirectMailMarketing.png', header: 'Direct Mail Marketing', body: 'Direct mail marketing has been proven to be one of the easiest and most effective ways of generating awareness and interest in real estate listings. Just add a stamp and target potential buyers with a high-gloss, full-color postcard.', link: '' } ] } } } app.component('mobile-landing-packages-container', objMobileLandingPackagesContainer); const objMobileLeadcaptureFeaturestable = { template: `
Never Lose
Another Lead with
Smart Text Message Capture.
All of your leads are saved in your
database regardless of any user errors.
See below how lesser services stack up!
Never miss
another lead
with
Listing Power Tools
Automated text response
Personal text-enabled phone line
Never miss a lead technology
No orphaned leads
Unique listing code
Text-to-Speech callbacks
One-step CTAs for increased response rate
` , data() { return { } } } app.component('mobile-leadcapture-featurestable', objMobileLeadcaptureFeaturestable); const objMobileLeadcaptureIntro = { template: `
Lead Capture
Technology

for Real Estate Agents
For agents trying to make it in the highly competitive real estate world, every single lead matters. With a dedicated phone line and a built-in text message lead capture system, Listing Power Tools ensures you never lose another lead to shared line or autocorrect. You can even choose a local area code for your lead line, showing potential clients you're an agent who knows the neighborhood and the market.
Learn More
` , data() { return { } } } app.component('mobile-leadcapture-intro', objMobileLeadcaptureIntro); const objMobileLeadcaptureTextcapture = { template: `
Never lose another lead with Text-Capture 2.0.
Dedicated phone line and text message integration for your Real Estate marketing.
` , data(){ return { textCaptureFeatures: [ { title: 'Text Capture 2.0', content: 'With outdated systems errors are inevitable. With outdated text capture technology, even the smallest mistakes (ex. using the wrong code) will cost you leads. Listing Power Tools’ Text Capture 2.0 technology was designed to record your leads’ information no matter what. If a prospect texts in the wrong code or sends the wrong message, our system will still capture their contact details and add them to your lead database.', image: './assets/images/phones.png', id: 1 }, { title: 'Dedicated Phone Line', content: 'No more shared lines. With your own dedicated, text-enabled phone number, you’ll get an instant notification for every interested prospect. And, with unique codes for each of your listings, you’ll know which property your lead is inquiring about.', image: './assets/images/MaskGroup946.png', id: 2 }, { title: 'Auto Response', content: 'With Listing Power Tool’s integrated text capture technology, all interested buyers have to do to receive more information on your listing is text a four-digit code. They’ll get an automatic text response in just seconds leading them to your listing’s dedicated property website.', image: './assets/images/Group4048.png', id: 3 }, { title: 'Dedicated Property Website', subtitle: 'Give Interested Buyers the Information They’re Looking For', content: 'As a Listing Power Tools member, each of your listings will have its own dedicated website. Whether texting the code on your print marketing pieces or clicking on a digital ad, leads will be instantly directed to your landing page, exclusively featuring the listing that buyer is interested in.', image: './assets/images/dedicatedpropetywebsite.png' } ], selectedFeature: { title: 'Text Capture 2.0', content: 'With outdated systems errors are inevitable. With outdated text capture technology, even the smallest mistakes (ex. using the wrong code) will cost you leads. Listing Power Tools’ Text Capture 2.0 technology was designed to record your leads’ information no matter what. If a prospect texts in the wrong code or sends the wrong message, our system will still capture their contact details and add them to your lead database.', image: './assets/images/phones.png' } } }, methods: { updateSelected (selectedItem, event) { this.selectedFeature = selectedItem; document.querySelector('.selected-addon-tab').classList.remove('selected-addon-tab') event.target.classList.add('selected-addon-tab') } } } app.component('mobile-leadcapture-textcapture', objMobileLeadcaptureTextcapture); const objMobileLeadcaptureTextcapturefeature = { template: `



{{ feature.subtitle }} {{ feature.title }}

{{ feature.content }}
` , props: { feature: { type: Object, required: true, default: {} } }, mounted(){ } } app.component('mobile-leadcapture-textcapturefeature', objMobileLeadcaptureTextcapturefeature); const objMobilePresentationDownload = { template: `

Download our Free, 30-slide listing presentation!

Watch as our CEO, Robert Palmer, demonstrates how to walk potential clients through your listing strategy, explaining the role each part of your marketing plays in selling fast and for more money.

` , data(){ return { } } } app.component('mobile-presentation-download', objMobilePresentationDownload); const objMobilePresentationIntro = { template: `

Win more listings

with our step-by-step listing presentation.

Whether you're newly licensed or a seasoned vet, every agent wants to win more listings. But, you only get one chance to prove yourself as the right agent for the job at your listing appointment.

At Listing Power Tools, our goal is not only to provide top-of-the-line real estate marketing products, but also to educate and inspire agents like you to reach new career highs, starting with your listing appointments.

` , } app.component('mobile-presentation-intro', objMobilePresentationIntro); const objPresentationDownload = { template: `

Download our

FREE, 30-slide listing presentation!
Watch as our CEO, Robert Palmer, demonstrates how to walk potential clients through your listing strategy, explaining the role each part of your marketing plays in selling fast and for more money.
` , data(){ return { } } } app.component('presentation-download', objPresentationDownload); const objPresentationIntro = { template: `
Win more listings
with our step-by-step listing presentation.

Whether you're newly licensed or a seasoned vet, every agent wants to win more listings. But, you only get one chance to prove yourself as the right agent for the job at your listing appointment.

At Listing Power Tools, our goal is not only to provide top-of-the-line real estate marketing products, but also to educate and inspire agents like you to reach new career highs, starting with your listing appointments.

` , data(){ return { } } } app.component('presentation-intro', objPresentationIntro); const objPresentationVideo = { template: `
` , data(){ return { } } } app.component('presentation-video', objPresentationVideo);