Search Results for 'forum css'
-
Search Results
-
Hello,
We’ve been using bbPress for a couple of weeks now, and have been getting a couple dozen automated accounts each day. Now it appears they are coming alive adding spam posts to the forums.
We’re using the instant-password plugin because we don’t want our users to have to wait for e-mail, and I personally despise captcha (see http://www.stopcaptcha.com).
After cleaning out the bot accounts, here is what we did to stop it:
Our registration page: http://www.checkfront.com/community/register.php
Using CSS, we hid the occupation and interest fields (don’t need them). Spam bots will often fill out all the forum fields on a page. If a new registration comes in with one of those filled, we discard it.
We also added a hidden field (potpan) that gets filled with a unique id generated on each page load via javascript. If the potpan id doesn’t match the one in the session, we discard it.
Since we put it in place yesterday, it’s blocked all 35 automated registrations.
If anyone is using the instant-password plug in and would like the modified code, let me know and will zip it up. Perhaps this functionality could make its way into the standard registration.
Cheers,
-J
I’ve recently completed a deep install of bbpress (great tuts here at the forums!) but it didn’t do what I thought it would do, which is allow me to insert bbpress as an integrated component of my main WP install. What I would like, is to be able to use the main wp widgetized sidebar and manage the bbpress forum via the same admin login as the primary WP install.
I would also like to have the same sort of functionality with editing php and css templates, etc. in bbpress as with WP but after reading around, it seems that I am out of luck (any advice here is greatly appreciated).
I feel like I’m missing something or off track. Any help/insight/feedback is greatly appreciated.
Hi there,
For some reason the text (in the default theme) drifts off the area it should be in for replies to posts.
Here is a modified css file, but the problem is the same even with the default files.
Any thoughts?
Thanks!
http://twistedtools.com/forums/topic/how-to-download-freebies
Topic: Premium Theme's and Plugins
I was hoping that someone could point me towards BBpress or Automattic’s official stance on this. From what I’ve read, the PHP code that interacts with WordPress/BBpress should all be released under the GPL, but HTML/CSS/JavaScript/Images are not.
I bring this up, because a fellow developer (an old Bbprogress contributor), pointed me towards this piece by Jeff Chandler: http://weblogtoolscollection.com/archives/2010/02/08/where-is-the-line-drawn/
The main thing that caught my attention was the comment of Chip Bennet , who states that:
[a] plugin uses a separate library – and it is that library (presumably not released under GPL) that requires purchase if it is used on a commercial site.
This practice is perfectly acceptable under the GPL. Whether or not it is acceptable under the double-secret probation, unwritten, subjective rules of the plugin repository is anyone’s guess.
Can anyone shine some light on this from a BBpress perspective?
I’m going to quote Matt here:
…that themes link and use lots of internal WordPress functions, which make them linked under the GPL and subject to being a GPL-compatible license.
If a theme (or a plugin) used no internal WP functions or APIs, then it could probably be considered independent, but that would be really really hard for a theme.
Basically, I’m asking because BBpress, probably more than WP (at least if you’re only using WP as blog platform) has potentail for premium theme’s and plugins at this moment in time. Getting some clarification would make things alot simpler.
My real concern here is one that won’t go down well…
BBpress forums have 1 current/active moderator
I ask for two reasons.
Should a premium theme/plugin be created and sold, and given that BBpress currently has 1 active Moderator, what is there to stop someone posting the code here or reusing the code that is NOT under GPL?
Not a huge concern of mine just now, but it seems like a likely question of anyone supporting premium BBpress additions.
Topic: The forum doesn't show icons
Hi everyone,
I’ve written a WordPress plugin which allows you to integrate your WordPress theme, widgets and many plugins into your bbPress theme. This is an alpha launch, so it’s probably buggy. Please file bug reports in the comments of the blog post please.
http://pixopoint.com/theme-integrator-alpha-launch/
This system DOES NOT require deep integration and does not suffer the performance hits that deep integration normally applies. This simply copies your HTML markup over after you set a bunch of things in each theme. If you don’t know how to do a 100% perfect integration of your theme already the old fashioned way (copying HTML and CSS across), this new system will not help you at all as you need to set that up already. Once it is setup however, the changes you make in your WordPress theme will be automagically applied to your bbPress site, along with changes such as plugins, widgets etc.
I’m not providing free support for this. Doing these types of integrations is very time consuming and I can’t afford to spare that much time to help you all integrate your themes sorry. I am keen to see bug reports etc though and will try to get them sorted as soon as possible.
The system works across a range of different softwares, not just bbPress. You can see a demo of it in my own support forum which uses SMF … http://pixopoint.com/forum/index.php?topic=1385.0
Hello everyone, we’ve started a forum about a week ago and decided to use a template to skin the board. After a good couple of hours, we managed to match the forums colors and feel to our main website. I’m not really well-versed with CSS or PHP but i’m familiar enough to experiment, tinker and achieve the results I usually want. And besides, i’m learning as I go!
But there’s one thing that’s sort of baffling me. I’m trying to add our “logo” image in the header, right where the normal forum name text would appear. Usually, that’s just as simple as going to the header itself and replacing the PHP code used to get the name of the forum with an IMG html tag with width, height, etc.. However, the image won’t appear at all! We’ve double checked the directory, made sure it was pointed to the right place, checked the chmod settings on the image and everything should be fine, but the image still doesn’t appear. The result is in the screen cap below:
http://marknine.com/image/ioforums.jpg
Is there something specific i’m supposed to be looking for? In the CSS file or the header.php file itself?
header.php
<div class="header-wrapper">
<div class="header pagewidth">
<!-- TITLE -->
<h1><a href="<?php bb_uri(); ?>"><?php bb_option('name'); ?></a></h1>
<?php if ( bb_get_option('description') ) : ?><h2><?php bb_option('description'); ?></h2><?php endif; ?>
<!-- END TITLE -->
</div>
</div>CSS
/* header & nav */
div.header-wrapper {
background:#222 url('images/header.png') repeat-x scroll left top;
}
div.header {
border-top:10px solid #E05900;
padding:40px 0 40px 10px;
margin:0 auto;
}Topic: custom category class
Inside my loop in front-page.php i want a custom class
like:
<tr class="bb-precedes-sibling bb-follows-sibling bb-child ????"><br />
<td><div class="nest"><a href="http://www.example.com/forum/example">Example</a><br /><small> Examples of examples</small></div></td><br />
<td class="num">99</td><br />
<td class="num">1029</td></p>
<p></tr>on the place of the questionmarks i would like to have a category id as a class.
so i can customise each category in css
can someone help me out?
