• Resolved adelay

    (@bones7151)


    I have a site I’m working on and I selected your theme to use because I like the look and design. I also have a calendar plugin that I’ve been using for a while now and when I switched over to your design, it looks like a span is being inserted as plain text into my calendar widget and I’m trying to figure out how to remove it.

    My website is http://www.gc-arpsc.org/. You can see the problem in the calendar widget on the homepage. This is what’s being inserted but not closed. How do I remove this from being put in? “<span class=”raindrops_unique_id…”

    Thanks for your help

    Adam

Viewing 5 replies - 1 through 5 (of 5 total)
  • Theme Author nobita

    (@nobita)

    Hi adelay

    Please change Raindrops setting

    Dashboard / Raindrops Options /

    Change Accessibility Settings value from yes to no.

    Thank you.

    Thread Starter adelay

    (@bones7151)

    Awesome. Thank you nobita!

    Can you also help me figure out why the “<wbr>” is being put in the title of one of my events? Currently display is showing as “2014<wbr>Skywarn <wbr>Training –…”

    Thanks

    Adam

    Theme Author nobita

    (@nobita)

    Remove wbr element from entry title.

    Please add to functions.php first line( <?php before ) below code.( or child theme )

    <?php
    function raindrops_non_breaking_title( $title ) {
    
        return $title;
    }
    ?>

    thank you.

    Thread Starter adelay

    (@bones7151)

    nobita, once again…AWESOME!

    Thank you for getting back with me so quickly. I really love the design and thank you for the quick help!

    Adam

    Thread Starter adelay

    (@bones7151)

    Thanks again!

Viewing 5 replies - 1 through 5 (of 5 total)

The topic ‘Span inserted as plain text’ is closed to new replies.