Skip to:
Content
Pages
Categories
Search
Top
Bottom

Search Results for '\"wordpress\"'

Viewing 25 results - 10,126 through 10,150 (of 26,866 total)
  • Author
    Search Results
  • #142895
    Robin W
    Moderator

    Did you disable the stylepress plugin, as it seems to be pointing to that?

    This plugin is no longer maintained viz

    https://wordpress.org/plugins/style-press/

    I’d also post a query on the yootheme suppprt site, as they may have come across this

    #142893

    In reply to: Freshness Date Format

    Asynaptic
    Participant

    there is an existing ticket but it is awaiting popular demand to be fixed:
    https://bbpress.trac.wordpress.org/ticket/2031

    I’m not sure exactly how ‘demand’ is measured by the dev team. There certainly has been multiple requests for help to make this change both on the forum and elsewhere on the internet.

    How difficult would it be to allow for bbpress admins to toggle between a freshness date format and a date/time format? wordpress already allows for this type of dating for posts so I can’t see this as being a complicated issue.

    the freshness tag shows previous conversations about this issue:

    https://bbpress.org/forums/topic-tag/freshness/

    Here are a few previous forum postings asking for help in changing the freshness format to a static date:

    Freshness Date, Instead of ongoing Time frame

    Edit or delete freshness

    Change freshness to date after 24 hours


    https://bbpress.org/forums/topic/how-do-you-change-the-freshness-of-post-date-format/
    https://bbpress.org/forums/topic/show-exact-date-of-post-not-freshness/
    https://bbpress.org/forums/topic/timestamp-posted-m-d-y-time/

    there are also discussions outside of the bbpress.org forums:
    http://bbshowcase.org/forums/topic/exact-timedate-in-forum-last-poster
    http://wordpress.stackexchange.com/questions/77441/how-to-edit-bbp-forum-freshness-link-format

    Is this enough to meet the ‘demand’ quota? most people have been searching for this going back many years without any resolution.

    If this isn’t enough demand, then what would be?

    Mycelus
    Participant

    While I appreciate your work, this is not a viable solution.

    The fact that bbPress comes out of the box with a box that says “forum” makes no sense.

    Any forums I’ve seen (IPB, XenForo, phpBB, etc etc etc) have boxes for each category, and then the forum names, not a box that says forum, then the categories, then the forums underneath, bbPress’ layout makes no sense and I am not looking to download a child theme and then have to customize it because I don’t currently possess enough CSS and WordPress knowledge to do so.

    I am learning, Im not sitting around or anything, but bbPress should look like the other forum layouts because it’s current layout makes 0 sense.

    Are there any repositories with some example images of how to go about styling bbPress? I don’t know if it’s just me but bbPress has been around for years if I’m not mistaken and there’s a surprising lack of documentation on it for how popular it is.

    #142861
    Karnifexx
    Participant

    bbpress has a large number of do_action() statements. I am familiar with this at the wordpress level but I am unable to locate where bbpress registers a large number of these actions. Specifically I would like to change the behaviour of:

    do_action( ‘bbp_template_before_forums_loop’ );
    If someone could point me in the right direction that would be greatly appreciated.

    #142860
    Lynqoid
    Participant

    This is what you will need to use to actually add a class to the body class. You could look at getting the post by the get_queried_object(); function in WordPress and then getting the title of that object. After that you could then use the sanitize_title_with_dashes($forum_title); to get a safe class name.

    Please note I haven’t fully tested the code below and i’m not sure the $forum_object->post_title; will work but it get’s you moving in the right direction 🙂

    
    <?php
    $forum_object = get_queried_object();
    $forum_title = $forum_object->post_title;
    $forum_class = sanitize_title_with_dashes($forum_title);
    ?>
    <body <?php body_class($forum_class); ?>>
    

    Good luck!

    #142857
    lukas_doubek
    Participant

    Hi, everywhere, i mean everyone on every tutorial is mentioned, that you must install the plugin like this

    1) Visit the WordPress Administration Screen and navigate to Plugins > Add New.
    2) Search for bbPress
    3) Locate the bbPress plugin and click install
    4) Activate the plugin

    But i dont want people to have to install it, i want the plugin to be allready integrated in my custom theme im building. But when i copied it to my plugin folder (in my custom theme folder, not the “wp-conetnt/plugins” !!), and i required it in my functions.php. after this, the web get stacked, it kills my browser, because there is hundreds of error messages:

    Warning: ksort() expects parameter 1 to be array, null given in /www/doc/domain/www/wp-content/themes/theme/plugins/bbpress/includes/core/template-functions.php on line 316

    Warning: reset() expects parameter 1 to be array, null given in /www/doc/domain/www/wp-content/themes/theme/plugins/bbpress/includes/core/template-functions.php on line 321

    ………….

    Does anybody know how to integrate it? it would be great if there is some tutorial. everywhere i find how to use it, or the 4 steps to install it by zip uploading.

    thanks for help

    #142853

    In reply to: How to users LOGOUT?

    Lynqoid
    Participant

    You can use the wp_logout_url.
    https://codex.wordpress.org/Function_Reference/wp_logout_url

    <a href="<?php echo wp_logout_url(); ?>">Logout</a>

    Good luck!

    #142833
    NikolajR
    Participant

    Hi,
    I have a little problem in my bbpress forum.
    I am using a theme, and the theme is moving the links in the forum to the right side.
    It does the same with the avatars of the users. It does not happen with the first post. But alle the others.
    I hope someone can help me out.

    Forum link: http://danskyt.net/forums/
    Screenshot of the problem: http://gyazo.com/9f5db4301317e75ad87525c56f5fa09b.png
    Screenshot of the first post in topic: http://gyazo.com/c346d1565561621cfa42a674fde6a6d5.png

    WordPress v. 3.8.1
    BBPress v. 2.5.3
    Theme: Point
    WebSite: http://danskyt.net/

    #142803
    tom211221
    Participant

    Hello,

    i have had a wordpress website designed for me which included bbpress, i have some knowledge of wordpress but im not a pro at it.

    I have added a couple of widgets to the bbpress sidebar and they are displaying at the bottom of the page. is there a way to adjust the margins and width of the forum itself without changing the website widths???

    i have left it at the bottom let me know what you can do to help.

    http://www.yourfriendshipcircle.com/forums/forum/general/

    #142792
    exploder
    Participant

    I have the same issue.

    To solve this i have implemented the fix of barnabe in small plugin. This way I don’t have to edit the core of WordPress.

    The plugin is available here:
    http://www.exploder.org/bbpress-qtranslate-fix.tar.gz

    #142778
    rlitts
    Participant

    I set the debugging in the config.php file to true and this message appeared immediately while logged in.

    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/njhopz/public_html/wp-includes/functions.php on line 3049.

    When trying to log out it gave me
    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/njhopz/public_html/wp-includes/functions.php on line 3049

    Warning: Cannot modify header information – headers already sent by (output started at /home/njhopz/public_html/wp-includes/functions.php:3049) in /home/njhopz/public_html/wp-login.php on line 415

    Warning: Cannot modify header information – headers already sent by (output started at /home/njhopz/public_html/wp-includes/functions.php:3049) in /home/njhopz/public_html/wp-login.php on line 427

    Warning: Cannot modify header information – headers already sent by (output started at /home/njhopz/public_html/wp-includes/functions.php:3049) in /home/njhopz/public_html/wp-includes/pluggable.php on line 695

    Warning: Cannot modify header information – headers already sent by (output started at /home/njhopz/public_html/wp-includes/functions.php:3049) in /home/njhopz/public_html/wp-includes/pluggable.php on line 696

    Warning: Cannot modify header information – headers already sent by (output started at /home/njhopz/public_html/wp-includes/functions.php:3049) in /home/njhopz/public_html/wp-includes/pluggable.php on line 697

    Warning: Cannot modify header information – headers already sent by (output started at /home/njhopz/public_html/wp-includes/functions.php:3049) in /home/njhopz/public_html/wp-includes/pluggable.php on line 698

    Warning: Cannot modify header information – headers already sent by (output started at /home/njhopz/public_html/wp-includes/functions.php:3049) in /home/njhopz/public_html/wp-includes/pluggable.php on line 699

    Warning: Cannot modify header information – headers already sent by (output started at /home/njhopz/public_html/wp-includes/functions.php:3049) in /home/njhopz/public_html/wp-includes/pluggable.php on line 700

    Warning: Cannot modify header information – headers already sent by (output started at /home/njhopz/public_html/wp-includes/functions.php:3049) in /home/njhopz/public_html/wp-includes/pluggable.php on line 703

    Warning: Cannot modify header information – headers already sent by (output started at /home/njhopz/public_html/wp-includes/functions.php:3049) in /home/njhopz/public_html/wp-includes/pluggable.php on line 704

    Warning: Cannot modify header information – headers already sent by (output started at /home/njhopz/public_html/wp-includes/functions.php:3049) in /home/njhopz/public_html/wp-includes/pluggable.php on line 705

    Warning: Cannot modify header information – headers already sent by (output started at /home/njhopz/public_html/wp-includes/functions.php:3049) in /home/njhopz/public_html/wp-includes/pluggable.php on line 706

    Warning: Cannot modify header information – headers already sent by (output started at /home/njhopz/public_html/wp-includes/functions.php:3049) in /home/njhopz/public_html/wp-includes/pluggable.php on line 709

    Warning: Cannot modify header information – headers already sent by (output started at /home/njhopz/public_html/wp-includes/functions.php:3049) in /home/njhopz/public_html/wp-includes/pluggable.php on line 710

    Warning: Cannot modify header information – headers already sent by (output started at /home/njhopz/public_html/wp-includes/functions.php:3049) in /home/njhopz/public_html/wp-includes/pluggable.php on line 711

    Warning: Cannot modify header information – headers already sent by (output started at /home/njhopz/public_html/wp-includes/functions.php:3049) in /home/njhopz/public_html/wp-includes/pluggable.php on line 712

    Warning: Cannot modify header information – headers already sent by (output started at /home/njhopz/public_html/wp-includes/functions.php:3049) in /home/njhopz/public_html/wp-includes/pluggable.php on line 896

    #142753
    Stephen Edgar
    Keymaster

    I’m not sure what the original motivation was for this decision but it has been this way now for over 7 years.

    https://bbpress.trac.wordpress.org/browser/branches/0.7

    #142746
    Stephen Edgar
    Keymaster

    As per your post ~2 years ago https://bbpress.org/forums/topic/last-post-date-time-instead-of-freshness/ and the Trac ticket you created:

    https://bbpress.trac.wordpress.org/ticket/2031

    Valid, though easily handled in a theme; there are functions to support this if you want this on your own site.
    Closing as wontfix. If it turns into a popular request, we can reopen and revisit this then.

    #142709
    futiles
    Participant

    When a user tries to edit their reply, the “Edit” button links to: http://www.achievementfest.com/index.php/forums/topic/%5BTHREAD NAME]/edit/

    Which goes to a 404 error. I am using WordPress 3.6.1, and bbPress 2.5.3-5249. I had been using a previous version of bbPress, with the same issue, and tried updating it to see if the problem resolved.

    I cannot find anything about setting up the edit page, so, I don’t know if I missed a step.

    Does anyone have a suggestion, please?

    #142708
    SK
    Participant

    Ticket https://bbpress.trac.wordpress.org/ticket/2031

    One feature that I struggle a bit in why bbPress broke from the norm is Freshness. It is customary to have the last column for “Last post” which includes the date-time of last post (topic/reply) and the author of last post.

    bbPress has decided to use “Freshness” instead of “Last post” as title. Instead of date-time, it displays time-since.

    Perhaps time to move to the more convention approach here. Probably good for performance too – won’t need to calculate freshness.

    bbPress

    phpBB

    Simple Machines Forum

    vBulletin

    #142705

    In reply to: Form To Forum Post

    PinkishHue
    Participant

    I’m very new to bbpress but have been working with WordPress for quite a while. I have a WordPress form (displayed using a custom page template) to post solution here: http://pinkishhue.com/an-alternative-to-tdo-mini-forms-for-wordpress/#workingsolution

    Perhaps this code could be altered to insert the post as a forum post instead of a regular post? Sounds like it shouldn’t be too complicated (maybe!)

    Hope that helps.

    #142697
    eyebridge
    Participant

    This is new

    #142673

    In reply to: LABELS

    Robin W
    Moderator

    ok, I think that’s the way to go, as whilst all my suggestions work, something is not right in the way you are implementing them, not your fault, wordpress “under the bonnet” takes a little learning

    Good luck, an come back if you spot other areas, and I’ll try and resolve

    #142665

    In reply to: Forum display

    Robin W
    Moderator

    REPEAT : It would take a long time to go through what you would need to do – Basically it is all to do with styling and functions.

    The problem is that in answering this question I’d need to explain firefox and firebug, css, php bbpress structure and lots more.

    But to get you started – THIS IS NOT THE SOLUTION – but a couple of lines that will see you get further forward. you’ll need to look at “inline” as well to get the is horizontal.

    You could do a bar several ways, but the easiest is create a copy of your page template for bbpress to use

    see https://codex.bbpress.org/step-by-step-guide-to-setting-up-a-bbpress-forum/ section 8

    and then play with the following

    in css add

    #subnav {
    background: none repeat scroll 0 0 #2020ff;
    border-bottom: 1px solid #BBBBBB;
    font-size: 12px;
    margin-top: 81px;

    }
    and in you bbpress page template put under the header

    <div id=”subnav”>
    <ul id=”nav-user” class=”menu”>

  • Register
  • Lost Password
  • </div>

#142655
Robin W
Moderator

Really a wordpress not a bbPress question, and quite a techy area

This is the code that I use to add a location to user details, which should help get you started.

//this function adds the updated town and county info to the database
function bbp_edit_user_tc( $user_id ) {
	$town = ( $_POST['town'] ) ;
	$county = ($_POST['county'] ) ;

	// Update town user meta
	if ( !empty( $town ) )
		update_user_meta( $user_id, 'town', $town);

	// Delete town user meta
	else
		delete_user_meta( $user_id, 'town' );
		
	//Update county user meta
	if ( !empty( $county ) )
		update_user_meta( $user_id, 'county', $county);

	// Delete county user meta
	else
		delete_user_meta( $user_id, 'county' );
}
add_action( 'personal_options_update',         'bbp_edit_user_tc' );
add_action( 'edit_user_profile_update',        'bbp_edit_user_tc' );

}
#142654

In reply to: Forum display

Robin W
Moderator

If you want someone to do it for you, go to

http://jobs.wordpress.net/

where someone will do anything from a minor change through to a full time job !

#142647
Robin W
Moderator

hmmm…my version works perfectly, one email per topic or reply.

bbPress uses WordPress to email, and the line in bbress notify is
`@wp_mail($email, $subject, $body, $headers);
`
Maybe that something within your wordpress/host setup is causing the issue (I suspect from yoru comments you already think this might be the case).

I’d suggest you do a test. in Dashboard>settings>discussion enable “email me whenever anyone posts a comment” and then post a comment to a blog (not bbPress). If you get more than one email, then it is not a bbPress problem, and try posting it to https://wordpress.org/support/ for help.

#142646
jslom
Participant

I have a form, with multiple inputs that I am trying to get posted to the wordpress “post_content”. I am able to get the title field and only one other field to post successfully, only when making a field name “description” instead of “description[]”, but have no idea how I can get the rest to submit into the post_content. I would like the inputs posted like the image I have created below.

Here is the code I currently have that works for the title only.


    <?php /* Template Name: Question Form */ ?>
    
    
    <?php
    if( 'POST' == $_SERVER['REQUEST_METHOD'] && !empty( $_POST['action'] ) &&  $_POST['action'] == "new_post") {
    if (isset ($_POST['title'])) {
    	$title =  $_POST['title'];
    } else {
    	echo 'Please enter a title';
    }
    if (isset ($_POST['description'])) {
    	$description = $_POST['description'];
    } else {
    	echo 'Please enter the content';
    }
    $tags = $_POST['post_tags'];
    $new_post = array(
    	'post_title'    => $title,
    	'post_content'  => $_POST['description'],
    	'post_parent' => 599,
    	'post_status'   => 'publish',
    	'post_type' => 'topic'
    );
    $topic_meta = array(
    'forum_id'       => $new_post['post_parent']
    );
    $topic_id = bbp_insert_topic($new_post, $topic_meta);
    wp_redirect(get_permalink($topic_id)); exit;
    }
    ?>
    
    
    <form id="new_post" name="new_post" method="post" action="">
    
    <p class="question"><label>Title</label><input name="title" type="text">

    
    <p class="question"><label>Description</label><input name="description[]" type="text">

    
    <p class="question"><label>Your First Name</label><input name="description[]" type="text">

    
    <p class="question"><label>Your Last Name</label><input name="description[]" type="text">

    
    <p align="right"><input type="submit" value="Publish" tabindex="6" id="submit" name="submit" />

    
    <input type="hidden" name="action" value="new_post" />
    
    <?php wp_nonce_field( 'new-post' ); ?>
    
    </form>

I don’t know how to add the other fields to be a part of post_content.
I have tried a few other things, but have been unsuccessful. I would appreciate any help very much!

#142641
rsafarnejad
Participant

I set up WordPress on Microsoft Azure cloud and installed bbPress. Users can add topics and type in posts/replies and the correct number of posts/replies are displayed but the actual post/reply text does not display when users click on the topic title. Take a look: http://testgene2.azurewebsites.net/?topic=which-16s-rrna-primers-to-use

Any help or ideas are appreciated. I pretty much went with the defaults on installation and settings.

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