Viewing 4 replies - 1 through 4 (of 4 total)
  • Plugin Author Tushar Patel

    (@tushar44u)

    sorry for the late replay.
    open this file.
    easy-portfolio/themes/default_template.php

    comment / remove below code.

    <ul class="ep_filter ep_group">
                 <li class="current all">
                    <a href="#" rel="all">All</a>
                 </li>
                    <?php ep_portfolio_list_categories(); ?>
            </ul>

    still require more help contact me on tushar44u@gmail.com.

    Thread Starter linburnlane

    (@linburnlane)

    I’ve removed the code but it doesn’t seem to make a difference.
    You can see what i mean at: http://ruralorganics.com.au/portfolio/jo-anne-martin-slate-fumina-south-vic/

    See how the thumbnail & portfolio category is still there?

    Thanks for your help!

    Plugin Author Tushar Patel

    (@tushar44u)

    open this file.
    easy-portfolio/themes/portfolio_details.php
    comment / remove below code.

    <div class="ep_content_details">
    					<?php
                        $portfoliourl = get_post_meta( $post->ID, '_ep_portfoliourl', true);
                        $imgsrc = wp_get_attachment_image_src( get_post_thumbnail_id( $post->ID ), "Full");
                        $terms = wp_get_object_terms( $post->ID, 'portfolio_category' );
                        ?>
                    	<b>Portfolio Categories:</b>
                        <p><?php foreach($terms as $val){ echo $val->name.'&nbsp;';} ?></p><br />
                        <?php if($portfoliourl){ ?><b>Portfolio URL:</b>
                        <p>
                        <a target="_blank" href="<?php echo $portfoliourl; ?>">Go To Project</a></p><?php } ?>
                        <div class="ep_featured-image" id="ep_detail_img" >
                        <?php if(get_the_post_thumbnail($post->ID, 'thumbnail')){?>
                        <a href="<?php echo $imgsrc[0]; ?>" rel="prettyPhoto[portfolio]">
                            <?php echo get_the_post_thumbnail($post->ID, 'thumbnail'); ?>
                        </a>
                         <?php }else{ ?>
                     <img width="150" height="150" class="attachment-thumbnail wp-post-image" src="<?php echo PORTFOLIO_URL; ?>/images/no_images.jpg" />
                    <?php }?>
                        </div>
                    </div>

    still require more help contact me on tushar44u@gmail.com.

    Thread Starter linburnlane

    (@linburnlane)

    Thanks, that worked 🙂

Viewing 4 replies - 1 through 4 (of 4 total)
  • The topic ‘Disable Portfolio Categories’ is closed to new replies.