Kinney21
Forum Replies Created
-
Forum: Plugins
In reply to: [TAB SLIDE] [Plugin: TAB SLIDE] Convert page to tab?I may have found the solution, though I’m not sure if it messes up anything else:
Use the wpautop() function.
http://codex.wordpress.org/Function_Reference/wpautopSo in post.php, change:
$content = $my_post[‘post_content’];
to
$content = wpautop($my_post[‘post_content’]);Forum: Plugins
In reply to: [TAB SLIDE] [Plugin: TAB SLIDE] Convert page to tab?I have noticed that when it pulls the content for a certain post, it doesn’t include any of the <p> tags (but it will include other tags like <h1>, <h2> and < a > tags). It looks like WordPress will add the <p> tags back in when displaying the page content as a page or post. How do I add the <p> tags back into the content when displaying the info in the tab?
Forum: Plugins
In reply to: [TAB SLIDE] [Plugin: TAB SLIDE] Convert page to tab?Thank you Zoranc, that worked!
(and you’re welcome 🙂 )
Forum: Plugins
In reply to: [TAB SLIDE] [Plugin: TAB SLIDE] Convert page to tab?The content not loading on the other pages (besides the homepage) has something to do with Permalink settings. If I use the default, it works. If I use a custom setting, it doesn’t. I don’t like to use the default (with the ?p=123) as it makes referencing pages much more difficult. Any thoughts to fix this?
Forum: Plugins
In reply to: [TAB SLIDE] [Plugin: TAB SLIDE] Convert page to tab?The tab is appearing, but the content only loads on the homepage. On the rest of the pages, there is a tab that opens, but there is no content within. Please help!