Forum Replies Created

Viewing 9 replies - 61 through 69 (of 69 total)
  • 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 [email protected].

    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 [email protected].

    Plugin Author Tushar Patel

    (@tushar44u)

    Sorry 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].

    Plugin Author Tushar Patel

    (@tushar44u)

    Sorry for late replay.
    open file following path easy-portfolio/themes/portfolio_details.php
    and Comment Line Number 54.
    Now working Full Width page template.

    Plugin Author Tushar Patel

    (@tushar44u)

    you can check Permalink Settings.
    see this screen shot “https://awesomescreenshot.com/0142ykpo0e&#8221;.
    can you give me your site link.

    Plugin Author Tushar Patel

    (@tushar44u)

    @sallf
    to use shortcode in page or page template you have to use below code.
    echo do_shortcode("[easy_portfolio]")

    Plugin Author Tushar Patel

    (@tushar44u)

    Sorry 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();
    	  }
    }
    Plugin Author Tushar Patel

    (@tushar44u)

    i have already install and test it but did not get any error.
    which wordpress version you have used?

    Plugin Author Tushar Patel

    (@tushar44u)

    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?

Viewing 9 replies - 61 through 69 (of 69 total)