Tushar Patel
Forum Replies Created
-
Forum: Plugins
In reply to: [Easy Portfolio] Disable Portfolio Categoriesopen 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.' ';} ?></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 [email protected].
Forum: Plugins
In reply to: [Easy Portfolio] Disable Portfolio Categoriessorry for the late replay.
open this file.
easy-portfolio/themes/default_template.phpcomment / 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 [email protected].
Forum: Plugins
In reply to: [Easy Portfolio] Remove Go to ProjectSorry for late replay.
open file following path easy-portfolio/themes/category_template.php
and Comment Line Number 38 to 43.<div class="ep_portfoliourl"> <?php if(isset($portfoliourl)){?> <a class="ep_purl" href="<?php echo $portfoliourl; ?>">Go To Project</a> <?php } ?> <a class="ep_readmore_right" href="<?php echo get_permalink($post->ID); ?>">Read More →</a> </div>
still require more help contact me on [email protected].
Forum: Plugins
In reply to: [Easy Portfolio] Change Default page templateSorry for late replay.
open file following path easy-portfolio/themes/portfolio_details.php
and Comment Line Number 54.
Now working Full Width page template.Forum: Plugins
In reply to: [Easy Portfolio] item page no found 404you can check Permalink Settings.
see this screen shot “https://awesomescreenshot.com/0142ykpo0e”.
can you give me your site link.Forum: Plugins
In reply to: [Easy Portfolio] Not working on static home.php?@sallf
to use shortcode in page or page template you have to use below code.
echo do_shortcode("[easy_portfolio]")
Forum: Plugins
In reply to: [Easy Portfolio] an error message comes upSorry for late replay.
I have resolve problem.Please follow below steps to overcome your problem.
open “easy-portfolio.php” in plugin root directory and
remove/comment line number 30:
add_action('wp_head', 'ep_add_meta_tags');
And replace below function
function ep_template_post_detailspage(){ global $post, $posts; if('portfolio'== get_post_type()) { require (PORTFOLIO_THEMES_DIR . "/portfolio_details.php"); exit(); } }
with
function ep_template_post_detailspage(){ global $post, $posts; if('portfolio'== get_post_type()) { add_action('wp_head', 'ep_add_meta_tags'); require (PORTFOLIO_THEMES_DIR . "/portfolio_details.php"); exit(); } }
Forum: Plugins
In reply to: [Easy Portfolio] an error message comes upi have already install and test it but did not get any error.
which wordpress version you have used?Forum: Plugins
In reply to: [Easy Portfolio] How to disable 'read more'Settings option are not available but you can change through plugin code files.
also you can check Permalink Settings.
Which Short-code you have used?