• Is it possible to integrate the portfolio section in a template?

    The idea is to create a simple page, where I can put some text and the portfolio. (instead of have it a on a main page)

    And is possible to change the constant of /portfolio/ —> /about/ ?

Viewing 6 replies - 1 through 6 (of 6 total)
  • I think you should need to create a new page which displays your portfolio. Name your page as “Portfolio” and make sure its URL is yourwpsite.com/portfolio

    Head on this official documentation page. Scroll down to “Step Two: Create a Portfolio Grid Page” section.

    I ope this reply helps.

    Thread Starter snp_85

    (@snp_85)

    not really understood..

    hannah

    (@hannahritner)

    Hey snp_85,
    The premium theme has options to add portfolio posts as shortcodes so you could integrate it into any page. However, the free version does not have this option. You could add content to the visual editor of the portfolio edit page and it should display above the portfolio posts.

    You can edit your permalink settings from Settings > Permalinks. Is that what you mean?

    Hannah

    Thread Starter snp_85

    (@snp_85)

    I mean, where I can edit /portfolio/ permalink? It is not in settings because it’s kind of other system setting that is particulary portfolio.

    The portfolio permalink is always /portfolio/ , where to change it?

    hannah

    (@hannahritner)

    The premium version has an option to change this, but the free version does not. Sorry!

    Hannah

    Hey,
    Just to clarify you can use a child theme: http://www.kadencethemes.com/child-themes/

    then add a filter function to change the portfolio url in the free version.
    With a child theme, add this to the functions.php file:

    add_filter('kadence_portfolio_permalink_slug', 'custom_portfolio_slug');
    function custom_portfolio_slug() {
    return 'new-slug';
    }

    Kadence Themes

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

The topic ‘Portfolio’ is closed to new replies.