janiroquai
Forum Replies Created
-
This should also work in functions.php:
$post_id = $_GET['post'] ? $_GET['post'] : $_POST['post_ID'] ; $template_file = get_post_meta($post_id,'_wp_page_template',TRUE); // show meta if post/page uses specific template switch ($template_file) { case 'page-full.php': include 'meta-boxes/meta-pages.php'; break; default: // do nothing } // show meta if post/page has specific id switch ($post_id) { case '84': include 'meta-boxes/meta-whatever.php'; break; default: // do nothing }Hi this is great. Where can I get the download? Are you still updating?
Would be a great featur for the main project.Thanks for your answer in advance!
Forum: Plugins
In reply to: [Meta Box] Drag & Drop Image order not saving image advance meta boxThanks for the tip to use plugin version 4.3.8. It’s a good temporary workaround! Works good so far with WP 3.9.1.
Forum: Fixing WordPress
In reply to: No excerpt is generated for shortcode-encapsulated posts.Found the solution here. Tested – works. 🙂
http://wordpress.org/support/topic/stripping-shortcodes-keeping-the-content?replies=16#post-2770209
Forum: Fixing WordPress
In reply to: No excerpt is generated for shortcode-encapsulated posts.Hi, I have exactly the same issue. Did you find a solution for it?
Forum: Plugins
In reply to: [Meta Box] Drag & Drop Image order not saving image advance meta boxI have the same problem. Would be great if that could be repaired soon.
Same problem appears on “Thickbox Image Upload”.
Bug seems to have been repaired some time ago:
http://wordpress.org/support/topic/plupload-advance-image-upload-menu_order-not-changing-when-reorderingThank you!!