Search Results for 'theme'
-
AuthorSearch Results
-
September 15, 2010 at 10:52 am #92493
In reply to: WP in Subdirectory, BP 1.3svn, home link incorrect
t.sjogren
ParticipantHi
If i install WP in a subdir then the homelink is incorrect. This is because the call for the homelink is set by the tempatetag site_url() and not bloginfo(url). So to correct this edit line 48 in header.php in bp_default theme like this.
Before:
After:WARNING. This changes will be lost if you upgrade buddypress. A bettter way to do it would be to create a child theme and copy header.php to the child theme. Or even better create a function in functions.php that fixes this.
Nav code cut-out frpn header.php
-
<li class=”selected”>
<a href=" ” title=””>Question: Is this a known bug?
September 15, 2010 at 9:24 am #92489In reply to: Avatar crop error
thelandman
Participant@tiam, @aelofoge, Make sure you are running jquery 1.4.2. Ensure that your theme/childtheme isn’t trying to call a different version of jquery. Or make sure at one of your plugins aren’t using their own version of jquery. I had the same problem and I solved it by making sure I was using the correct version of jquery.
September 15, 2010 at 6:18 am #92482In reply to: adding content to the 1.2 default theme homepage
Dia Ritoch
ParticipantI got this solution from Mr. Brajesh Singh:
This is a problem with Buddypress 1.2
There are a few ways to fix this though.
In your bp-custom.php, put these lines, and it should work.define(“BP_HOME_BLOG_SLUG”,”blog”);
function bpdev_blogs_setup_root_component() {
/* Register ‘blog’ as a root component */
bp_core_add_root_component( BP_HOME_BLOG_SLUG );
}
add_action( ‘bp_setup_root_components’, ‘bpdev_blogs_setup_root_component’ );And to some who may not know where to put the bp-custom.php, bp-custom.php should be created in wp-content/plugins NOT in wp-content/plugins/buddypress.
September 14, 2010 at 11:50 pm #92467In reply to: What things are called in the css
Graham
ParticipantThank you for all the advice the div#message was the CSS code I was looking for. And let me just say that the firebug plugin is awesome. I can’t believe I didn’t know about it. It’s so helpful!! Once again thank you for a your help, I really appreciate it, and hopefully I’ll be able to finish this theme now.
September 14, 2010 at 2:52 pm #92407In reply to: Post Freshness
Roger Coathup
ParticipantYou’ll need to modify the post metadata display in your child theme.
Take a look at the function: bp_core_time_since()
It’s defined in bp-core.php
It uses a technique described in http://1976design.com
September 14, 2010 at 2:15 pm #92400In reply to: Changing fonts in the BuddyPress Default theme?
Hugo Ashmore
Participantand it would be stupid to get a developer to do it! Yes and no and a large proportion of this site membership are probably developers by trade
and in some senses it’s actually easier to do it than explain how to do it!
The advice was right though set up a child theme which simply uses a new stylesheet that can contain overriding rulesets. To avoid getting in a mess keep two copies of the stylesheet one named .css.bck and switch to that if things go wrong both sheets call the bp-default styles so swapping to the .css.bck will simply call the original files without any changes or you having to change themes in the admin.
September 14, 2010 at 10:37 am #92388In reply to: Changing fonts in the BuddyPress Default theme?
Adam
ParticipantSorry for the late reply, I’ve been on holiday.
I’ll give that a try – Thanks.
September 14, 2010 at 10:28 am #92387In reply to: Search through forum and blog posts/pages
pcwriter
ParticipantHere’s a great tutorial for a global site search:
Creating The sitewide global/unified search Page for your Buddypress Theme
September 13, 2010 at 9:31 pm #92348In reply to: Custom Theme Styling Help
mzuvella
MemberHey Ray,
Yeah I have the Template Pack installed and CSS tweaking isn’t my bread and butter so going the paid route is probably my best bet at this point. I mean everything Buddypress wise is working correctly, but some of the layout and styling is off.
September 13, 2010 at 6:57 pm #92340In reply to: Custom Theme Styling Help
r-a-y
KeymasterHave you tried using the BuddyPress Template Pack plugin with your existing WordPress theme?
https://wordpress.org/extend/plugins/bp-template-pack/Follow the steps closely. You’ll probably need to tweak the CSS styles once you have the Template Pack plugin up and running.
A good CSS debugger is the Firefox plugin, Firebug:
http://www.getfirebug.com/Also, if you need paid help, please post in the BuddyPress Job Board group:
https://buddypress.org/community/groups/bp-jobs-board/September 13, 2010 at 6:41 pm #92338In reply to: Taking Buddypress Offline onto a USB.
r-a-y
KeymasterMAMP is needed if you’re using a Mac
I would use a WAMP package unless your professor has a Mac, but yes, it is completely possible to have BuddyPress run locally off a USB stick.
First, you’d need to find a MAMP / WAMP / LAMP package that is portable.
Some portable WAMP packages can be found here:
http://www.portablefreeware.com/index.php?sc=125Once you have your WAMP server up, you’ll need to install WordPress / BuddyPress. Then, you’ll need to copy your theme files over as well as importing a database dump of your existing BP site.
September 13, 2010 at 5:03 pm #92330In reply to: Unable to create groups or forums
Max
ParticipantI was having the same problem. It was being caused by the javascript/ajax files for “BuddyPress Theme Compatibility” plugin.
I solved the problem by going to Appearance > BP Compatibility, then scrolling down to the bottom of the page and clicking “finish”. That step only has to be done after you first activate the plugin. On the page that comes up, check the box for “Disable BP Template Pack JS / AJAX” then click “Save Settings”.
That solved the problem for me.
September 13, 2010 at 12:40 pm #92309In reply to: Simple WP Community Theme
Sven Lehnert
ParticipantIts in the WP repository now, the new version of the theme can be found here: https://themes.svn.wordpress.org/simple-wp-community-theme/
September 13, 2010 at 11:08 am #92306Hugo Ashmore
Participant!important might work but all in all it’s abused by the community If the specificity is matched then the ruleset coming last takes precedence and an adjusted rule should come after the one being trumped – !important also further compounds the issue of BP themes working or at least having a semblance of working with IE6 (A browser not yet having reached the end of it’s life sadly)
September 13, 2010 at 9:02 am #92293In reply to: BuddyPress Share It button live
nit3watch
ParticipantEdit: soz I came right. This time it was a js error, had to rename them too.. Overlooked it :< @modemlooper
Im having trouble trying to style the share it button, say I create a new rule for div class=”bp-share-it-button-group generic-button ” and rename the div according to the new rule/styling I’ve created. The shareit button is styled correctly ( as to the new rule I created ) but the drop-down list doesn’t work. I’ve tried a few approaches, even duplicating the generic-button rule in my themes css but still the drop-down wont work.
Am I missing something here? Please let me know if you have a solution.
September 13, 2010 at 4:51 am #92283In reply to: Theme won’t update
technokelvin
MemberI found out how to finally modify the page. You would think by modifying the index.php in the Activity folder it would change the page, WRONG!.
This is the path to the file that WILL modify the Activity page and all others as well.
members/single/home.php
This should be located in your theme folder. It only took me the majority of the my night to figure it out.
Hope this helps.
September 13, 2010 at 3:52 am #92278In reply to: Theme won’t update
technokelvin
MemberDid you ever have any luck with this? I’ve run into the same exact problem.
September 13, 2010 at 3:16 am #92275SidianMSJones
ParticipantHm, so this is what WooThemes told me
This would be the element you are working with:
#logo {}
Add it to custom.css and start playing…
http://tjkdesign.com/articles/z-index/teach_yourself_how_elements_stack.asp
http://www.w3schools.com/Css/pr_pos_z-index.asp
Since Buddypress is a third party plugin, it isn’t supported in the forum.
So I set off trying out all sorts of wacky combos, example below…#wp-admin-bar {
z-index: 2;
}#logo {
position:fixed;
z-index: 1;
}
Alas, I’m just not a “coder” yet and none of my combos are pulling through.September 13, 2010 at 1:05 am #92271SidianMSJones
ParticipantHey there thelandman. Looks like that’s in the right direction. I put it in though and no difference.
Maybe there is a way to lower the z-index of the logo and category bar instead?
I’ll see what WooThemes has to say.September 13, 2010 at 12:48 am #92267@mercime
Participant@LPH2005 you’re welcome. I’ve read your updates and cool customizations to your site, glad to have helped even a little
September 12, 2010 at 11:43 pm #92263In reply to: The Chemistry Book
LPH2005
ParticipantNow that there are several hundred more students registered, feedback has prompted a few more “tiny” updates to the theme:
Number 1
The members area has been simplified. No sidebar shows and the member-header has been widgitized. The simplification helps with the slow performance of the site.Number 2
The tutoring area is now sorted by groups, alphabetically. The latest five posts show and buttons are available for creating a new topic in that particular forum.Number 3
Pagination is now available in the activity stream. Rather than rely on the ajax “load more” – pages are available.Number 4
Registration page changed to a single page, without sidebars. This stops the “cramped” feeling during registration.Number 5
Microsoft Translator added to the footer. EL students are now able to change the page to load in their native language.Still waiting for the BP Media to be out of nightly builds so that the latest photos become available site wide.
I’m still debating about a “faster” loading /start page. While the page provides explanations, too many kids are not reading the information. It’s probably a waste of bandwidth. But the jury is out on that one …
Site URL: http://www.thechembook.com
September 12, 2010 at 10:55 pm #92258LPH2005
Participant@mercime – thank you ! That was exactly the error. Now I have to wrap it around login vs. logged out people … and it’ll be good to go
Paul Wong-Gibbs
KeymasterEither the upload was corrupted, or you’ve edited in functions.php and missed out some PHP syntax. Compare it to the original version at https://svn.buddypress.org/tags/1.2.5.2/bp-themes/bp-default/functions.php and see if you can see what caused it to break.
September 12, 2010 at 8:25 pm #92246@mercime
ParticipantYou have to register the new dynamic sidebar Sidebar-memheader in your functions.php
September 12, 2010 at 8:17 pm #92243LPH2005
ParticipantInterestingly, if I change the code to an already present widget then that widget loads in the header …
-
AuthorSearch Results