Viewing 2 posts - 1 through 2 (of 2 total)
  • Author
    Posts
  • #24908

    Hi I have ancountered folowing issues while setting up a site with you Enfold theme:

    1. How to turn off sidebar for whole portfolio

    2. How to turn off breadcrumbs for whole portfolio

    3. How to get rid of “Enfold Theme by Kriesi” attached to my own Copyright text

    4. When I enter portfolio category the slug is “portfolio_entries” despite the fact I have entered another one in setting. When displaying protfolio item page then the slug is correct.

    Regards

    Bogusz

    #125152

    1) In wp-contentthemesenfoldincludeshelper-template-logic.php replace:

    $result = avia_get_option($layout);

    with

    $result = avia_get_option($layout);
    if(get_post_type() == 'portfolio') $result = 'fullsize';

    2) In functions-enfold.php replace:

    if($breadcrumb) $additions .= avia_breadcrumbs(array('separator' => '/', 'richsnippet' => true));

    with

    if($breadcrumb && get_post_type() != 'portfolio') $additions .= avia_breadcrumbs(array('separator' => '/', 'richsnippet' => true));

    3) https://kriesi.at/support/topic/footer-7#post-109976

    4) Yes, unfortunately WP will use the taxonomy name on portfolio category pages and you can’t change the slug without changing the taxonomy name. On the other hand you can’t change the taxonomy name because we hardcoded/use it on various places within the framework.

Viewing 2 posts - 1 through 2 (of 2 total)
  • The topic ‘Few issues with using the theme’ is closed to new replies.