Forum Replies Created

Viewing 9 replies - 1 through 9 (of 9 total)
  • Forum: Plugins
    In reply to: [Ad King Pro] No-show & 404
    Thread Starter Matt

    (@fattyo)

    Hi 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 & 404
    Thread Starter Matt

    (@fattyo)

    Hi 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

    Thread Starter Matt

    (@fattyo)

    Got it all sorted.

    Thanks so much again. This seemingly simple task was killing me for days!

    Thread Starter Matt

    (@fattyo)

    You, 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!!!

    Thread Starter Matt

    (@fattyo)

    I 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.

    Thread Starter Matt

    (@fattyo)

    This 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!
    ));
    
    }
    Thread Starter Matt

    (@fattyo)

    Hey 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.

    Thread Starter Matt

    (@fattyo)

    Here’s another site that seemingly works the way I’m hoping to have mine work…
    http://www.filippa-k.com/news

    Thanks

    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.

Viewing 9 replies - 1 through 9 (of 9 total)