julieblair1979
Forum Replies Created
-
P.S. mdedev: I am getting ready to use this for a wedding site and will probably chop up and modify the form mark-up heavily, making it not a table, and re-style it myself. I can share this with you if I have good results and you’re interested.
The jQuery snippet was happening to me too…
I noticed it was inserting the script and custom message stuff in a meta tag!
Since this plugin tosses the script in the body of the post, if your theme (or any SEO plugin) is set to automatically pull content from your post for an auto-generated “description” meta tag it puts the code in there and breaks the markup. Entering something in the field for meta/description fixed the problem for me!
the_content puts the post through a filter and adds formatting (p tags and such), even around images, and it was messing up the areas I was using the posts for. get_the_content just pulls it as a string, so there is no HTML added to my post, which aready had my own HTML in it.
I accomplished this by changing the the_content to get_the_content in the code.
This plugin is amazing, BTW. Using this with Widget Logic is super powerful. I love this. I had my own custom post type set up to do what this does in a clumsy way, and found this by accident. Amazing.
Maybe have a setting to turn wpautop off though? I added a custom field to the Content Block post type to trigger disabling wpautop like I do post-by-post and it wasn’t working.