Viewing 4 posts - 1 through 4 (of 4 total)
  • Author
    Posts
  • #692130

    Hello,
    I installed a portfolio on a website with the theme enfold. I would like change the pages: “/ portfolio_entries /” insert text, remove “Archive to” change the number of columns, change the thumbnail size, etc .. is this possible? i don’t have find this page on my backoffice WP.
    Thank you for your reply
    Bertrand

    #692793

    Hey dupbertrand,

    1- Please go to Settings > Permalinks to change the slug
    2- Please add following code to Functions.php file in Appearance > Editor

    add_filter('avf_title_args', 'fix_single_post_title', 10, 2);
    function fix_single_post_title($args,$id)
    {
        if ( is_category() )
        {
            $args['title'] = single_cat_title('',false);
        }
    
        return $args;
    }

    3- Please refer to this post – http://kriesi.at/documentation/enfold/change-archive-categorytag-blog-style/

    Best regards,
    Yigit

    #692985

    thanks for your answer, i try
    Best regards
    Bertrand

    #692989

    Hi!

    Please feel free to let us know if we can do anything else for you

    Regards,
    Basilis

Viewing 4 posts - 1 through 4 (of 4 total)
  • You must be logged in to reply to this topic.