Forum Replies Created
-
In reply to: Adding a plugin admin page into the admin menu
Thank you fel64.
it seems that I stupidly forgot the “global $bb_menu”
thanks a lot !
In reply to: Adding a plugin admin page into the admin menuin the admin-functions.php, there is the function which creates the main menu (and also submenu) : bb_admin_menu_generator()
at the end of the function, you have a “hook” that you can use :
do_action(‘bb_admin_menu_generator’,”);
I tried this code :
add_action('bb_admin_menu_generator', 'bbai_add_options');
function bbai_add_options(){
$bb_menu[20] = array(__('Options'), 'use_keys', 'my_options_page.php');
}but didn’t worked
In reply to: forum.2diabolos.comActually, if you log in, in works perfectly.
In reply to: forum.2diabolos.comhm, I just notice that I did not upload my style.css …..
so you can’t see it well today (i will upload it tonight, I’m in Germany GMT+1)
But to show you what I mean, just go in the “View your profile” of this forum. you will see three boxes on the right : “Profile” , “Edit”, “Favorites”.
I’m sure you agree with me, it does not make sense to see them on the right.
So I change the style of these boxes and they look like tabs, nearly like the tabs on the top of this page : “Home”, “About”, “Documentation” ….
In reply to: Fix bbPress Plugin 0.8.1-1Actually, I said something wrong. New posts I wrote are now considered as bozo. I feel that as soon as a user is considered as bozo, all his posts (and also pasts posts) should be marked as bozo, no ?
It seems that mdawaffe has lot to do on other projects. No correction after 1 mounth of bug submission, we feel abandonned.
I used this SQL query to mark all my bozoed posts (from the poster who have id=1, which is usualy the keymaster) to “normal” post :
UPDATE bb_posts
SET post_status=0
WHERE post_status=2 and poster_id=1my posts after this “update” has not been bozoed. My profile page still shows a “1”.
In reply to: Fix bbPress Plugin 0.8.1-1A bozo user should have all its posts “bozoed” ?
I also have this bozo “1” field but I tried from another computer, without logging me, and my posts appears…
everything sounds strange is that bug.
In reply to: Cookie integration for wordpresson 2diabolos.com, everything is working fine. And actually, my wordpress plugin allow me to make what you propose (cookie_domaine = ‘.2diabolos.com’ and cookie_path = “/” for wordpress and bbPress)
But on “localhost” (my computer), cookie_domain = “false” and cookie_path = “/” works fine for the front-page, but not for topic pages … that’s not normal (to my opinion). But perhaps someone have an explanation ….