Edit Portfolio Titles to different page

Support Forums for LiveMesh Themes & Plugins Forums Appdev Theme Support Edit Portfolio Titles to different page

Viewing 2 posts - 1 through 2 (of 2 total)
  • Author
    Posts
  • #4473
    jongrant
    Member

    Hey!
    Back again with a quick question. I have my homepage set up to show 4 rounded images from my “Portfolio” page section:
    http://clinicsoft.atomicstudio.io/

    on default when you click them they go to there corresponding detail pages ie.
    from the homepage if you click the first portfolio item “client profile” it goes to /portfolio/client-profile/..

    i would like to remove the portfolio detail pages and have them all go to the same page:
    http://clinicsoft.atomicstudio.io/solutions/

    how would i go about doing this?

    thanks a billion.

    – Jon

    #4536
    Raghavendra
    Moderator

    You can modify the file framework/functions/thumbnail-functions.php file at line number 111 to –

                $post_type = get_post_type($post_id);
                if ($post_type === 'portfolio')
                    $post_link = "http://clinicsoft.atomicstudio.io/solutions/";
                else
                    $post_link = get_permalink($post_id);
    

    This won’t remove the lightbox though. If you need to remove the lightbox, you need the following custom CSS in the Custom CSS tab in theme options –

    .type-portfolio .image-info .image-info-buttons { display: none; }
    
Viewing 2 posts - 1 through 2 (of 2 total)
  • The forum ‘Appdev Theme Support’ is closed to new topics and replies.