-
Author
-
February 19, 2016 at 16:57 #105067koenvdlParticipant
Hello,
Is it possible to change the register panel? I would like to get rid of the hart icon.
Hope you can help me.
Kind regards,
Koen van der Lip
Attachments:
You must be logged in to view attached files.February 20, 2016 at 23:55 #105415LauraModeratorHello, please check https://archived.seventhqueen.com/forums/topic/icons-change/#post-101506
Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solutionLaura Solanes - Graphic Designer and Web Designer
Please be patient as I try to answer each topic as fast as i can.
If you like the theme or the support you've received please consider leaving us a review on Themeforest!
Always happy to help you 🙂
February 24, 2016 at 14:41 #106216koenvdlParticipantThank you for your reaction,
I still had a question.
Where can I find the functions.php?February 25, 2016 at 20:57 #106709LauraModeratorat your child theme files, using ftp
Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solutionLaura Solanes - Graphic Designer and Web Designer
Please be patient as I try to answer each topic as fast as i can.
If you like the theme or the support you've received please consider leaving us a review on Themeforest!
Always happy to help you 🙂
February 27, 2016 at 13:33 #107063koenvdlParticipantCan you give me an specific explanation of how to do it because I can’t get it done.
Kind regards,
Koen
February 28, 2016 at 00:34 #107163LauraModeratorHello, yes, at your hosting panel you should have a file manager, go there and go to public_html/wp-content/themes/sweetdate-child and you will find functions.php there, edit it and add the code
Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solutionLaura Solanes - Graphic Designer and Web Designer
Please be patient as I try to answer each topic as fast as i can.
If you like the theme or the support you've received please consider leaving us a review on Themeforest!
Always happy to help you 🙂
March 4, 2016 at 14:51 #108502koenvdlParticipantHello. Thank you, I found the file . but when I paste the text in my functions.php of my child theme it shows up on top of my site instead of changing the heart icons ( see attached file ) what did I do wrong?
Attachments:
You must be logged in to view attached files.March 5, 2016 at 14:18 #108740vinz98ParticipantHi Koen, I am not support but,
Did you miss the closing tag at the end?
function my_custom_icon_about_widget () {
return ‘user’;
}Greets
March 5, 2016 at 19:02 #108779koenvdlParticipantHi Vinz,
Thank you for the reaction, but even with the closing tag it is still showing the same text on top of the page.
Kind regards
March 7, 2016 at 18:44 #109058LauraModeratorHello, can you share your functions.php file as a txt here please? 🙂
Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solutionLaura Solanes - Graphic Designer and Web Designer
Please be patient as I try to answer each topic as fast as i can.
If you like the theme or the support you've received please consider leaving us a review on Themeforest!
Always happy to help you 🙂
March 8, 2016 at 23:15 #109350koenvdlParticipantHello, yes see text beneath:
<?php
/**
* @package WordPress
* @subpackage Sweetdate
* @author SeventhQueen <themesupport@seventhqueen.com>
* @since Sweetdate 1.0
*//**
* Sweetdate Child Theme Functions
* Add extra code or replace existing functions*/?>
add_action(‘after_setup_theme’,’kleo_my_hearts_actions’);function kleo_my_hearts_actions()
{/* Replace the heart over images */
add_filter(‘kleo_img_rounded_icon’, ‘my_custom_icon’);/* Replace the heart from register modal */
add_filter(‘kleo_register_button_icon’, ‘my_custom_icon_register’);/* Replace the heart from About us widget */
add_filter(‘kleo_widget_aboutus_icon’, ‘my_custom_icon_about_widget’);
}/* Replace the heart with a camera icon function */
function my_custom_icon () {
return ‘camera’;
}/* Replace the heart from register modal with a user icon function */
function my_custom_icon_register () {
return ‘user’;
}
/* Replace the heart from about us widget with a user icon function */
function my_custom_icon_about_widget () {
return ‘user’;
}March 10, 2016 at 19:13 #109830LauraModeratorHello, try adding this at the end of the code ?>
Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solutionLaura Solanes - Graphic Designer and Web Designer
Please be patient as I try to answer each topic as fast as i can.
If you like the theme or the support you've received please consider leaving us a review on Themeforest!
Always happy to help you 🙂
-
AuthorPosts
You must be logged in to reply to this topic.