Forum Replies Created
-
In reply to: new bbPress Theme: FutureKind
Looks nice just 2 comments:
– The background mouseover is still green, would change that to some blue-ish
– The bold black titles (like latest discussions, views etc) are kinda too hard black for the theme. I would soften these or give them the color that ADD NEW haas now (ofcourse the add new would get a new color too then) I think it would blend in better then the hard black.
_Null
“We’re pleased to announce the latest release of jQuery: jQuery 1.1.4. Barring any horrible mistakes, this release will be the last of the 1.1.x branch – leading us up to the release of jQuery 1.2 in September.”
New trac made for updating jQuery
I think they are, the also switching enirely to jQuery with wordPress (I believe). I also think it’s better to switch and ditch prototype.
In reply to: Real Bread Crumb for BBPressDemo?
In reply to: Gravatar PluginHow about some: this is what I did and this is the CSS I used. You can download the plugin here
I would like to use Gravatars myself too
_Null
In reply to: plugin request: Ajax for submit postNope, once a month mdawaff comes out of his cave, fixes a ton of bugs and crawls back again.
No 1 can find him afterwards, no 1 knows when he will appear again….
And one day, you check this site and a new release is there…..
The end
In reply to: No “Edit Theme” button in admin?This aint wordpress and yes everything has te be done offline
In reply to: Guests Online in Online List?Nothing yet, I’d say go for it!
In reply to: Go to last post in topicHow about a link to the second topic? So the first reply on a topic…
In reply to: top 100 bbPress sitesairdrawnd where can we download that theme? I want to make it bbMenu compatible
In reply to: plugin request: Ajax for submit postThere already is a trac for this made. Since mdwaffe made a ajax posting plugin for bbPress and he also builds this forum, I think there is a big change we’ll get it back.
With any luck, perhaps in the next release
In reply to: how about an integrated wiki on bbpress.org ?We don’t get much feedback from the builders and our community isn’t big enough yet to get the attention for stuff like WP has. So some dude made this wiki.
But I agree, we need way more documentation (starting on new added things in bbPress and how they work) and also a place to download language files…
But we have spoken about these things many times, hence we’ve made bbpulp.org…
In reply to: DIV placement problemsIn reply to: Q: how do I add a manu bar at the header ?It works fine in FF as in IE over here. Make sure to install everything in the proper maps (see map structure in the zip)
You could try changing it in hebrew text using phpMyAdmin. Not sure if that would work….
In reply to: bbMenu 1.2 released!To add tabs see:
https://bbpress.org/forums/topic/plugin-addmenutab-10?replies=1
In reply to: Q: how do I add a manu bar at the header ?Check out the bbMenu plugin, it adds a menu to you bbPress. Don’t think it works with rtl, but perhaps you can convert the normal css (see plugin) to the rtl css
The plugin:
https://bbpress.org/forums/topic/bbmenu-12-released?replies=6
And to add a tab:
https://bbpress.org/forums/topic/plugin-addmenutab-10?replies=1
If any changes are needed in the rtl css and you make it work, let me know
In reply to: plugin idea: ignore filterShow me the money!!! (the code ), cause I think it can fix a bug I have with my own plugin I am working on…
In reply to: how to insert imagesThere is a plugin for that. Check the extend area for this plugin.
I think I have figured it out, thanks.
But 1 more thing. What if I have 2 forms:
function myplugin_two() {
plugin_form1();
}and
function ????_???() {
plugin_form2();
}myplugin_two is the function that goes under tab 2. It now shows form1, but how can I let it show form2 also under tab 1?.I’ve enterd ???? now cause we can’t have 2 funtions with the same name.
…………. omg never mind…. I see it now. You can call both forms in the first function and just position them using html and stuff.
Okay thanks again, this problem is solved!
_Null
In reply to: bbMenu 1.2 released!Adding new links will be supported in version 2, for now you will have to do it using phpMyAdmin or using a plugin
Excample plugin (not yet tested and the bbmenu plugin needs to be active/working):
<?php
/*
Plugin Name: add bbMenu tab
Plugin URI: http://www.bbportal.org/
Description: Adds a tab to the bbMenu list
Author: Maurice de Regt
Author URI: http://www.mauricederegt.nl/
Version: 1.0
NOTES:
- for xxxx use something normal like: "googletab" if you make a tab to the google.com page
- for 'YOUR-TITLE': This will be the text you can edit, make sure it is between the 'tags'
- for 'URL-OF-PAGE': This will be the page you'll go to when you click the menutab, make sure it's between the 'tags'
- These added tabs WILL NOT stay highlighted when you are on that page. This requires some more complex stuff
*/
// Check if the bbPortal menu tab exists
function xxxx_check_tab() {
global $bbdb;
$bbdb->hide_errors();
$bxxxx_tab = true;
if (!$bbdb->query("SELECT * FROM ~$bbdb->menu~ WHERE ~location~ = 'xxxx-page'")) {
return xxxx_add_tab();
}
$bbdb->show_errors();
return $xxxx_tab;
}
// If it doesn't, install the menu tab
function xxxx_add_tab() {
global $bbdb;
$query = "INSERT INTO ~$bbdb->menu~ VALUES
(DEFAULT, 'YOUR-TITLE', 'inactive', 'URL-OF-PAGE', 'xxxx-page', 0);";
$bbdb->query($query);
}
?>NOTES:
– for xxxx use something normal like: “googletab” if you make a tab to the google.com page
– for ‘YOUR-TITLE’: This will be the text you can edit, make sure it is between the ‘tags’
– for ‘URL-OF-PAGE’: This will be the page you’ll go to when you click the menutab, make sure it’s between the ‘tags’
– These added tabs WILL NOT stay highlighted when you are on that page. This requires some more complex stuff
REPLACE ALL ~ with backticks, since this forum filters them out
Okay
function myplugin_one()
{
myplugin_base('one');
}Will appear under tab1
function myplugin_two()
{
myplugin_base('two');
}Will appear under tab2
Now I have another function (let’s call it
function also_tab2()
)I want under tab2, how do I get it in tab2? Sorry I just don’t see itHi,
Thanks, so the LDAP also uses more subtabs with different functions/forms in it?
I’ll take a look at it then. If I have more questions about it, I’ll post them here
Thanks for your time
Greetings
ps: is it also possible to name all the functions you want on tab1 to put them in the menu generator function?
Like:
bb_admin_add_submenu(__('My plugin sub menu item one'), 'use_keys', 'myfunctionname1', 'myfunctionname2','myfunctionname3','myplugin');
Or put all functions in 1 parent function like:
bb_admin_add_submenu(__('My plugin sub menu item one'), 'use_keys', 'myplugin1', 'myplugin');
Function name: myplugin1
this function contains 3 other functions
end function: myplugin1
In reply to: Always loginCan this be used as a plugin? The real questions should be: Can you overide normal bbpress functions with a plugin? And if so, how would this plugin look like?
And can a function like this be added:
If user logged-in = false -> redirect to login.php (or register.php)
In reply to: Plugin: Plugin browser for bbPressI kinda would like a page that loads all plugins made by me, so I can have a page on my website showing the plugins made by me with description and download button, just like ck’s page does.
Can you release it as a (stand alone) plugin perhaps? As far as I know, SamBauers is admin only…
In reply to: bbMenu 1.2 released!No problem mate, it only seems fair to me to credit the right persons.
Also, don’t put too much energy into the double-click bug. I am currently working on version 2 and it’s using jQuery instead of all the scripts it’s using now (like prototype). So the current double-click feature will be replaced by jQuery