• ResolvedModerator Bet Hannon

    (@bethannon1)


    The site where I am having a problem is here: https://tfghomes.com/property-management-faq/. The first question of the FAQ is where the problem is: https://easycaptures.com/9076805831.

    It’s showing the code, but what I have in the text editor is:
    [expand?tag=”div”?title=”Should I manage my own property?“]Most rental housing investors consider self-managing their properties at some point. For some investors self-management works, but for many, the hassle and time commitment isn’t worth it. If you are considering managing your own property, take some tips from us. Here’s what you need to know…. [/expand]

    This is how I’m using the shortcodes in the other FAQ’s which are working fine. Can you help me figure out why “<”div” class=”collapseomatic ” id=”id6483″ tabindex=”” title=””Should”>” and the shortened title is displaying?

    https://www.ads-software.com/plugins/jquery-collapse-o-matic/

Viewing 6 replies - 1 through 6 (of 6 total)
  • Plugin Author Baden

    (@baden03)

    check your your page in the TEXT not VISUAL mode of the editor.
    Sounds like you copy-pasted somethign in Visual mode and it brought wiht it some formatting (font, color, etc) that is breaking the shortcode. You should be able to see the issue and fix it in Text mode.

    Moderator Bet Hannon

    (@bethannon1)

    I’m pretty sure I was looking at the text editor. This is what I see there now:
    [expand?tag="div"?title="<strong>Should I manage my own property?</strong>"]Most rental housing investors consider...

    This is the code showing for another faq that isn’t showing code:
    [expand tag="div"?title="<strong>What areas do you serve?</strong>"]We serve greater Placer County and select areas...

    The whole section of faq’s on this page is wrapped in a div, but that shouldn’t cause this, right?

    Plugin Author Baden

    (@baden03)

    try this:

    [expand tag="strong" title="Should I manage my own property?"]

    see what we did there?

    Moderator Bet Hannon

    (@bethannon1)

    Hi Baden! That does solve my code shwowing issue, but I had been using the
    tag="div"
    to solve the wpautop issue.

    I’ve tried moving around the p tags, I’ve added the filter for execution priority of wpautop to functions.php, and the entire FAQ was already wrapped in a div. I also tried the workaround at the bottom of this thread to display br none.

    Suggestions?

    My code looks like this:

    <div>
    <p>[expand tag="strong" title="Should I manage my own property?"]Most rental housing ..to know:</p>
    <p><ul>
    	<li><strong>Make time</strong>. Property management..Schedule accordingly.</li>
    	<li><strong>Prepare for everything</strong>. Property management ..comes with time.</li>
    	<li><strong>Study up</strong>. Successful ..property management.</li>
    	<li><strong>Get connected</strong>. You will likely .. paying full price.</li>
    	<li><strong>Reconsider</strong>. If you ..the case, <a style="color: #4b2884;" href="https://tfghomes.com/contact/">contact</a> us today.</ul></p>
    
    [/expand]<p>[expand tag="div"?title="<strong>What areas do you serve?</strong>"]We serve greater..Fair Oaks.</li>
    </ul></p>
    [/expand]
    <p><br>[expand tag="div"?title="<strong>What are your fees?</strong>"]Our fees .. rented.</p>
    <p>Our monthly ..more.</p>
    <p>You can choose ..moved-in. <a href="https://tfghomes.com/contact/">Contact</a> us for more information.[/expand] [expand tag="div"?title="<strong>What is included in the set-up fee?</strong>"]The set-up .. services:</p>
    <ul>
    	<li>Comprehensive market analysis of your property’s rental value</li>
    	<li>Extensive marketing of your property for lease –see How do you advertise my property?</li>
    	<li>Unlimited showings to prospective tenants. Prospective tenants are ALWAYS accompanied by a licensed property manager when viewing your rental property</li>
    	<li>Thorough tenant screening - see What does your tenant background check include?</li>
    	<li>Detailed property inspection prior to commencement of lease</li>
    	<li>Lease signing</li>
    </ul>
    [/expand] [expand tag="div"?title="<strong>How do you advertise my property?</strong>"]We believe ...Zillow</p>
    <p>[/expand] [expand tag="div"?title="<strong>What services does the monthly management fee include?</strong>"]Our goal... services:</p>
    <ul>
    	<li>Maintenance & repair coordination</li>
    	<li>24/7 maintenance emergency response</li>
    	<li>Drive-by inspections</li>
    	<li>Thorough Move-in and Move-out inspection</li>
    	<li>Begin showing the property IMMEDIATELY after receiving a move-out notification from an existing tenant, reducing the length of time the property is vacant</li>
    	<li>Accurate and complete monthly statements</li>
    	<li>Payment of recurring bills associated with Property (i.e., landscaping service, water, sewer)</li>
    	<li>Monthly reports & annual tax reports (i.e., 1099)</li>
    	<li>Monitoring your property to increase rents as necessary</li>
    </ul>
    <p>[/expand] [expand tag="div"?title="<strong>What does your tenant background check include?</strong>"]The most ... application.</p>
    <p>Finally, .. following:</p>
    <ul>
    	<li>A current credit report with score</li>
    	<li>Employment verification</li>
    	<li>Rental history verification or home ownership verification</li>
    	<li>Criminal history</li>
    	<li>Eviction history</li>
    	<li>Bad check writing history</li>
    </ul>
    <p>You ...standards.<br />
     [/expand] [expand tag="div"?title="<strong>How do you determine the appropriate rent?</strong>"]You determine ... amount.</p>
    <p>[/expand] [expand tag="div"?title="<strong>When will I receive my rent proceeds?</strong>"]Funds ... funds sooner.</p>
    <p>[/expand] [expand tag="div"?title="<strong>Do you hold Open-Houses?</strong>"]We are ...have.</p>
    <p>[/expand] [expand tag="div"?title="<strong>How do I transfer my Property to you for Management from another Management Company?</strong>"]If you currently ... with you.</p>
    <p>[/expand] [expand tag="div"?title="<strong>How is maintenance handled?</strong>"]When a ... negligence.[/expand]</p>
    </div>

    Plugin Author Baden

    (@baden03)

    If you need to use div and have the triggers bold, then you need to use the trigclass attribute and define your own class:

    [expand tag="tag" trigclass="my_trigger_class" title="Should I manage my own property?"]

    CSS:

    .my_trigger_class {
         font-weight: bold;
    }

    Plugin Author Baden

    (@baden03)

    sorry, tag=”div” in the example above:

    [expand tag="div" trigclass="my_trigger_class" title="Should I manage my own property?"]
Viewing 6 replies - 1 through 6 (of 6 total)
  • The topic ‘First line showing code’ is closed to new replies.