jstebbing
Forum Replies Created
-
Forum: Plugins
In reply to: [Pagely MultiEdit] [Plugin: Page.ly MultiEdit] Tab not renderign shortcodesIt dawned on me today that MultiEdit is leveraging custom fields to create the edit tabs, so I search and found this – http://code.hyperspatial.com/all-code/wordpress-code/execute-shortcode-in-custom-field/, which recommends use of this code;
<?php echo apply_filters(‘the_content’, get_post_meta($post->ID, ‘your_custom_field_here’, true)); ?>
The problem is, I’m not sure where to place it and if we need to duplicate this code for each field (tab) in the template.
Ideas?
Forum: Plugins
In reply to: [Pagely MultiEdit] [Plugin: Page.ly MultiEdit] Tab not renderign shortcodesAny follow up or luck here? I’d love to get this resolved.
I’m assuming it’s something simple because if I add <?php get_sidebar(); ?> just above <?php multieditDisplay(‘Right’); ?> in the same container the sidebar totally works and accepts iframes in a text/html widget… so if I can just get the <?php multieditDisplay(‘Right’); ?> to have the same filtering as <?php get_sidebar(); ?> we are good.
Right?
Forum: Plugins
In reply to: [Pagely MultiEdit] [Plugin: Page.ly MultiEdit] Tab not renderign shortcodesThis is a big one for me as well… great plugin, btw. Video content is the issue for me. I can embed via shortcode/custom field or iframe embed, but the filter in the tabs is stripping the code on both methods when publishing a page or post.
Plugins that add iframe embedding are being stripped too, so it seems like the multiedit tabs post area needs the “add_filter”.
Thanks!