Forum Replies Created
-
Author
-
JosiahParticipant
Of course. http://community.brinkoffreedom.net
I have mycred up and running but have not yet implemented BadgeOS.JosiahParticipantThat worked while on Home and Blog pages but it is not working in Activity or the groups/members directory.
JosiahParticipantAdding !important moved the text down but not the shaded background.
.top-bar {margin-top: 28px !important;}
JosiahParticipantI was having the same issue. I put that into my quick css but am still having the issue. Here is what is in my quick css:
.fixed.log-entries {position:static;}
.top-bar { margin-top: 28px; }
Am I doing something wrong?JosiahParticipantI have that same issue. It is due to the length of the names. If the names of the groups are shorter it looks better. Not sure how to resolve it so that it looks good with shorter names.
JosiahParticipantThat does not help me. I am trying to add “Profile Fields” tabs. I have four tabs total:
1. Base
2. Summary
3. Physical
4. LocationIn my functions.php file I do not see anything about tabs. I do have the child theme active. Here is the functions.php
<?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_actions');
function kleo_my_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 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';
}/* Filter the redirect url for login*/
add_filter("login_redirect","kleo_redirect_to_profile",100,3);function kleo_redirect_to_profile($redirect_to_calculated,$redirect_url_specified,$user){
/*if no redirect was specified,let us think ,user wants to be in wp-dashboard*/
if(!is_super_admin($user->ID))
return bp_core_get_user_domain($user->ID );
else
return $redirect_to_calculated; /*if site admin*/
}
add_action('bp_init','bpdev_remove_bp_pre_user_login_action');
function bpdev_remove_bp_pre_user_login_action(){
remove_action( 'pre_user_login', 'bp_core_strip_username_spaces' );
}//add a filter to invalidate a username with spaces
add_filter('validate_username','bpdev_restrict_space_in_username',10,2);
function bpdev_restrict_space_in_username($valid,$user_name){
//check if there is an space
if ( preg_match('/\s/',$user_name) )
return false;//if myes, then we say it is an error
return $valid;//otherwise return the actual validity
}?>
JosiahParticipantHere is what the myCRED support had to say about the issue:
myCRED comes with very little built-in styling which means that if items seem “out of place” it is usually because of the CSS styling applied to them via your current theme (sometimes other plugins).
Check what styling is applied to this bar, could be that a default styling is applied to the table element (which is what is used for the history) pushing it up into the corner.
JosiahParticipantI am having a similar issue. “About Me” and “My Photos” are the only tabs showing. I am viewing a profile that does have all of the profile fields filled out.
JosiahParticipantI am using PayPal standard. Verified IPN’s are correct on both my site and on paypal.
JosiahParticipantFigured it out. It was a conflict with BadgeOS plugin. Apparently there is a issue with one of the badeges. Once I removed all badges it worked with BadgeOS still activated. Conflict somewhere, probably with registration badge or something.
JosiahParticipantIt is something with the host. They are checking into it. They said my php.ini looks good.
JosiahParticipantI figured it out. It is a conflict with Membership plugin and Groups Hierarchy plugin. If I disable Groups Hierarchy it works fine. That stinks. I will get ahold of the Groups Hiearchy developers and see if there is a resolution.
JosiahParticipantThat does work however “Groups” is the only part of buddypress I would not like to have a sidebar. I would also like to set different sidebars for different parts of buddypress. IE different sidebar for activity stream and a different sidebar for groups. Is that possible or is it all or nothing in BuddyPress pages?
September 30, 2013 at 08:27 in reply to: Buddypress bug: users with spaces in their usernames can’t register #3582JosiahParticipantWorked great!
JosiahParticipantI lied. Everything but groups is working fine. Groups page will not allow me to manipulate the layout template/sidebar.
JosiahParticipantI miscellaneous settings what is the difference between:
Enable Registration via Facebook
If you enable this, users will be able to register a new account using Facebook. This skips the registration page including required profile fieldsand
Facebook integration
Enable or disable Login/Register with FacebookJosiahParticipantNot sure why but now the error is:
Fatal error: Allowed memory size of 67108864 bytes exhausted (tried to allocate 30720 bytes) in /home/brink/public_html/sandcomm/wp-content/plugins/buddypress/bp-friends/bp-friends-functions.php on line 104
September 25, 2013 at 13:57 in reply to: Buddypress bug: users with spaces in their usernames can’t register #3308JosiahParticipantWhere does that code go? theme/functions.php?
JosiahParticipantThat code worked for me. Hopefully the next rtmedia update doesn’t break it. They just did a update and still didnt work for me without sqadmins code.
-
AuthorPosts