pabile
Forum Replies Created
-
Forum: Plugins
In reply to: [podPress] how do i enable podpress in custom post typesneat! more power tim!
Forum: Plugins
In reply to: [podPress] how do i enable podpress in custom post typesoh! so “pod” is the custom post type slug!
that did the trick.i am not using a plugin for the custom post type. using similar to yours. here’s my final function:
// CUSTOM POST TYPES add_action( 'init', 'create_post_type' ); function create_post_type() { register_post_type( 'ghg_podcast', array( 'labels' => array( 'name' => __( 'Podcasts' ), 'singular_name' => __( 'Podcast' ) ), 'public' => true, 'rewrite' => array('slug' => 'ghg_podcast') ) ); } add_action('admin_menu', 'include_ghg_podcast'); function include_ghg_podcast() { add_meta_box( 'podPressstuff', __('podPress - podcasting settings of this post', 'podpress'), 'podpress_box_content_post', 'ghg_podcast', 'advanced' ); }thanks a lot for your time, mate!
Forum: Plugins
In reply to: [podPress] how do i enable podpress in custom post typesthanks a lot for the time looking at this. i am having quite a problem, i think its because of the newbie in me 🙂
i tried replacing function name add_podpress_to_custom_post_types but no good.
add_action('admin_menu', 'add_podpress_to_custom_post_types'); function add_podpress_to_custom_post_types() { add_meta_box( 'podPressstuff', __('podPress - podcasting settings of this post', 'podpress'), 'podpress_box_content_post', 'pod', 'advanced' ); }did i edit the correct term? tia
Forum: Plugins
In reply to: Form in plugin redirects to 404 pagewow! thanks for pointing that out.
my form works great now!!!kudos!
Forum: Plugins
In reply to: Form in plugin redirects to 404 pagemy form also redirects to a 404 page. i believe it has something to do with $_POST ?
can anyone enlighten us please.
thanks
Forum: Themes and Templates
In reply to: Have to re-upload images to update new post_thumbnail sizes??having almost the same problem. i set auto-crop to true but images wont crop. using 3.0.2
i hope some could post some thoughts.
thanks
update: my mistake. everything works fine. it was just my css
Forum: Plugins
In reply to: [WP eCommerce] WP e-Commerce widgets made available once for sidebarsyou might want to use plugin’s shortcodes: link
may i ask why you want to have multiple shopping cart (or something else) widgets?
try playing around at mobile_pack_base folder under wordpress-mobile-pack/themes
@vvdven check the header.php and footer.php under the folder i mentioned above
@kitmiller check index.php
i hope these helps
same here. anyone with an idea?
Forum: Fixing WordPress
In reply to: Recent Post for Page (not widget)thanks Shange G
just what i needed!Forum: Fixing WordPress
In reply to: Trying to build a “Random Post & Thumbnail Widget”thanks a lot, felixo & DZeta. this is very helpful.
Forum: Fixing WordPress
In reply to: Comments are closed even set to Allow Commentssorry guys. solved it already. there were something that i placed that made it go wrong. still reviewing but here is what i removed:
<?php $recent_posts = wp_get_recent_posts(); foreach($recent_posts as $post){ echo '<li><a href="' . get_permalink($post["ID"]) . '" title="Look '.$post["post_title"].'" >' . $post["post_title"].'</a> </li> '; } ?>Forum: Fixing WordPress
In reply to: Comments template not working<?php comments_template(); ?>should be in page.php and single.php as far as kubrick is concerned.Forum: Fixing WordPress
In reply to: I get the “comments off” message even though comments are enabled@jsepia please do post when you have the resolve. thanks
Forum: Fixing WordPress
In reply to: All “Comments are closed” why?for most of you, this might work: http://forum.bytesforall.com/showthread.php?t=5031&page=2
unfortunately, i am hcreating my own custom theme and i could not find it work for me. anyways, my problem is almost the same; Comments are closed. even though they are not.
i tried activating kubrick and the comments showed and things seemed to work well. but when i start activating my custom theme, comments are gone and it displays Comments are closed.. i could not find where i went wrong.
plugin installed: Under Construction; akismet; Fast and Secure Contact Form; jQuery Lightbox. i tried disabling it but still no do
i hope you guys will be able to find a fix and post it here.
thanks!