Search Results for '+.+default+.+'
-
Search Results
-
Is it possible to change the default “Member” link benath nicks to something else?
I would like to change it to “info”.
I am sharing this, just in case it may help someone else looking to implement this feature. There is a great plugin that does this, bbAvatars, but it was interfering with other functions I wanted to implement, so I had to find a workaround (bbPress 1.0.2).
With the premise that I really don’t like to edit core files, because you have to remember to edit them each time you upgrade, this time I had no choice, as any avatar plugin I tried did not work out for my purposes. There are a few simple steps you can use to set your own custom avatar, when users have not set a gravatar account.
1 – I have noticed that the “blank” choice in the settings is the only one that refers to an internal image, so you just want the code to point to your own custom image, rather than “blank.gif” (which may be also used for other calls, so I wanted to leave that one alone and not replace it with another custom blank).
In “bb-includes”, look for the file “functions.bb-pluggable.php”, and edit around line 895, where it says
case 'blank':
$default = bb_get_uri( 'bb-admin/images/blank.gif', null, BB_URI_CONTEXT_IMG_SRC );and change blank.gif with your image, default.jpg or any other name.
2 – Upload your custom image in bb-admin/images (if you store it somewhere else, change the path in the code above accordingly).
3 – In your Admin Dashboard –> Settings –> Discussions, set the choice to “blank”.
Voila!!!!
To change the avatar size from the bbpress default size, in post.php of your templates, look for
<?php post_author_avatar_link(); ?>and add the number of pixels inside (), for example:
<?php post_author_avatar_link(80); ?>Hope this helps!
Fortunately I’ll not be able to hear people laughing at me but I just bought hosting from Siteground (great service by the way) and they uploaded bbpress for me. I believe I found how/where to upload in the “my plugin” file. It asks where to download from… well….when I try to save the plugin download onto my computer it defaults to save it with notepad (offers internet explorer too). When I save it with notepad and then view the file it looks like wingdings on bad drugs. I know this is a silly question for most here…but how do I save a plugin download with Vista? (go ahead and laugh my speakers are off) LOL …I must to learn more basics before I can do this it appears. oh yeah….my site is pennyforums.com Thanks!
Topic: CSS failed to load?
When I try to go to http://iapple.it/forums , they aren’t styled even though I’m using one of the default themes. It says “Failed to load source for: http://iapple.it/forums/bb-templates/kakumei/style.css”, and I don’t know why.
I have a strange problem. When I’m on the forum front page or a forum page, the timezone is set to “America/Los_Angeles “, but when I go onto one of the topic pages, it is “Etc/GMT+7”.
I am checking by using the PHP function “date_default_timezone_get()” in the header right after the <body> tag.
These two are different by an hour because of daylight saving, which is causing an issue with the simple-onlinelist plugin.
Where in the initialization of bbPress is the timezone set? Any ideas why it would be set differently depending on the bbPress page that is loaded?
If it matters, I have deep integration with WordPress MU 2.8.4a, which also has the timezone at “America/Los_Angeles”.
Thanks.