Search Results for 'theme'
-
AuthorSearch Results
-
December 19, 2010 at 11:59 pm #100969
In reply to: Cancel Friendship Button in 1.2 Default Theme
glittereyes
ParticipantI agree to this! For now, how can I switch the places between the cancel friendship button with send private message buttons?
December 19, 2010 at 11:47 pm #100968In reply to: Buddypress version of wordpress 'mystique' theme?
bojan85
ParticipantHi everyone I am a beginner at all this and I am having a little problems with the bp implementation with the bp -mystique theme and was wondering if someone could guide me towards the right direction. The wp portion of the site is looking good but as soon as i go to a bp part the header is not where it suppose to be there is a big space and the background image for the site is not there anymore.
It seems that the bp is not registering the modification I have made on the wordpress part.
the site im working on is icacsports.com
Any help would be most appreciated
cheers,
December 19, 2010 at 11:01 pm #100967@mercime
ParticipantIs this a new installation or did you recently upgrade WP? WP/BP versions? What theme are you using?
Deactivate all plugins but leave BuddyPress activated and use bp-default theme. Clear cache. See if the same erratic behavior shows up.
December 19, 2010 at 9:13 pm #100962In reply to: Help with Messaging and @mentions
stoi2m1
Participant@boonegorges , @r-a-y I have setup my test environment and I have found that it is my theme causing the problem. I have made some changes to it and Im not certain to which area I should be looking in for problems. Can you point me to some of the main function which are used for the messaging? Thanks.
December 19, 2010 at 5:57 pm #100950In reply to: bp social theme problem
@mercime
Participant@ivailoski please contact theme author as that is a premium theme which would require us to purchase it first to assist you.
My best guess would be to open up a home.php file in your theme, make a copy of it to be safe e.g. home-original.php, open up home.php and delete the section which would probably a featured div or something like that. Reupload to theme’s folder in server. If you deleted the correct div block, then all’s well. If something goes wrong, replace the mucked up home.php with the copy you made of it.
December 19, 2010 at 5:37 pm #100948@mercime
ParticipantChange theme to bp-default theme and see if same behavior persists. If not, then contact Social Theme author for resolution.
December 19, 2010 at 2:40 pm #100936In reply to: Default Activity Streams Are Backwards IMHO
calvinhsu
ParticipantHi guys, I just searched and followed the links here.
I tried moving the code for the “All activity” tab in a child theme, and managed to move the tab to the right of “@mentions” tab.
The problem is although “My friends” tab is now the first tab and appears to be active by default (I added class=”selected” for it), but the rss feed area still displays sitewide activties.
In my understanding, buddypress loads “all activities” when the activity page is opened, and by clicking tabs or setting filter in the dropdown menu, it filters the loaded activites.
So I guess if there is code for filtering and displaying only “my friends” activities, so we could add the code right after bp loads all activities.
Does this sounds reasonable? Anyone has any idea?
December 19, 2010 at 2:30 pm #100935In reply to: Prevent Admin Bar from interfering with themes
beholdcreative
Memberfjrichman… I agree this is a problem. It would be one thing if BuddyPress only added the padding when the site visitor was logged in, but it’s poor form to add 25px pixels padding to the body regardless. I understand that it would be a problem for WordPress developers who don’t call body_class(), but, by default, the BuddyPress default stylesheet (adminbar.css) should specify its padding on body.logged-in, not on the generic body tag. In any case, that’s the easiest solution I know of. Just modify adminbar.css (most likely at /wp-content/plugins/buddypress/bp-themes/bp-default/_inc/css/adminbar.css) on the first line to body.logged-in. If for some reason you have themes that don’t or can’t call body_class(), you can use the is_user_logged_in function to override the BuddyPress styling. Something like: `body#mypage { padding: 0px; } `. Hope that helps, two months later.
—
Looking back at your question, I see that you were actually asking more generally to start about BuddyPress tweaking a design wether or not the user is logged in. Well, in that case it would be harder to have a one-size-fits-all solution. Sorry if I missed the thrust of your question, but this may be helpful to others.December 19, 2010 at 6:06 am #100931Virtuali
ParticipantCustom theme…..
Default theme…..
December 19, 2010 at 12:56 am #100923In reply to: Changing Size Of Forum Cloud Tags
streamstalker
MemberI figured it out… FYI
Changing smallest size, largest size, and max number of tags for BP defualt theme:
1. FTP to – example.com/wp-content/plugins/buddypress/bp-forums/ – in your WP directory
2. Open – bp-forums-templatetags.php
3. Ctrl +F to find – bp_forums_tag_heat_map
4. Edit and SaveDecember 19, 2010 at 12:44 am #100921streamstalker
MemberHere is one of the easiest ways to change the amount of activity stream posts per page in the default BuddyPress theme.
1. FTP to – example.com/wp-content/plugins/buddypress/bp-activity/ – in your WP directory
2. Open – bp-activity-templatetags.php – in your text editor
3. Ctrl + F – then enter – ‘per_page’
4. Just change the value following – ‘per_page’ =>December 18, 2010 at 3:43 pm #100894In reply to: Members, groups and Member Blog pages not working
Mark
ParticipantJust as an update, its not working in IE anymore so I tried deactivating all the plugins, uninstalling Buddypress, rebooting the server and reinstalling buddypress with no plug-ins active and I still had the same issue with the links not loading. I know it’s not the theme because my theme works fine on my test site. Any other ideas? Maybe its is a php, javascirpt or ajax issue or memory leak of some kind? I’m not sure what is used to make those links load. Any more help is very appreciated.
December 18, 2010 at 5:13 am #100871In reply to: Help with Messaging and @mentions
Boone Gorges
KeymasterNotifications for at-mentions will be in BP 1.3: https://trac.buddypress.org/changeset/3403
Your messaging problem sounds strange, like your installation somehow got corrupted, or like you have a plugin conflict. Are you running any other BP-related plugins? Try deactivating them and turning on the BuddyPress Default theme for the sake of testing; that will help determine whether the problem is with BP, or your BP configuration, or with third-party add-ons.
December 18, 2010 at 12:35 am #100847In reply to: Max image size?
@mercime
ParticipantIf you created a parent theme and your subsites have child themes based on parent theme, add this to parent theme’s functions.php file
`<?php
/* force max-width for images and embeds */
$GLOBALS = $content_width = 600;
?>`
change 600 to whatever image size you want. This will override whatever number you set in individual sites’ Media settings for “Large”As for implementation for all different themes within your installation, you could create a new file `my-maxwidth.php`, paste the code given above there and upload to mu-plugins folder. Make sure that the width you add there is good for all the themes you have allowed for use of members in Super Admin > Themes.
December 17, 2010 at 9:20 pm #100832In reply to: BP chat….please help!!!
Tekuan Coleman
Memberthanks a lot guys…i’ve experienced this with a lot of the BP plugins, links as well, had to delete that 1 as well. im using suffusion theme eyes i deleted it. really like the screenshots and was trying now to tweak it….it was ajax-chat plugin. how do i do the test site
December 17, 2010 at 8:44 pm #100820Andrea Rennick
ParticipantThe GPL only applies to *distribution*. If your client plans on packaging up the website somehow… then worry about it.
“Does that mean that all of the code for this project would have to be GPL licensed and made available for free because we use BuddyPress for social networking? “
no, it does not. only if you actually *release * it. Just having it as part of your website is not releasing your code.
think of it this way – Buddypress is a plugin for WordPress. Anyone who build a site on WordPress itself is also not required to release their code.
(and I will note that GPL doesn’t mean it has to be free either. There’s plenty of for-sale GPL plugins and themes.)
December 17, 2010 at 7:53 pm #100819Tekuan Coleman
Memberim using a child with suffusion as the parent theme
December 17, 2010 at 7:44 pm #100817Anonymous User 96400
InactiveThese screenshots have been taken from the default theme, so if you’re using that you already have what you want. The drop down menu is just another way to navigate your site, but can be deactivated if you want to do that.
December 17, 2010 at 6:25 pm #100811In reply to: WHOLE Forum section malfunctioning
José M. Villar
ParticipantThx @djpaul for looking into this
Trust me, all I did was add a forum topic !
Thought it was a theme related issue, but as you can see, even under default the problem still occurs.
And I disabled EVERY bp pluginDecember 17, 2010 at 6:11 pm #100809Hugo Ashmore
ParticipantAs Boone suggests these are just styling concerns aren’t they? Tabs are simply artifice, an illusion created through CSS; thus for bp-default you must create a child theme to allow you to re-style those links in the manner you wish.
December 17, 2010 at 4:48 pm #100797In reply to: Groups Tab as the Homepage? Have a hack in place
AJ Martin
Participanti guess best bet then is to create a child theme and move the group/index.php as the root index.php ?
December 16, 2010 at 11:07 pm #100765Dolphus
MemberPaul,
I disable all plugins, revert to bp-default theme, and enable plugin buddypress, and new install bbpress, i try internal and the external….
not working… still link broken…. error below…
“PHP Warning: fopen(E:homenetworkservicemarketWebturmadoesporte/bb-config.php) [function.fopen]: failed to open stream: Permission denied in E:homenetworkservicemarketWebturmadoesportewp-contentpluginsbuddypressbp-forumsbp-forums-admin.php on line 238
PHP Warning: fwrite(): supplied argument is not a valid stream resource in E:homenetworkservicemarketWebturmadoesportewp-contentpluginsbuddypressbp-forumsbp-forums-admin.php on line 245
PHP Warning: fwrite(): supplied argument is not a valid stream resource in E:homenetworkservicemarketWebturmadoesportewp-contentpluginsbuddypressbp-forumsbp-forums-admin.php on line 245
…
…
PHP Warning: file_get_contents(E:homenetworkservicemarketWebturmadoesporte/bb-config.php) [function.file-get-contents]: failed to open stream: No such file or directory in E:homenetworkservicemarketWebturmadoesportewp-contentpluginsbuddypressbp-forumsbp-forums-admin.php on line 150
PHP Warning: fopen(E:homenetworkservicemarketWebturmadoesporte/bb-config.php) [function.fopen]: failed to open stream: Permission denied in E:homenetworkservicemarketWebturmadoesportewp-contentpluginsbuddypressbp-forumsbp-forums-admin.php on line 177
PHP Warning: fwrite(): supplied argument is not a valid stream resource in E:homenetworkservicemarketWebturmadoesportewp-contentpluginsbuddypressbp-forumsbp-forums-admin.php on line 178
PHP Warning: fclose(): supplied argument is not a valid stream resource in E:homenetworkservicemarketWebturmadoesportewp-contentpluginsbuddypressbp-forumsbp-forums-admin.php on line 179″December 16, 2010 at 6:07 pm #100722Paul Wong-Gibbs
KeymasterFirst of all, it’s not a database version. CSS in WordPress and BuddyPress has those “get” parameters in the URL as a means of forcing browsers to refetch the file rather than use its cached version. For example, when BuddyPress is upgraded in v1.3, you don’t want people to be loading the browser cache version of the CSS for v1.2. This is exactly what hnla told you above four weeks ago.
Secondly, if your theme is trying to load two versions of that file, it’s because in your child theme (or customised version thereof) is calling it twice. I can’t comment where or how this could be happening as we can’t see any custom script you’ve put into your theme.
Finally, you should be safe to copy and paste the php snippet r-a-y gave you two weeks ago into your functions.php; just be sure to paste it before the “?>” line at the bottom of the file.
December 16, 2010 at 3:50 pm #100712zomex
MemberThanks for your reply. I’d rather not touch the functions.php file due to a lack of knowledge of PHP.
The problem is that Buddypress is loading 2 different CSS files for the admin bar. They are:
/buddypress/bp-themes/bp-default/_inc/css/adminbar.css
and
/buddypress/bp-themes/bp-default/_inc/css/adminbar.css?ver=3.0.3
On the adminbar.css file I made changes so the admin bar stretches across the whole page.
When visiting a sub-domain blog it loads the second file called adminbar.css?ver=3.0.3 so my admin bar doesn’t stretch across the whole screen anymore. I can’t edit this file as it doesn’t exist and is inserted via a line of PHP in the header.php file.
Honestly I’m very close to giving up with Buddypress completely as I’ve been trying to resolve this issue for over a month now. No one knows why Buddypress is adding this database version of the adminbar.css file and I don’t see why it’s doing it either.
I can edit /buddypress/bp-themes/bp-default/_inc/css/adminbar.css?ver=3.0.3 via Firebug and change the 1 line of code to fix the admin bar but I can’t reach that file as it doesn’t exist at all.
Jack
December 16, 2010 at 2:04 pm #100703In reply to: convert theme
pakhermawan
Member@marcime thank you for your answer my friend….. now i understand
-
AuthorSearch Results