Forum Replies Created

Viewing 3 replies - 31 through 33 (of 33 total)
  • Thread Starter CreativeFedora

    (@creativefedora)

    Correct. I found the class (.wpcf7-list-item-label) associated with it and hid it using CSS. It works.

    I just had this very same problem after testing a form that worked perfectly, form filled out and email sent to a gmail account.

    After working on the form some more it stopped working. I figure out that at the bottom of the Message Body section (the area where you specify how the form content will display in an email) has this footer:


    This mail is sent via contact form on http://your-domain-name.com

    I deleted this line when reworking my form and after adding it again the form sent the email.

    I’m not sure if this will work in your situation, there’s plenty of web hosts out there that have trouble with CF7. I use Blue Host.

    Thread Starter CreativeFedora

    (@creativefedora)

    As a matter of fact I figured how to add a line break. You’ll have to go into the advanced-excerpt.php file and edit in the line break.

    Find this string of code:

    if ($read_more)
            $ellipsis .= sprintf(' <a href="%s" class="read_more">%s</a>', get_permalink(), $read_more);

    And this is how I altered it to have the read-more text appear on the next line:

    if ($read_more)
            $ellipsis .= sprintf(' <br/> <br/><a href="%s" class="read_more">%s</a>', get_permalink(), $read_more);

    Hope that it helps you out. But keep in mind if the plugin gets updated you’ll have to re-add the line break.

Viewing 3 replies - 31 through 33 (of 33 total)