Skip to:
Content
Pages
Categories
Search
Top
Bottom

Search Results for '\"wordpress\'

Viewing 25 results - 14,351 through 14,375 (of 26,882 total)
  • Author
    Search Results
  • dorsetjon
    Member

    Thanks, I’ll have a look at themes.

    I know my way around wordpress and was confident I could accomplish something with bbpress but am rapidly losing faith given the lack of documentation and examples for bbpress!!

    Given how good the bbpress site looks, if that is done with a theme then it would be a good idea to make that theme (or similar) available. Even better if bbpress used something impressive “out of the box”.

    I’m off to find some themes…

    Aahan Krish
    Participant

    Yeah. Jon, I am a newbie too, but since I know my way through wordpress, I am confident that I can accomplish something with bbpress.

    That’s exactly what I am talking about. Search for bbpress themes. You might end up finding something with features closer to what you mentioned or better.

    Any theme that looks better than the default bbpress theme will make you happy for the time being, until you know your way around bbpress.

    That’s a starting point. Enable the new theme, start changing the look with CSS, make it look your way. That’s what I was suggesting. Sorry if I didnt catch your point still.

    #112180
    Aahan Krish
    Participant

    @thetalltree : Take a look at the forum index of bbpress.org, and you’ll notice that there are at least 2 spam posts. SPAM! And what’s even more alarming is that they are still there!

    Take my advise, ask elsewhere. (Try asking on wordpress.stackexchange.com)

    My $0.02! :)

    #42652
    tilly2012
    Member

    I downloaded the bbpress plugin for wordpress. Now I’m receiving this message: Your active theme does not include bbPress template files. Your forums are using the default styling included with bbPress.

    How do I fix this?

    #42645

    Topic: Custom profile fields

    in forum Plugins
    Rambomst
    Member

    I am having an issue getting custom profile fields to work.

    I have used the following code as a wordpress plugin and a bbPress plugin:

    function set_my_profile_info_keys($myarray) {

    $myarray = array(

    ‘testfield’ => array(0, __(‘TestField’))

    );

    return $myarray;

    }

    add_filter(‘get_profile_info_keys’, ‘set_my_profile_info_keys’);

    However this doesn’t show the field on a users profile to allow them to edit it. I have also tried other variations of this code I have found on this forum and others but to no avail.

    Any help getting this working would be much appreciated.

    #112193

    Does the site homepage still come up OK? Do you get a white screen? Do you get an error message? Does /wp-admin/ still give you the WordPress login screen? What is your URL?

    Simply saying it’s broken doesn’t really help us point you in the right direction ;)

    #112204

    Yes, it is still being maintained.

    The plugins listed on bbpress.org are for bbPress v 1.x.

    The current version of bbPress is 2.0.x and the plugins for it can be found on WordPress.org

    https://wordpress.org/extend/plugins/search.php?q=bbpress

    Eventually the plugins listed on bbpress.org will be archived to help avoid confusion, but the bbPress project is very much alive :)

    Satish
    Participant

    thanks for the link. I understand.. will try my best to get it done myself.

    I’m not used to bbpress and wordpress coding.. will get used to it.

    Thanks a lot for all the help and guidelines.

    Sorry I do not have time to provide you with the exact code.

    However as jjj already said there are tons of examples on Google.

    http://ottopress.com/2010/wp-quickie-kses/

    Satish
    Participant

    ok..

    as Guatam suggested, I added the following code to my function.php file

    add_action('bbp_init', '_bbp_allow_pre_tag', 10);

    function _bbp_allow_pre_tag() {

    global $allowedtags;

    $allowedtags = array( 'name', 'class', 'id' );

    }

    but still its not working.

    Can you please directly give me the code I need to paste into my function.php file ?

    I need to allow pre tag with following attributes to it name=”code” class=”c”

    so basically I must allow “pre” tags with “name” and “class” attributes.

    No you should not edit core (*ever*), you should use the filter that is available in the code you just posted bbp_get_allowed_tags.

    You need to look into filters https://codex.wordpress.org/Function_Reference/add_filter

    Satish
    Participant

    got something inside bbpressbbp-includesbbp-common-template.php file.

    /**

    * Output all of the allowed tags in HTML format with attributes.

    *

    * This is useful for displaying in the post area, which elements and

    * attributes are supported. As well as any plugins which want to display it.

    *

    * @since bbPress (r2780)

    *

    * @uses bbp_get_allowed_tags()

    */

    function bbp_allowed_tags() {

    echo bbp_get_allowed_tags();

    }

    /**

    * Display all of the allowed tags in HTML format with attributes.

    *

    * This is useful for displaying in the post area, which elements and

    * attributes are supported. As well as any plugins which want to display it.

    *

    * @since bbPress (r2780)

    *

    * @uses allowed_tags() To get the allowed tags

    * @uses apply_filters() Calls 'bbp_allowed_tags' with the tags

    * @return string HTML allowed tags entity encoded.

    */

    function bbp_get_allowed_tags() {

    return apply_filters( 'bbp_get_allowed_tags', allowed_tags() );

    }

    what should I do with it inorder to make pre tag allowable.

    I feel like, editing the core isn’t a good idea.

    Is there a way to handle this via my template ?

    Can you please give me the code that I must paste inside my function.php file to allow <pre name="code" class="c"> to my forum members.

    Satish
    Participant

    I’m not able to find the file, in which this bbp_get_allowed_tags is present..

    You can filter it using the bbp_get_allowed_tags filter bbPress provides.

    Satish
    Participant

    <b>Gautam Gupta</b> tried to help me with this code:

    global $allowed_tags;

    $allowed_tags=array('name','class','id');

    I pasted it inside function.php file; unfortunately its not working.

    I’m using https://wordpress.org/extend/plugins/google-syntax-highlighter/ plugin. and want my bbpress forum members to make use of pre tag and this plugin highlights the codes they post on the forum.

    It uses the following syntax: <pre name="code" class="c">

    please help.

    #112108
    Zigster
    Member

    Hey Anetz,

    I have “Site Wide” forum enabled (bbpress) and I’ve disabled group forums. They can still make groups, but they don’t have group forums.

    I’m new to WordPress and Website development, just know some basic HTML.

    Thanks, I see how to change the permalink now that’s awesome. I can’t believe I missed it, spent ages looking it. It’s in the “All pages” tab and it’s under the title.

    Whenever I make a “new forum” category it automatically creates it at /forums/forum/new-category.

    I don’t understand why I need “/forums/forum”, I’d rather just have it at /forum if that’s possible.

    I’ll continue to experiment too and I’ll post back if I make any progress.

    Let me know if you find anything. :)

    #111794
    Everton
    Member

    Hi

    I’m also looking to do this – move my buddypress install to a new url. Is it possible to export/import everything? Do I just need to copy the tables from WordPress?

    Regards

    EB

    #110530
    Jon Brown
    Participant

    Just switched a Genesis based site I’m developing from 2.0 to 2.1-r3774. I was a bit confused by the broken templates, but then realized the Genesis code had been pulled out and found and installed Jared’s BBPress Genesis extend (0.8.1) plugin which now makes everything is look good OOTB again.

    https://wordpress.org/extend/plugins/bbpress-genesis-extend/

    There are only a dozen dummy posts and _no_ custom templates yet so I wouldn’t really expect it to explode, but I start customizing forum templates in a few days and it seemed to make sense to start with 2.1.

    #42615
    thetalltree
    Member

    I would like to disable ahref tags in the forum posts so users cannot add links to external websites within a post. In addition to that, I would also like to stop the automatic phrasing of links. For instance, if someone enters ‘http://www.bbpress.org&#8217; I would like it to appear as plain text instead of a clickable link.

    I made a plugin as mentioned by ‘jonich0n’ in the following post but it is not working:

    How can I disable HTML in posts?

    I uploaded this plugin in my wordpress plugins folder and then activated it from the wordpress ‘installed plugins’ page. Is there where it is supposed to be uploaded?

    #59901
    Milan Dinić
    Participant

    Since this topic tops Google SERP, just to note that for bbPress 2.0 (ie. bbPress as a WordPress plugin), there is a plugin bbPress Digest that does something similar as requested in first post.

    #112152

    In reply to: 2.1 wysiwyg errors

    #112066
    SK
    Participant

    I ended up overwriting my installed bbpress files with new ones via FTP. JJJ says you should delete all bbpress files and then write the new ones there.

    #112065
    intimez
    Participant

    @OC2PS

    I was testing and got the same error message using the standard upload (didn’t use the plugin you have listed) but after I clicked on Installed Plugins and went back to try it again, it went through fine. At that point, I see two bbpress installs listed with the 2.0.2 version active and 3786 inactive.

    Very strange.

    #42603
    intimez
    Participant

    I’m testing with the following:

    wordpress3.3.1, buddypress1.5.4, bbpress2.1r3786

    After activating buddypress and then going all the way up to the forum part, what exactly is the step to get it configured? I do not want to use Group Forums. I click on Install Site Wide Forums it tells me it is installed.

    This was a problem before the 2.1 beta so …

    What is being done in the 2.1 beta that addresses this?

    How should users configure it via upload if they are not using plugin search?

    #42602
    removing1
    Member

    I installed bbPress 2.0.2 on my WordPress 3.3.1 site and I can’t get the shortcodes to work. If I add a shortcode to any of the forums it just shows the [shortcode].

    http://www.rmminc.org/forums is blank the forums I created don’t show up on the page.

    Below are two forums I setup

    http://www.rmminc.org/forums/forum/homelessness

    http://www.rmminc.org/forums/forum/poverty

Viewing 25 results - 14,351 through 14,375 (of 26,882 total)
Skip to toolbar