Powered by link redirects to the incorrect website

  • Author
    Posts
  • #72177

    Hi all,

    At the footer I have Powered by Kahuna and WordPress. If I hover over each link, the tooltip is correct, but if I click Kahuna links, it redirects to the same page that I’m seeing instead of redirecting to your website. This is not happening with WordPress link. I have a child theme based on Kahuna theme, but I haven’t customized this. I have only customized the icons (including font-awesome library). Any help is appreciated it.

    Thanks,
    Claudia

    Website: claudia-badell.com

    • This topic was modified 5 years ago by claubs.
    #72257
    Zed
    Cryout Creations mastermind

    There must be a bit of code someplace (either in the edited Kahuna theme or in the child theme, or even a plugin) that’s customizing that link.


    If you like our creations, help us share by rating them on WordPress.org.
    Please check the available documentation and search the forums before starting a topic.
    #72264

    Hi! I haven’t edited the theme, and the only code that i added in the child theme is the following:

    add_action( 'wp_enqueue_scripts', 'enqueue_parent_styles' );
    function enqueue_parent_styles() {
       wp_enqueue_style( 'parent-style', get_template_directory_uri().'/style.css' );
    }
    
    add_action( 'wp_enqueue_scripts', 'enqueue_load_fa' );
    function enqueue_load_fa() {
    wp_enqueue_style( 'load-fa', 'https://maxcdn.bootstrapcdn.com/font-awesome/4.7.0/css/font-awesome.min.css' );
    }

    Thanks,
    Claudia

    #72276
    Zed
    Cryout Creations mastermind

    We haven’t encountered this behaviour before.

    Try to update Kahuna (to ensure its files are unmodified) and temporarily deactivate the child theme (to exclude its effects).


    If you like our creations, help us share by rating them on WordPress.org.
    Please check the available documentation and search the forums before starting a topic.
    #72288

    If I active the theme, the url is correct. When activating the child theme again, the url is not correct.

    I have the following active plugins:
    – Akismet Anti-Spam 4.1 version
    – All-in-One WP Migration 6.82 version
    – Jetpack by WordPress.com 6.8.1 version
    – Related Posts 5.12.84 version
    – Simple Twitter Tweets 4.4 version
    – SumoMe 1.30 version

    but I don’t think they are the cause of the url issue because when setting the theme, the url is correct.

    The code that I added to the child theme is:

    add_action( 'wp_enqueue_scripts', 'enqueue_parent_styles' );
    function enqueue_parent_styles() {
       wp_enqueue_style( 'parent-style', get_template_directory_uri().'/style.css' );
    }
     
    add_action( 'wp_enqueue_scripts', 'enqueue_load_fa' );
    function enqueue_load_fa() {
    wp_enqueue_style( 'load-fa', 'https://maxcdn.bootstrapcdn.com/font-awesome/4.7.0/css/font-awesome.min.css' );
    }

    and the additional css that I added is the following:

    #header-page-title #breadcrumbs-container {
        display: none;
    }
    #header-page-title .entry-title {
        max-width: 100%;
    }
    .entry-content .twitter-tweet-rendered {
    max-width: 45% !important;
    }
    
    #commentform .comment-form-url {display:none;}
    
    #lp-text-three .lp-text-title {text-align:center;}
    #lp-text-three .lp-text-content .continue-reading-link{float:none; text-align:center; width:105px; margin:0 auto;}

    Thanks!

    #72341
    Zed
    Cryout Creations mastermind

    If (de)activating the child theme makes the link change, then the code doing that is present in the child theme. Are style.css and functions.php the only files present in the child theme?


    If you like our creations, help us share by rating them on WordPress.org.
    Please check the available documentation and search the forums before starting a topic.
    #72401

    Yes, I the only file edited is funtcions.php with the code posted in a previous post in this thread. The style.css file only contains the following:

    /*
    Theme Name: Kahuna Theme Child
    description: >-
      Kahuna Child Theme
    Author: Claudia
    Template: kahuna
    Version: 1.0.0
    Text Domain: kahuna-child
    */
    

    My css changes were made from the theme custom css tab when clicking Appearance and then Customize option. The changes that I did, were the ones posted in a previous post in this thread.

    I’ve also tried to deactivate all my plugins and I got the same the result.

    Thanks

    • This reply was modified 5 years ago by claubs.
    • This reply was modified 5 years ago by claubs.
Viewing 7 posts - 1 through 7 (of 7 total)

The topic ‘Powered by link redirects to the incorrect website’ is closed to new replies.