• First, this is a great plugin! So easy to use and to customize.
    I am using wpui (the latest version) to show messages in a sermon series using the wptabpost shortcode.
    I have changed the post options in the settings to show:
    <div class="wpui-post-content">{$content}</div>
    However, the post uses Powerpress to insert the audio player and download link into the post itself. Those are not showing up in the accordion.
    You can view the page here:
    http://churchwestpalm.com/NewSite/follow-series/
    You can view a post on this page:
    http://churchwestpalm.com/NewSite/follow-part-3/

    I know I can manually create the acccordion and add all the content but since the posts are already done I would love to not have to recreate work unless there is no other way. I have two years worth of series to redo.
    Melanie

    http://wordpress.org/extend/plugins/wp-ui/

Viewing 1 replies (of 1 total)
  • IF may be worth setting up your theme to insert the powerpress player above or below your content div when using the tab control.

    <div class="wpui-post-content">{$content}</div>
    <?php if(function_exists('the_powerpress_content'){ the_powerpress_content(); } ?>

    The function_exists() portion is useful if for example PwoerPress plugin was disabled, then you will not see an error that the the_powerpress_content() function does not exist.

Viewing 1 replies (of 1 total)
  • The topic ‘[Plugin: WP UI – Tabs, Accordions, Sliders] wptabpost not showing all content’ is closed to new replies.