Search Results for 'code'
-
Search Results
-
I started a post a while back asking if anyone here would be willing to code a bbpress theme for me (it’s already been designed). It will be a paid job (of course).
I’ve still not had any luck finding someone to help me out and I’m now getting quite desperate.
If you are able to help please email:
daleanthony.com [at] gmail.com
Thanks!
Topic: Listing of the forums
Hello,
i want to have a listing of the forums and i try this:
<?php if ( $forums ) : ?>
<?php if ( bb_forums() ) : ?>
<?php bb_forum_pad( '<div class="nest">' ); ?>"><?php forum_name(); ?><?php bb_forum_pad( '</div>' ); ?>
<?php endif; // bb_forums() ?>
<?php endif; ?> but doesn’t work. why?
bye
I’m using the Kakumei Blue theme. I can’t understand how this could happen, but without my doing anything, overnight the header on my forum has changed when viewed in IE – it remains as it should when using Firefox.
A navigation button I positioned (by messing with some numbers in some CSS code that Chris kindly provided) has shifted to the right so that it is now too close to the User Name.
But most strangely, the forum name has shifted so that it now overlaps the “Login” box. This was perfect until now, as you’d expect, since it’s part of the original design – I just typed in the name of the blog in the space provided in Admin.
Here’s the link, which will make it clear what I’m saying (open with IE): http://ashb.proofreadercentral.com/bbpress/
User: tester
Password: testing123
Can anyone offer any explanation for this stuff? More importantly, how do I get the header back to what it was yesterday given that I haven’t actually changed anything in the meantime? I’m afraid that if I start tampering with the CSS again, I’ll end up messing up the header in Firefox as well!
Cheers
Hi,
I have the following code that works in wordpress:
<?php $homepage = get_settings('siteurl')."/search.php/";
global $wp;
$wp_received_argument = false;
foreach ($wp->query_vars as $k=>$v) if ($v) $wp_received_argument = true;
if ($wp_received_argument) require(TEMPLATEPATH . “/index.php”);
else { wp_redirect($homepage);
exit(); } ?>Now this wont work in bbpress, so I’ve made some modifications:
<?php $homepage = bb_get_option( 'uri' )."/search.php/";
global $bb;
$bb_received_argument = false;
foreach ($bb->query_vars as $k=>$v) if ($v) $bb_received_argument = true;
if ($bb_received_argument) require(TEMPLATEPATH . “/index.php”);
else { bb_redirect($homepage);
exit(); } ?>It now crashes at the foreach. What am I missing?
Thx
Similar posts have been made about this subject, and I’ve read the documentation, but no matter what I do I can’t get the cookies to work. I’m sure you hate working with newbies like me because we’re always like, “gah, i can’t get anything to work” but, please, I don’t want to keep tweaking it because I don’t want to mess anything up… One solution here at this forum says to go into the wp_settings.php file and change something… do things like that have be to done, or is there an easier way? By the way, I did actually do that… I went into the wp_settings and changed that cookie_domain line from false to ‘.myurl.com’, if you know what I’m talking about… well, that tweak didn’t work for me either.
I just want to be able to log into my blog, then go to my forum and still be logged in. Or log into my forum and go to my blog and still be logged in, then also be able to successfully log out from either location.
I put
define(‘COOKIE_DOMAIN’, ”);
define(‘COOKIEPATH’, ‘/’);
in my wp config and it is also in my bb press config.
Now, some posts here say that for the cookie_domain, you have to actually put your domain, like:
define(‘COOKIE_DOMAIN’, ‘.myurl.com’);
is this true?
If someone has the time and successfully has cookies working properly between their wordpress blog and bbpress forum, could you help me out?
I’ve stayed up many nights trying to get this to work just right… it’s sad
Whats weird is, when I first did the integration it worked BUT I couldn’t log out, so since then I’ve been changing things to fix that, but now, I’m back to square one. I can log into my forum. then, I can log into blog, and I can log out of both with the same username and password, but again, if I log into one and go to the other, I’m not logged in.
I’ve just seen a few different posts and all the posts recommend doing different things. Then the actual documentation of course just says to use the built in integration feature in bbpress, which I used. Since there are so many different posts offering different solutions, can any one give me a step by step fix for this?
Topic: Update system for plugins
Hello,
a update system for plugins is scheduled or not?
bye,
Fred
Topic: Forum Specific Moderation
Hello,
I was looking for a way to limit moderators in some way to only have moderation powers on specific forum/s. I have a forums where I need to have a set of moderators have access to only moderate a few forums and not every forum on the site. I did some searching and couldn’t find anything in the forums or plug ins that did this task. Is this something that could be handled by being able to add more roles, and then custom define the abilities of those roles? Thanks for your time, I look forward to hearing back from the community on this.