-
AuthorPosts
-
December 30th, 2018 at 15:05 #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,
ClaudiaWebsite: claudia-badell.com
- This topic was modified 5 years ago by claubs.
December 31st, 2018 at 18:14 #72257ZedCryout Creations mastermindThere 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.December 31st, 2018 at 21:57 #72264Hi! 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,
ClaudiaJanuary 1st, 2019 at 19:35 #72276ZedCryout Creations mastermindWe 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.January 2nd, 2019 at 14:49 #72288If 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 versionbut 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!
January 3rd, 2019 at 18:17 #72341ZedCryout Creations mastermindIf (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.January 5th, 2019 at 12:39 #72401Yes, 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
-
AuthorPosts
The topic ‘Powered by link redirects to the incorrect website’ is closed to new replies.