Skip to:
Content
Pages
Categories
Search
Top
Bottom

Search Results for '\"wordpress\"'

Viewing 25 results - 10,251 through 10,275 (of 26,866 total)
  • Author
    Search Results
  • #142135
    Gautam Gupta
    Participant

    You’re welcome. And the explanation:

    First I got undifined Variable for $topic_id so I added the $topic_id = 0; at the code, Zero stands for getting the topic ID from the loop ?

    Where the bbp_new_topic hook is called, the line says:

    do_action( 'bbp_new_topic', $topic_id );

    It calls all the functions hooked to bbp_new_topic and also passes the $topic_id parameter, which in our case is:

    function shmoo_auto_save_tags( $topic_id ) {

    During this stage, I do not think we’re in the loop (I maybe wrong, I haven’t checked). The topic id internally would be something different at the point of insertion, that’s why in our function we’re now passing the variable to other functions:

    $bbp_topic_content = bbp_get_topic_content( $topic_id );

    On a side note, you had done $topic_id = 0; at the very beginning of the function. Due to that, whatever topic id was being passed was being disregarded and instead set to 0.

    More on actions and filters: https://codex.wordpress.org/Plugin_API#Hooks.2C_Actions_and_Filters

    #142123
    jamestranm
    Participant

    Hi,

    I’ve installed bbPress, I’m using the latest version of bbPress and WordPress.

    I’m not sure why but the root forum page and profile page is just showing plan text.

    These two page show up with just flat text.
    http://www.gaysofyoutube.com/forums/
    http://www.gaysofyoutube.com/forums/users/admin

    While these pages (forum and topic) actually show up with the tables and so.
    http://www.gaysofyoutube.com/forums/forum/gays-of-youtube/
    http://www.gaysofyoutube.com/forums/topic/hello/

    Also how do I go about removing the blue status bar and the share and infobar at the bottom?

    #142113

    Okay just realized that it’s only showing 450 users because it ONLY creates a user IF they posted or replied to a topic. Looks like 80% of the users never posted, so they didn’t get their account created.

    This doesn’t explain why it’s showing the WP-Admin as the author for a majority of posts in the forum though (even though they are verified users in the system).

    Next step I’ll be taking is finding a WordPress user export/import tool. Importing the users FIRST, and THEN importing the forums. Let’s see if that makes a difference.

    #142108
    sconxystylon
    Participant

    Hello Community, I have bbpress install on my wordpress localhost site to test some functionalities. Currently i have contango theme installed. My problem is with the search result of the forum. Search the forum with topic titles i have created result in a different display. The search result display only the first blog content of a newly installed wordpress and nothing relating to forum search.

    Why am I not getting the forum search results page? but rather gets the normal wordpress search results page?

    I am not a programmer but fairly understand the technical details. Can any one help me.

    #142097
    Scoe
    Participant

    Hi All,

    I’ve recently upgraded to the latest version of bbPress and WordPress and the main links within the admin (Forums, Topics, Replies) have disappeared.

    The forum itself is working properly, I can get to the edit screen for each existing post by going to the public side of the site and clicking “edit page”.

    I tried refreshing permalinks & going into the bbPress settings and re-saving them.

    I had a similar problem on another site with different custom post types, the fix was to set
    ‘public’ => true when registering the post type.

    Could this be the problem here?

    Any help would be appreciated.

    alfredo49
    Participant

    Hi:

    In my wordpress dashboard when wp e commerce (last version) is actived , bbpress (also last version) control panel in the dashboards disappears. Forums still running but i cant change any option in the dashboard when wp e commerce is actived beacuse any bbpress icon appears

    solution please?

    Thxs

    #142093
    Gautam Gupta
    Participant

    Better hook it to bbp_new_reply_pre_set_terms here: https://bbpress.trac.wordpress.org/browser/trunk/includes/replies/functions.php#L371 and return the $words array after joining in the supplied $terms array. Similarly for topic.

    I’d also suggest to have this at the very beginning:

    if ( !bbp_allow_topic_tags() || !current_user_can( 'assign_topic_tags' ) )
    return $terms;
    #142089
    Stephen Edgar
    Keymaster

    @shanebp wrote:

    Another issue:

    If you turn off threaded replies, the ‘reply’ link still appears on the right side for each reply. If you click it, it reloads the whole page!

    If you turn off threaded replies, the ‘reply’ link should be removed.

    This is pretty much covered in (I think) https://bbpress.trac.wordpress.org/ticket/2509

    #142088
    shanebp
    Participant

    Ticket created:
    https://bbpress.trac.wordpress.org/ticket/2540

    See: https://bbpress.trac.wordpress.org/ticket/2397

    Mod: I edited the link to point the existing Trac ticket we have.

    #142085
    nikhilrj
    Participant

    Hello,

    I have tried several plugins in order to enable sharing/ social media buttons on the individual Forum Posts such as this one: http://www.hereismyidea.com/forums/topic/tracking-my-workout-and-fitness-levels-in-gyms/ – but the sharing buttons never show up.

    What plugins do you recommend that I install in order to display the sharing buttons in a decent location for the user to use? Thanks

    WordPress 3.8.1 running Oenology theme.
    bbPress 2.5.3
    buddypress 1.9.1

    #142073

    Hello everyone,

    Recently we’ve been starting to use bbPress and it seems to be a very rich expansion of WordPress. What I wonder about is this: is it possible to show all sticky topics on your front page, using a shortcode? Say I have a part of my site that is the forum, I would still want to show the sticky topics in a widget in a sidebar, right from the start on the home page. I’ve read about shortcodes listing most popular or most recent topics, but is this possible for stickies too?

    Many thanks,
    Lucas

    #142065
    karena123
    Participant

    Wordpress: 3.8.1
    bbPress: 2.5.3
    organic-conservative.com

    I notice that when viewing a topic post from my bbpress forum on a smartphone, the user avatar increases in size and moves, covering much of the forum and topic title. I would like to know how to fix this.

    Thanks for your help.

    Shmoo
    Participant

    I would like to start this discussions because I have no idea what to think of the adding tags to topics feature in bbPress.

    First, Tags are taxonomies like Categories are also. Each Post Type ( or custom PT ) can be added with those taxonomies Categories or Tags right?

    Looking that the Core of WP and how they’re designed to work Categories and Tags where always designed to be added by editors or authors on content – people who understand how to own or maintain a website through the WordPress admin.
    Somebody who writes a blog post can define what categories and-/or tags they want to add against their blog posts – bbPress also uses Custom Post Types for Forums – Topics and Replies because they’re great for adding those kind of structural elements only there is a huge difference in the way how those work and who uses them.

    bbPress Forums have categories as taxonomy attached to them while bbPress Topics have tags attached to them. It seems pretty normal this way but if you look at how Forums and Topics are created at your WordPress site you’ll see that Forums are created by owners of the website ( like Blog Posts ) and topics are created by random users of the website.

    Topics are more like comments compared to WordPress Core functionality because their added by external users not editors or authors like Forums are – you don’t want people who write comments to your blog posts also have the ability to add Tags to them , right ?

    The main reason why I look at it like this is because I always switch the Tags functionality off in bbPress because it doesn’t work the way it should work to be honest. I think Tags are great for fast navigating and filtering-/grouping specific topics with the same errors at a forum the only difference is people who write topics have in general a problem with ‘something’ , else they don’t start a topic at your site at all. Those people often don’t know anything about blogging or maintaining a website and how Tags and Categories work. A Live example of how bad Tags in bbPress work if you let them get added by users who don’t know how they should work is the Tags Cloud on the sidebar at bbPress.org.

    Just look at the Tag Cloud in the sidebar, the bigger-sized words are most often used. BuddyPress + WordPress + Integration + Forum + Plugin + Theme those words are often tagged by people who write topics which is crazy because those are totally not Tag-wards at all.
    How could you ever filter WordPress or something like BuddyPress or Plugin at a forum? Those words are too broad or wide to be used as Tags , maybe they’re beter as Categories. Tags should be words you could search for to solve a problem – like bbPress Core function_names() could be great Tags at a forum like bbPress.org but we all know most people who write topics don’t understand this so they add more ‘sloppy’ (with al respect) words as Tags or even more worst they’re used as SEO keywords or something like that.

    My main problem with this feature is, IF you enable the Tags feature in bbPress you Moderation-activity goes up very fast because you’re always editing topics, removing bad words and adding better words. Okay we all know this is fun at the start when you’re forums are fresh and not very active yet but after 6 months or one year you don’t become very active at maintaining your topics because it takes up too much time and your Tags Cloud grows to something totally un useful as seen at bbPress.org.

    My idea is to keep the bbPress Tags feature for sure, but adding a Filter system who checks at existing Tag-words.
    There’s a Plugin called auto-tagger ( or something ) It only works at WP Posts, but what it does is it check for similar words in Post titles, content and excerpts – if a word matches a Tag-word it automatically adds the Tag to the Post.

    My opinion is we need this option by default at bbPress. Remove the adding Tags from the front-end – keep them add the back-end where some Moderator or site owner can create a list of Tags and whenever some user writes a topic and X word involves that topic the Tag will be added.
    Knowledge boards like Stock-overflow uses those kinda of systems, they don’t let people write their own tags, especially not New users, you need at least X rate before you can add your own Tags.
    Some other Great example is Zurb’s new Forum, they also add Tags automatically based on the words in the content. They’ve Pre-Tagged Foundation’s elements so whenever somebody uses one of those elements in their topics because they have a problem with this elements it becomes a Tag without doing anything. People who’s looking for support can click on those Tags and group similar topics together very easily.
    http://foundation.zurb.com/forum

    It’s a long story, but I believe this would make the Core Tags function inside bbPress a lot better and people could really use it as a great feature instead of disabling it because it’s a pain in the * to maintain in the end.
    Maybe we can use excising WordPress Plugins and change them a little bit because Blog Posts and Topics have the same structure, their both Post Types connected with a Tags taxonomy.

    What do you think ?
    Thanks for reading.

    #142016
    asprofirst
    Participant

    Hi All,

    I have implemented bbPress (last version) in my WordPress blog (last version too) at the http://www.asprofirst.fr (directly to the forum page at asprofirst.fr/forums-4).(not yet visible by search engine)
    I am facing an issue with numbers of topics and articles in bbPress.
    I have several forums on my page (the page is called Forums), posting topics on a forum doesn’t show any modification of the topic and article numbers (counters stay at 0). If I click on the line of the forum which is supposed to host topics I can verify the topics I have posted are there. This happens when I am not connected, when I am connected the counters are OK, actually there is a mismatch between these counters in connected mode or in non-connected mode.
    This is for me a big issue, with counters showing 0 nobody is going to enter the forum, the forum being supposed to be empty.

    Thanks in advance for your help, this is my first bbPress implementation.

    Asprofirst

    #142015
    Morisu
    Participant

    I think this has to do with the fact that we are developing on a local machine and not on an actual server. I have seen multiple issues opened because of this error, but no one seems to want to resolve this issue at all. I resolved it by just uploading it to an actual server and working from there. Yes it’s more tedious, but until someone comes forward with how to fully resolve this issue on local machines, you’re stuck with that solution. For styling, I ended up doing the above, throwing in a lot of replies and topics, then dumped the html into a stand-alone html file. Then styled from there on the local machine and re-uploaded the css afterwards. It more than triples the time and work, but it works. If you have a client, just let them know that is the only way as for now. As for why you’re getting the error, I understand it that bbPress logs the ip from the user each creation of a topic/reply and does not recognize 127.0.0.1 or localhost as valid ip’s (which is what most MAMP/WAMP installs use). WordPress is fine with it, but not bbPress, or so I understand it.

    #142013
    Lisa Van Ahn
    Participant

    Also I’d like to move my other comments that I had in wordpress before I moved to the forums into the forums. I saw a way to do this but the plugin looked really outdated. I’d also like help with this if you can offer it, thanks so much!

    #142010

    In reply to: Exporting bbpress

    Stephen Edgar
    Keymaster

    Yes, you should see ‘Forums’, ‘Topics’ & ‘Replies’ in that same WordPress Export tool.

    If you select ‘All content’ it will include WP’s posts, pages, taxonomies and all of bbPress.

    #142007
    jasoncoffee
    Participant

    Is there a way to export all forum, posts and replies in a XML file like is available in wordpress for posts, comments and all other content.

    I want a one click option for exporting the content. I do not care about preserving logins.

    #142002
    BrynWRuggiero
    Participant

    Hi all,

    I’m wondering if it’s possible to use the 2.x plug-in version of bbpress and maintain completely separate users from the wordpress site. Any help would be appreciated!

    Thanks,

    B

    #141999
    Stephen Edgar
    Keymaster
    #141997
    SK
    Participant

    When I am logged in as keymaster, I get:

    Notice: bbp_setup_current_user was called incorrectly. The current user is being initialized without using $wp->init(). Please see Debugging in WordPress for more information. (This message was added in version 2.3.) in /home/wp-includes/functions.php on line 3049

    #141986
    aNi_TFG
    Participant

    Got a little further

    WordPress database error: [Unknown column ‘posts.post_title’ in ‘field list’]
    SELECT convert(posts.pid USING “utf8”) AS pid,convert(posts.topic_id USING “utf8”) AS topic_id,convert(posts.topic_id USING “utf8”) AS topic_id,convert(posts.ip_address USING “utf8”) AS ip_address,convert(posts.author_id USING “utf8”) AS author_id,convert(posts.post_title USING “utf8”) AS post_title,convert(posts.post_title USING “utf8”) AS post_title,convert(posts.post USING “utf8”) AS post,convert(posts.topic_id USING “utf8”) AS topic_id,convert(posts.post_date USING “utf8”) AS post_date,convert(posts.post_date USING “utf8”) AS post_date,convert(posts.edit_time USING “utf8”) AS edit_time,convert(posts.edit_time USING “utf8”) AS edit_time FROM posts AS posts WHERE posts.new_topic = 1 LIMIT 0, 100

    #141982
    aNi_TFG
    Participant

    I then tried to import via IPB 3.4.6 -> BBPress and again, I am greeted by errors.

    This time.

    WordPress database error: [Table ‘decerto2_ipb.ipb_members’ doesn’t exist]
    SELECT convert(members.member_id USING “utf8”) AS member_id,convert(members.members_pass_hash USING “utf8”) AS members_pass_hash,convert(members.members_pass_salt USING “utf8”) AS members_pass_salt,convert(members.name USING “utf8”) AS name,convert(members.email USING “utf8”) AS email,convert(members.joined USING “utf8”) AS joined FROM ipb_members AS members LIMIT 0, 100
    No users to convert-

    Does anything WORK?

    #141981

    In reply to: bbp_new_forum hook

    That doesn’t seem right. bbp_new_forum will only fire when forums are created outside of wp-admin, like in a BuddyPress Group Forum. If you want to add meta when any new forum is created, you’ll likely need to hook into WordPress’s wp_insert_post action, instead.

    #141977
    leromt
    Participant

    For what it’s worth, here is what I ended up doing:

    1. I left my “parent” forum as a category.

    2. Around line 847 of bbpress/includes/forums/template.php, I added “true” to the if statement to force the “category” parent forum to be shown, as follows:

    // No link for categories until we support subscription hierarchy
     // @see https://bbpress.trac.wordpress.org/ticket/2475
    if ( true || bbp_is_forum_category() ) {
    $retval = bbp_get_user_subscribe_link( $r );
    }
    

    3. In bbpress/templates/default/loop-single-forum.php I replaced line 44 with the following:

    
    <?php 
    		
    $subForumList = bbp_forum_get_subforums();
    		
    if(sizeof($subForumList) > 1){
    
       echo "<ul style='margin-left: 20px;'>";
    
       foreach($subForumList as $currForum){
    
       // Create the arguments
       $r = bbp_parse_args( $args, array('forum_id' => $currForum->ID,
            'user_id' => 0,
            'before' => '',
            'after' => '',
            'subscribe' => __( 'Subscribe',   'bbpress' ),
            'unsubscribe' => __( 'x', 'bbpress' )
             ), 'get_forum_subscribe_link' );
    
        $isSubscribed = bbp_get_forum_subscription_link($r);
    
        // see if the returned html has 'is-subscribed' in it
        // if it does, then the user is subscribed to the forum
    
        if(strpos($isSubscribed, 'is-subscribed') != 0){
        echo "<li>" . $isSubscribed . "&nbsp;&nbsp;<a href='" . bbp_get_forum_permalink($currForum->ID) . "'>" . $currForum->post_title . "</a></li>";
        }
    			
       }
    
      echo "</ul>";
      } // end > 1
    ?>
    

    Feel free to criticize, pick apart, or provide feedback as you see fit…it works for me.

Viewing 25 results - 10,251 through 10,275 (of 26,866 total)
Skip to toolbar