Matt
Forum Replies Created
-
Forum: Plugins
In reply to: [Ad King Pro] No-show & 404Hi Ash,
I have basic options turned on. I am using WP V3.4.2 and the most recent version of AdKing as I just installed it yesterday. The adverts are simply images with a link around them. And I’ve tried shortcode as well.
Thanks
Forum: Plugins
In reply to: [Ad King Pro] No-show & 404Hi Ash,
Yes, I have assigned it to the advert type. If I view the source code of the page, nothing shows up at all.
Thanks
Forum: Fixing WordPress
In reply to: Categories in Custom Post Type Loop/ListGot it all sorted.
Thanks so much again. This seemingly simple task was killing me for days!
Forum: Fixing WordPress
In reply to: Categories in Custom Post Type Loop/ListYou, my friend, are a fine human being. Thank you so much.
I’d tried that solution before, but I guess I was missing something. Now I just need to figure out how to remove the link status from each project. I’m creating a super, super simple portfolio and I just want it to state “Branding / Print / Digital” and no links to those categories/tags.
Thanks again man!!!
Forum: Fixing WordPress
In reply to: Categories in Custom Post Type Loop/ListI realize that ‘taxanomies’ => array(‘post_tag’, ‘category’) is not in the register_taxanomy array, but it’s because when I add that in, the default categories that are setup for my blog automatically appear there.
Forum: Fixing WordPress
In reply to: Categories in Custom Post Type Loop/ListThis is my entire setup for my custom post type. The custom categories display in the WP admin panel as they should, but trying to get them to show on any template file is simply not working… I’ve read all docs and links that you’ve sent and then some.
/*** Custom Posts ***/ add_action("init", "portfolio_init"); function portfolio_init() { register_taxonomy( 'works', 'portfolio', array( 'label' => __('Portfolio Categories'), 'singular_label' => __('Portfolio Category'), 'hierarchical' => true, 'query_var' => true, 'rewrite' => true, 'show_in_nav_menus' => true, ) ); // took out author and custom fields register_post_type('portfolio', array( 'label' => __('Portfolio'), 'singular_label' => __('Work'), 'public' => true, 'show_ui' => true, 'hierarchical' => false, 'rewrite' => true, 'query_var' => true, 'show_in_nav_menus' => true, 'menu_position' => 3, 'supports' => array('title', 'editor', 'thumbnail'), '_builtin' => false, // It's a custom post type, not built in! )); }Forum: Fixing WordPress
In reply to: Categories in Custom Post Type Loop/ListHey Drew,
Thanks for the response. The above solution works to display my blog categories and tags, but I don’t want them displayed in my portfolio section.
I have categories that are specific to my custom post type. For example, in my blog area, I may have random categories but in my portfolio posts, I have categories like Print, Digital, Identity, etc. I have tried every which way for the past 3 days to display these categories in either the loop or single post and nothing works.
Maybe it’s time to simply give up.
Thanks again for your suggestion.
Forum: Fixing WordPress
In reply to: Putting my blog in a different directory than pages…Here’s another site that seemingly works the way I’m hoping to have mine work…
http://www.filippa-k.com/newsThanks
Can someone please help me. I have tried everything mentioned in this string of replies (CHMOD 777 – which I did so reluctantly, changing the .htaccess file, removing the slash in front of my directory and such) and still to no avail.
Can someone please, please (hopefully a WP developer themselves) answer this for once and for all.
Thank you.