Search Results for 'theme'
-
AuthorSearch Results
-
August 25, 2011 at 2:53 pm #119058
In reply to: BP 1.5b2 – BP Options per site
Ash Shaw
ParticipantThanks a lot. In our case each site on the network will be using buddypress, but they won’t be sharing posts / comments between them. Also, all of these sites are sharing a single child theme. I suppose I could add a condition to the function to whitelist only the current site id, preventing updates streaming in from any of the other sites. Will give it a shot.
August 25, 2011 at 7:06 am #119041Sennza Pty Ltd
ParticipantThanks @modemlooper. I had been considering having to do an option like that. I’ll give that one a whirl tomorrow and see how I go.
Hey @djpaul, yeah they all have spaces in them. All the existing users come in with spaces in their name in a First Name, Last Name kind of way. I tried changing the ‘Nickname’ and ‘Display Name publicly as’ fields in my own profile to see what would happen yesterday and that obviously doesn’t have anything to do with it as you can see here: http://edgeqld.org.au/members/Bronson%20Quick/
I know the site was originally WordPress MU then it went to WP 3.0 then up to WP 3.2 and installed the BP theme and plugins on top of that. I didn’t have any existing users on my staging site so didn’t hit this problem til we went live….now I’m cowboy coding fixing bugs and I’m completely stuck with this one!
August 25, 2011 at 3:55 am #119034In reply to: Way to Change Groups
@mercime
Participant== but would love to see anything that didn’t require changing the theme….==
Choice for either allowing all members or the admin only to create groups is in BP 1.5 beta 2== I want to be able to create a user role that has moderator access to all groups.==
A global forum moderator role is not available in the current version of the BuddyPress forum integration at this time.August 25, 2011 at 3:44 am #119032In reply to: Advanced settings for group forums?
@mercime
ParticipantSingle WP or Multisite? BP installed in domain root or secondary blog? Linux or Windows server?
Change to bp-default theme.
Deactivate all plugins except BP.
Groups are enabled in your BP Settings.
Check root where you installed WP (domain root, subfolder or subdomain), if there’s a bb-config.php, delete it. Also, make sure you didn’t install/activate BP in a subfolder/subdomain named the same as one of BP components – i.e. shouldn’t be groups, members, forums, etc. you get the drift.August 24, 2011 at 9:20 pm #119018In reply to: Way to Change Groups
cwhittl
MemberI found this for the disable normal users for creating (https://buddypress.org/community/groups/requests-feedback/forum/topic/group-administration/?topic_page=3&num=15) but would love to see anything that didn’t require changing the theme….
Also a concept on the 2nd point. I think if I could find were the logic to allow super admins to be a group admin and add logic to allow people in certain roles to do them as well… but I’m not sure were that would be..
August 24, 2011 at 9:10 pm #119016kizinko
ParticipantOk, so I finally got the code to do something without breaking the site, but it did the opposite of what I need. It still shows the posts on the home page for the group that I’m trying to hide, but the activity stream for that group no longer shows those posts…lol. I need the home page to hide those posts and the group activity stream for that group to show it’s own posts.
The code I used is as follows:
‘
‘
It is located in the file /buddypress/bp-themes/bp-default/activity/activity-loop.php. I am guessing I’m just working in the wrong file. Can anyone help me find where I need to insert this code (if it is even right)?
August 24, 2011 at 7:53 pm #119014kizinko
ParticipantHello modemlooper,
Thanks for your response. I still can’t quite get it to work though. I am not very good with PHP yet, so I assume it is my terrible coding. Here is how I tried to incorporate it into /buddypress/bp-themes/bp-default/activity/activity-loop.php:
while ( bp_activities() ) : bp_the_activity();
if(bp_get_group_name() != ‘Failed Sundays’ )
include( locate_template( array( ‘activity/entry.php’ ), false ) )
endif;
endwhile;What am I doing wrong? Am I even in the right file?
Sorry for being such a noob…..
August 24, 2011 at 5:58 pm #119008kizinko
ParticipantHello modemlooper,
Thanks for your response. I still can’t quite get it to work though. I am not very good with PHP yet, so I assume it is my terrible coding. Here is how I tried to incorporate it into /buddypress/bp-themes/bp-default/activity/activity-loop.php:
What am I doing wrong? Am I even in the right file?
Sorry for being such a noob…..
August 24, 2011 at 3:12 pm #118995In reply to: BP style help needed please
kizinko
ParticipantFirst thing, you need a child theme if you haven’t already created one. Doing a quick search online should find directions on how to do it if you need.
Second, In that child theme you need a CSS file to make changes to your buddypress site’s style.
Third, there is a buddypress file called default.css where all the default styling is set up. In many cases your CSS file and the default file will have conflicts, but not to worry…there is a solution.
Using code from karmatosed from above, I’ve added a couple of modifications.
a, a:link{color: #ffffff !important;}
a:visited{color: #ffffff !important;}
a:hover{color: #ffffff !important;}Hope this helps!
August 24, 2011 at 2:46 pm #118993alfredojp
Participant@mercime i’m using the buddyboss theme. I ifgured out the problem to my first question…it was just taking out the code in the archive.php file
August 24, 2011 at 2:42 pm #118991@mercime
ParticipantThere’s no blog-loop.php in bp-default theme. So what theme are you using?
August 24, 2011 at 12:33 am #118952In reply to: BP style help needed please
juxair
Memberty for your fast reply karma
i added it to the (my) theme style.css
NO change ….
if you visited my site you can see that all links are white or orange or green (link visited hoover)
BUT they do not get accepted in BP…i hope you have an idea…
ty again regards
awe
August 23, 2011 at 10:36 pm #118933In reply to: Reserving usernames
Henry
MemberThanks @modemlooper, in return i’ll try and test your mobile theme

Pay it forward.
August 23, 2011 at 9:38 pm #118931In reply to: custom theme
Tammie Lister
ModeratorAre you using the_content or the_excerpt to show the content? the_excerpt should give you exactly that an excerpt so if using you would need to make that smaller:
https://codex.wordpress.org/Function_Reference/the_excerpt
Specifically useful to you would be this:
function new_excerpt_length($length) {
return 20;
}
add_filter('excerpt_length', 'new_excerpt_length');
August 23, 2011 at 9:36 pm #118929In reply to: BP style help needed please
Tammie Lister
ModeratorYou appear to not have a style for the links so as a result yes it is going to default.
Try this:
a, a:link{
color: #ffffff;
}
a:visited{
color: #ffffff;
}
a:hover{
color: #ffffff;
}
I listed hover and visited separately as ideally you’d show those states with a colour variation even if a slight one of #eeeeee or something.
Put the code in your stylesheet / child theme preferably would be one to have this (don’t know what set up you are using). It should then work otherwise please post back and say where put to aid diagnosis.
August 23, 2011 at 6:40 pm #118919@mercime
ParticipantBasically, the solution was to refrain from renaming divs within HTML structure in child theme of bp-default unless you know what you’re doing and make corresponding change in js where required as well. Re-upload BuddyPress and you should be good to go – unless you’re using a totally customized bp-default child theme then you need to contact theme author.
August 23, 2011 at 6:28 pm #118916In reply to: how to covert wordpress them to buddy press
@mercime
Participant@incrediblehimachal As valuser mentioned above, install BP Template Pack plugin
The process – https://codex.buddypress.org/theme-development/wordpress-to-buddypress-theme/
An example – https://codex.buddypress.org/theme-development/bp-template-pack-walkthrough-level-easy-2/August 23, 2011 at 4:43 pm #118910In reply to: Show template paths for debugging purposes?
Tammie Lister
ModeratorYou mean what is using activity / groups and files in it unless I’m mistaken?
I can’t think of a quicker method than having the default theme open with child and following the path it’s fairly accessible in 1.5.
Some links that may help you:
https://codex.buddypress.org/theme-development/building-a-buddypress-child-theme/
https://codex.buddypress.org/theme-development/the-bp-default-theme/
https://codex.buddypress.org/theme-development/wordpress-to-buddypress-theme/
https://codex.buddypress.org/theme-development/bp-template-pack-walkthrough-level-easy-2/However, if I’ve missed the mark can you give me an example of what you want to do may help me see?
August 22, 2011 at 7:50 pm #118861In reply to: How to restrict users to child theme only
modemlooper
ModeratorThis could be the issue not sure but to run BuddyPress you need to have a capable theme.
Are you running BuddyPress? I know its a silly question but people have posted on here before about WP issues.
August 22, 2011 at 5:21 pm #118857In reply to: Changing text colors in bp-default theme.
kizinko
ParticipantYes, what wilfil said will change the link color to a darker blue, but if you want more control over how dark it will be you can replace the word “blue” in his code “a {color:blue !important;}” to a hexadecimal value.
After doing a quick google search I found http://www.2createawebsite.com/build/hex-colors.html. Scroll down to the color box and after you select the color just copy and paste the hex value from the bottom right of that box. You will need to include the “#” along with the six digits that follow it in your code.
Example:
a {color:#0C19A2 !important;}To further explain the “!important” exclamation, it just allows you to override CSS properties already assigned to an element. In this case the color property is being overridden from the default.css blue (which has already been set by buddypress) to your newly assigned color for the “a” element.
Hope this helps!
August 22, 2011 at 5:02 pm #118856In reply to: How to restrict users to child theme only
w101
Participant“BuddyPress ready” – this is new to me
Ummm… I’m just using 20 10 default that came with WordPress. If there is another can you point me to it?Thank you!
August 22, 2011 at 5:00 pm #118855In reply to: How to restrict users to child theme only
modemlooper
Moderatoryeah, I’m saying do not use the default themes that come with wordpress. Just to test. It shouldn’t matter but I think there have been problems with using default WP theme and children on MultiSite.
Is your 20 11 parent theme BuddyPress ready? This could also be a problem. If you are using BP Template pack and 20 11 and then trying to use a child on top of that.
August 22, 2011 at 5:00 pm #118854In reply to: How to restrict users to child theme only
w101
Participantbtw, i’m now displaying PHP errors with display_errors = On via php.ini and all i see is the same blank white page
August 22, 2011 at 4:52 pm #118852In reply to: How to restrict users to child theme only
w101
ParticipantJust tried with 20 10 and I have the same problem. It won’t take hold of the child theme. I just get a blank white screen.
August 22, 2011 at 4:46 pm #118851In reply to: How to restrict users to child theme only
modemlooper
Moderatoralso when you get a white page it could be a php coding error in your theme
-
AuthorSearch Results