Search Results for 'code'
-
AuthorSearch Results
-
July 13, 2009 at 6:39 am #76063
In reply to: Need help with some colour alterations.
Ashish Kumar (Ashfame)
ParticipantIf changes made by you are not reflecting in CSS, then there is something which is over riding it. You need to catch that.
Like the priority order in Inline, Internal and then External.
Read more here – http://www.plus2net.com/html_tutorial/css-types.php
Hope that helps
July 13, 2009 at 6:34 am #76002In reply to: Problem adapting theme from wordpress
Ashish Kumar (Ashfame)
ParticipantDid you read my reply over bbshowase? Thats the way it can be solved. To help you in your aim, install Firebug on Firefox. Run it using
F12and then you can catch the DIV you want.Hope that helps
July 13, 2009 at 5:32 am #75690In reply to: Update bbPress Wikipedia page!
_ck_
ParticipantJust for “fun” I’ve tallied the bbPress release history so far:
2009-07-08 03:59 1.0.1
2009-07-03 03:54 1.0 Bechet
2009-06-17 13:09 1.0-rc-3
2009-06-10 14:41 1.0-rc-2
2009-06-03 23:02 0.9.0.5
2009-05-12 13:38 1.0-rc-1
2009-01-07 20:00 1.0-alpha-6
2009-01-02 05:06 0.9.0.4
2009-01-02 05:05 1.0-alpha-5
2008-12-14 10:21 1.0-alpha-4
2008-12-10 02:20 0.9.0.3
2008-10-08 20:04 1.0-alpha-2
2008-08-09 13:11 1.0-alpha-1 (backpress)
2008-04-25 11:41 0.9.0.2
2008-04-03 10:54 0.9.0.1
2008-04-02 22:45 0.9 Brubeck
2008-01-02 20:03 0.8.3.1
2007-09-26 19:59 0.8.3
2007-06-19 16:04 0.8.2.1
2007-06-18 19:06 0.8.2 (pretty permalinks, plugin management, sub-forums)
2007-02-21 01:53 0.8.1 (timezone configuration, forum deletion)
2007-02-08 15:47 0.8 Desmond
2007-01-15 14:56 0.75
2007-01-05 20:01 0.74
2006-10-27 18:51 0.73 (installer, rewrite rules, multi-language support, new template)
2006-10-13 20:38 0.72 Bix (first public release)
2004-12-26 03:20 0.70 (live on WordPress.org 2004-12-28)July 13, 2009 at 5:15 am #76057thion
MemberBeing there, read that – still it’s not it. I’m trying to figure our the BB_Query function by reading about WP_Query on Codex
. Anyone have other ideas?
July 13, 2009 at 1:32 am #75754In reply to: Can I display topic ID?
chrishajer
ParticipantI think this will get you the numeric topic id:
<?php topic_id(); ?>Just put that in your template file wherever you want to show the id. This is with version 0.9 and the id is echoed, so there’s no need to do that. Just put it next to topic_title(); wherever you want to show it.
July 12, 2009 at 7:17 pm #76051In reply to: would this work for links?
Ashish Kumar (Ashfame)
ParticipantPlace the navigation DIV code just after the
<div id="header">
.......................
</div>and before the
<div id="main">
<?php if ( is_bb_profile() ) profile_menu(); ?>July 12, 2009 at 5:52 pm #15299Topic: would this work for links?
in forum Themesazcs
Memberwhere would i put this code? in the header?
<div id=”navigation”>
<ul id=”nav”>
- “><?php _e(‘Home’,’rag’); ?>
- About
- InterviewscompetitionOur projects
<div id=”search”>
<form method=”get” id=”searchform” action=”<?php bb_option(‘uri’); ?>search.php”>
<div>
<input type=”text” size=”38″ class=”search” id=”s” maxlength=”100″ name=”q” value=”<?php _e(‘Search the forums…’,’rag’); ?>” onfocus=”if(this.value==this.defaultValue)this.value=”;” onblur=”if(this.value==”)this.value=this.defaultValue;” />
<input class=”search-submit” name=”submit” type=”submit” id=”search-submit” tabindex=”8″ value=”<?php _e(‘Go’,’rag’); ?>” />
</div>
</form>
</div>
</div>
July 12, 2009 at 5:21 pm #76020In reply to: theme help please
Ashish Kumar (Ashfame)
ParticipantPlease don’t use Capital letters. Its considered as shouting.
Glad that you did it.
July 12, 2009 at 5:20 pm #74438In reply to: Nginx Rewrite Rules for Pretty Permalinks
Ashish Kumar (Ashfame)
ParticipantJuly 12, 2009 at 5:01 pm #75913johnhiler
Member@ashfame – Have you studied WordPress plugins at all? The approach is pretty similar, and there’s a nice codex over there too:
July 12, 2009 at 5:00 pm #75992In reply to: how to add a sticky in post
Ashish Kumar (Ashfame)
ParticipantAre you on v1.0 now? If yes you are out of luck as most of the plugins won’t work with the newer version due to a lot of code which has been changed in bbPress.
P.S. – You can email me at
ashishsainiashfame@gmail.comJuly 12, 2009 at 4:47 pm #76018In reply to: theme help please
Ashish Kumar (Ashfame)
Participant<div id="blah">
<div class="box">
Content
</div>
<div class="box">
Content
</div>
<div class="box">
Content
</div>
</div>These are containers to hold data. A bigger container can have a smaller container

Page contents are divided in DVIs and then styling to these contents is applied through CSS.
Got it now?
July 12, 2009 at 4:38 pm #76016In reply to: theme help please
Ashish Kumar (Ashfame)
ParticipantNow that DIV you need to find out yourself.
Install Firebug (Firefox Add-on).
Open your forum and press
F12.Now find the respective DIV.
You are new to CSS. So go by Hit n Trial method
July 12, 2009 at 4:35 pm #75912Ashish Kumar (Ashfame)
ParticipantI got it! No issues. Well, Can you recommend what approach should I have to grasp all the code of bbPress as there is no Codex at the moment. I remember you stating earlier that you learnt by studying others’ plugins. Any suggestions in this regard would be of great help. Thanks
July 12, 2009 at 4:31 pm #76012In reply to: theme help please
Ashish Kumar (Ashfame)
ParticipantAdd that in style sheet. I use Notepad++ for all my coding needs.
You need to check out where you want the background i.e. the background of which DIV and then you can add this into style sheet :
#DIV_WHERE_YOU_WANT_BG {
background-image:url('img.gif');
}and the path to the image is relative to the file. make sure it is correct too.
July 12, 2009 at 4:08 pm #76026In reply to: Linking back to main website.
Ashish Kumar (Ashfame)
Participantin
header.phpwhere thebodytag starts.After this
<body id="<?php bb_location(); ?>">
<div id="wrapper">
<div id="header" role="banner">July 12, 2009 at 4:07 pm #75911_ck_
Participantashfame I appreciate your enthusiasm but I personally will have to comb through all the changes in 1.0 and look for new problems it’s causing my techniques- some things will not be immediately noticeable as a plugin will appear to run but then not in all cases or not update database info, etc. I’ll organize a way for people to report specific problems as it gets closer towards December.
As I have repeatedly mentioned it’s also a matter of waiting for 1.0 to settle.
I see many little problems with it that will have to be fixed – there will likely be at least a couple more releases by December and probably many more little tweaks put in the trunk for 1.5 that might affect my plugins again.
Your energy is better spent debugging bbPress 1.0, or writing/porting other plugins for bbPress as there’s always something else needed.
July 12, 2009 at 4:07 pm #76009In reply to: theme help please
Ashish Kumar (Ashfame)
ParticipantGood!
For body use
body {
background-image:url('img.gif');
}July 12, 2009 at 3:21 pm #76049In reply to: how to add a image background
Elias
MemberBy editing the
style.cssfile.body {
[...]
background-image: url(path/to/the/image/relative/to/the/css);
background-repeat: no-repeat; /* or whatever you like */
[...]
}
Of course I cannot give a full CSS introduction here, but there are lots of good and helpful introduction available online.
July 12, 2009 at 3:16 pm #75910chrishajer
Participant@swaymedia: Any comment on _ck_: “there have only been 4 donations this year despite thousands of users of my plugins”
Maybe you’re one of the four? Reminds me of this discussion:
http://weblogtoolscollection.com/archives/2009/07/10/is-wordpress-a-thankless-community/
July 12, 2009 at 3:08 pm #75909Ipstenu (Mika Epstein)
ModeratorDon’t take the lack of reply as an answer, everyone here (except Sam) are volunteers. And everyone (including Sam) have real lives and weekends and such.
So _ck_ will get back to you whenever she does. Just take it cool, man
July 12, 2009 at 2:44 pm #76025In reply to: Linking back to main website.
andywilliams244
MemberWhere exactly would I put that code?
July 12, 2009 at 2:13 pm #75908Ashish Kumar (Ashfame)
ParticipantWas the earlier post missed or the answer was no? Just be frank and tell me. I am cool either way.

I understand your reasons very well.
July 12, 2009 at 2:03 pm #15297Topic: Modus Operandi
in forum Showcasedpmcalister
ParticipantMy first attempt with bbPress and it’s pretty basic at the moment:
http://www.modus-operandi.co.uk/forum
As I get my head around templating and the like, I’m sure I’ll make future changes
July 12, 2009 at 2:03 pm #76007In reply to: theme help please
Ashish Kumar (Ashfame)
ParticipantActually it is too much unless someone can really write tutorials here for such things. No Offence but It would be better to hire a freelancer if you really don’t know what are you doing. (You will waste much of your time and if you are here to learn then read on)
Q1>> Use a variable to count for each topic displayed and then break out of loop when it reaches the value (5). In theme folder, you need to edit
front-page.phpQ2>> Increase the font instead of making a link bold. Use CSS here.
Q3>> For background-image use CSS to specify for DIV body
-
AuthorSearch Results