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

    (@tushar44u)

    you can check Permalink Settings.
    see this screen shot “http://awesomescreenshot.com/0142ykpo0e”.
    can you give me your site link.

    I’m having the same problem — I create portfolio items but I get a 404 when I try to view them. Here is one permalink:

    http://66.147.244.121/~hracentr/portfolio/aix-records/

    Also, is there any documentation on how to use this?

    Thanks!

    Plugin Author Tushar Patel

    (@tushar44u)

    Hi delanor,
    Sorry for late replay.
    which sortcode you have used on this page?
    If you want to use shortcode inside page then you have to use
    [easy_portfolio] .
    If you required more help then please send me your site detail to my email address : tushar44u@gmail.com.

    Hi Tushar Patel.
    I had the same problem until a few hours ago when “mysteriously” and without touching anything has been fixed…

    Hello,

    I have the same problem. I am using the shortcode [easy_portfolio]. Do I have to put the theme somewhere?

    Plugin Author Tushar Patel

    (@tushar44u)

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

    Thank you Tushar for the answer. I didnt want to use it in a template. i am using it on a page in the backend. but the url just said not found but all the sudden it was working i dont know why. the base url is http://www.domain.com/portfolio/xxxx -> i changed the slug in the easy-portfolio.php to http://www.domain.com/ownslug/xxxx -> now it doesnt work again. do i have to change something somewhere else?

    another problem is that since i am using that plugin and have portfolios, my search will mess up. it shows the portfolios found to the search term with the portfolio-navigation underneath instead of my search navigation and it will show other search results from pages with the whole content not only the excerpt.

    Can you help me there?

    Best regards, Jette

    Plugin Author Tushar Patel

    (@tushar44u)

    @jettemadd

    you can edit easy-portfolio.php file below highlight slug also you have change.

    function ep_portfolio_get_item_slug($post_id = null) {
        if ($post_id === null)
            return;
        $_terms = wp_get_post_terms($post_id, '<strong>portfolio_category</strong>');
        foreach ($_terms as $_term) {
            echo $_term->slug.' ';
        }
    }

    Still you need more help send me your detail in my email address.
    tushar44u@gmail.com I will resolve it surely.

    Thanks

    Thank you for your reply. I solved the problem with the search. it always redirected to the portfolio_details.php when i used the wordpress search. what i did is:

    //Portfolio Details Page
    function ep_template_post_detailspage(){
    global $post, $posts;
    if(‘portfolio’== get_post_type() && ! is_search()) {
    add_action(‘wp_head’, ‘ep_add_meta_tags’);
    require (PORTFOLIO_THEMES_DIR . “/portfolio_details.php”);
    exit();
    }
    }

    Thank you, now everything is working 🙂

    Plugin Author Tushar Patel

    (@tushar44u)

    @jettemadd

    ok now i got what your problem was.
    Thanks for sharing your idea with me.
    I will update this in my next update.
    Please give review to my plugin if it is helpful to you.
    Thanks

Viewing 10 replies - 1 through 10 (of 10 total)
  • The topic ‘item page no found 404’ is closed to new replies.