Forum Replies Created
-
Author
-
wd7080Participant
Hi
None of the above worked. I added the above to functions.php. I am using php storm, I have gotten a notification of error.
I created a buddypress folder inside kleo-child named it buddypress and inside it, I added members folder.
I customized the message and uploaded register.php to the memebers folder. No change
Please advice
wd7080ParticipantI am not sure how to do this, but I will try to figure it out later today. For now, will you consider this as an update on the next theme release?
Thanks
October 31, 2015 at 23:13 in reply to: Buddypress menu are not working and kleo menu is forced #85280wd7080ParticipantBy the way, has anyone in this forum discussed the possibility of removing the name field in buddypress?
October 31, 2015 at 22:58 in reply to: Buddypress menu are not working and kleo menu is forced #85274wd7080ParticipantThank you
October 31, 2015 at 21:44 in reply to: Buddypress menu are not working and kleo menu is forced #85234wd7080ParticipantBut kleo menu was not working previously and I was fine with it until I used it. It’s like I can’t undo it now.
I have other theme that I use and I am happy with it that I can use buddypress default menu. Kleo is enforcing it’s own menu which I don’t find it right. Users must have the option to use alternatives. Isn’t that?
I like the theme because it has instant notification but I am not fine with the menu.
October 31, 2015 at 19:42 in reply to: Buddypress menu are not working and kleo menu is forced #85225wd7080ParticipantThis reply has been set as private.wd7080ParticipantThis reply has been set as private.wd7080ParticipantHi Laura
What I want giving the border above the footer the following styles:
COPY CODEhr { color: #393939; background-color: #333; height: 5px; }
wd7080ParticipantThis reply has been set as private.wd7080ParticipantI tried with important declaration and without and still it doesn’t work
wd7080ParticipantHello,
Thanks for the code:
COPY CODE.member-inner-list.animated.animate-when-almost-visible.bottom-to-top.start-animation { -webkit-animation: none; -o-animation: none; animation: none; opacity: 1; -moz-transform: none; -webkit-transform: none; -o-transform: none; transform: none; }
It did not work. Could you please advice?
Thanks
wd7080ParticipantHello
The above code does not remove animations for buddypress. I would be glad if you provide me with a code that also removes buddypress animations. I simply don’t want to see any animation. Can you please help?
Thanks
wd7080ParticipantThanks, I want to confirm with you the following:
1. I have deleted the default functions.php that comes with the theme, is there anything to worry about?
Another thing:
2. I added<?php } ?>
to the end of functions.php. Is this fine?I appreciate your help.
wd7080Participantand one more thing, am I safe to delete what the child default functions.php below? Does the block below import data from somewhere else or it’s just informational comments?
COPY CODE<?php /** * @package WordPress * @subpackage Kleo * @author SeventhQueen <themesupport@seventhqueen.com> * @since Kleo 1.0 */ /** * Kleo Child Theme Functions * Add custom code below */
wd7080ParticipantWell, I am using multisite and in multisites I can’t upload a FAV ico. I insert this code to the functions.php but for some reason I can’t get it work:
COPY CODEdefine('ALLOW_UNFILTERED_UPLOADS', true); add_filter('upload_mimes', 'pixert_upload_types'); function pixert_upload_types($existing_mimes=array()){ $existing_mimes['flv'] = 'video/x-flv'; $existing_mimes['mid'] = 'audio/midi'; return $existing_mimes; }
Please check: https://wordpress.org/support/topic/sorry-this-file-type-is-not-permitted-for-security-reasons-3
wd7080ParticipantThis is all of what I have in my functions.php:
COPY CODE<?php /** * @package WordPress * @subpackage Kleo * @author SeventhQueen <themesupport@seventhqueen.com> * @since Kleo 1.0 */ /** * Kleo Child Theme Functions * Add custom code below */ // ADD FAVICON TO HEADER function blog_favicon(){echo '<link rel="Shortcut Icon" type="image/x-icon" href="'.get_bloginfo('template_directory').'/favicon.ico">';} add_action('wp_head', 'blog_favicon'); ?>
-
AuthorPosts