Forum Replies Created
-
In reply to: Security Issue (Javascript Insertion)
I cannot reproduce the bug. The plugin is well written:
$tags['img'] = array('src' => array(), 'title' => array(), 'alt' => array());
only
src
,title
andalt
attributes are allowed. Can you share a pastebin link with the exact rogue text?Make it a bozo.
In reply to: How to disable html on the posts?Is it possible to improve this plugin a little bit
Yes but it’s a personal request. Contact me if you need those changes. za AT zaerl.com.
In reply to: avatarsGravatar or Bavatars.
In reply to: Absolute URLbb_uri('forum.php?id=' . forum_id() . '#postform');
In reply to: How to disable html on the posts?<?php
/*
Plugin Name: zaerl No HTML
*/
function za_nh_allow_tag($tags) {return array();}
add_filter('bb_allowed_tags', 'za_nh_allow_tag',999);
remove_filter('post_text', 'make_clickable');
?>Happy?
It has been closed for two reasons:
1) My micro-plugin actually does what you want
2) One topic, one question
In reply to: How to disable html on the posts?I am not a professional programmer but I think if we can change the code (maybe on post.php file?) where it says “make” http:// and www. texts to hyperlink, maybe it will work?
One question, one topic.
In reply to: How to disable html on the posts?Keep in mind that, obviously, it is not retroactive. Preexisting posts aren’t affected.
In reply to: How to disable html on the posts?Create a php file, paste the text and save it in the plugin folder.
In reply to: Bavatar Image…There are no topics.
In reply to: Bavatar Image…Just provide me the address of your forum then.
In reply to: Bavatar Image…Can you post here a link to your avatar stored by bavatar?
So maybe BuddyPress has done something weird with your DB. BuddyPress + bbPress = bad.
wp_ = wordpress
wp_bb_ = bbpress
admin ID = 1
wp_usermeta:
1 wp_capabilities =
a:1:{s:13:"administrator";b:1;}
1 wp_bb_capabilities =
a:1:{s:9:"keymaster";b:1;}
logout, login.
In reply to: Duplicate topics – moving / mergingSo if a user create a copy of another post you would like to delete the new topic and redirect the URL to a preexisting topic?
In reply to: Parse error: syntax error, unexpected ','<?php case ( 'reset_password' ) : ?>
In reply to: Avatar sizeTemplate file
post.php
:post_author_avatar_link(whatever you want);
In reply to: bbPress – Twitter Integration – IdeaIt’s a protocol.
In reply to: bbPress – Twitter Integration – IdeaNo. But bbPress support XML-RPC.
In reply to: Newbie to BBPress – Install QuestionsbbPress is not a WordPress plugin but it’s a standalone software.
I do not see a clear step by step list of instructions on how to do this. Anyone?
https://bbpress.org/documentation/installation/ on this site.
In reply to: Email is requiredIn reply to: WP 3.0 beta 2 integrated user registrationhow to instal this plugin?
https://bbpress.org/plugins/topic/zaerl-wordpress-3-integration/
In reply to: How to disable html on the posts?I have written a plugin that does what you want but isn’t released to the public.
The code that follow deactivate all HTML tags. Keep in mind that it’s not tested at all.
<?php
/*
Plugin Name: zaerl No HTML
Plugin URI: http://www.zaerl.com
Description: no HTML tags in posts
Author: zaerl
Author URI: http://www.zaerl.com
Version: 0.1
*/
function za_nh_allow_tag($tags)
{
return array();
}
function za_nh_initialize()
{
add_filter('bb_allowed_tags', 'za_nh_allow_tag');
}
add_action('bb_init', 'za_nh_initialize');
?>If you are interested contact me.
In reply to: Dashboard Errors In bbpress. Help.