-
Author
Tagged: graphics, logo, privacy statement
-
December 27, 2015 at 01:13 #95321
buzztwitter
ParticipantMerry Christmas Guys
Need a graphic removed from the login box, as I am not using this as a dating site, I would like to add my own graphic in its place. Also I have paid membership pro installed and I thought anyone who is not a member should default to the paid registration page.
Once more thing added the privacy statement via the sweetdate drop down but I cant see it anywhere
December 28, 2015 at 20:54 #95472Laura
ModeratorHello, the registration works like this: The user register and logs in, then the membership levels page appears so he can choose one. If he access a restricted page he will be redirected to go to the levels page.
To remove the hearts just add this to functions.php of child theme ( you should have child theme activated )COPY CODEadd_action('after_setup_theme','kleo_my_hearts_actions'); function kleo_my_hearts_actions() { /* disable matching on member profile */ remove_action('kleo_bp_before_profile_name', 'kleo_bp_compatibility_match'); /* 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'; }Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solution -
AuthorPosts
You must be logged in to reply to this topic.