Okay
  Public Ticket #1757037
logo to direct to portfolio page
Closed

Comments

  • james_10000000 started the conversation

    I would like my landing page to be the 

    'About me page' http://jamesennis.space/ 

    When I click on the logo on top left corner, it takes me to landing page, 

    When one clicks on Logo - Can direct to portfolio page ? surely an easy thing ? 

    http://jamesennis.space/portfolio/ 

    thanks a million, 

    {"wp":{"use":false,"adminUrl":"jamesennis.space/wp-admin","username":"","password":""},"ftp":{"use":false,"url":"","port":"","user":"","password":"","path":""}}

  • [deleted] replied

    Hi James

    This is a customization question and support doesn't offer customization services as we wrote on our support homepage and on this area. I will try to help you this time though

    Before you continue please consider reading the article we wrote about How to add custom code to functions.php or edit the file directly in them or child-theme. Then paste the code in the end of functions.php area:

    if (!function_exists('replace_logo_url')){
        function replace_logo_url(){
            return home_url() . '/portfolio';
        }
        add_filter( 'kalium_logo_url', 'replace_logo_url', 99 );
    }
    

    P.S: If you're looking for professional help for theme customisations, there's always someone available for such tasks on the WP Kraken or Codeable. Pricing and timeline are always straightforward there and that's the main reason for recommending those services.

    Thanks!