Search Results for '"wordpress'
-
AuthorSearch Results
-
January 15, 2015 at 12:38 pm #156935
In reply to: User registration on multisite
Nicolas Korobochkin
ParticipantOne more thing. I found some “bug” in my solution. If you use wp_signup_location in MU Plugins directory you need to pass three arguments to add_filter, because mu-plugins loaded before plugins or themes.
- MU Plugins
- Plugins
- Themes
In MU Plugins:
add_filter ('wp_signup_location', 'selena_signup_page', 99); // You can set up any number greater than 10 (default value). // Otherwise your WordPress will be redirect users to wrong page.In Theme or Plugin:
add_filter ('wp_signup_location', 'selena_signup_page'); // or // add_filter ('wp_signup_location', 'selena_signup_page', 99);January 14, 2015 at 5:23 am #156898Topic: First Reply layout problem
in forum ThemesKelley
ParticipantFresh install of the latest bbpress and wordpress 4.1 – theme powermag 1.8.0
When someone posts, the first post layout is fine. Any reply after though, the avatar and name is at the bottom of the screen?
http://www.wisbechtownfc.co.uk/forums/topic/wednesday-at-histon/
I checked it with live preview on twentyfifteen and its fine, perhaps I can override the them of just the forum ?
any help would be appreciated
January 13, 2015 at 3:56 pm #156883Topic: Forum all of a sudden stopped working
in forum Troubleshootingeurythmech
ParticipantAbout one week ago, my bbPress forum stopped working. I get a 404 when trying to access the root folder of the forum. When I try to follow links to topics, they do work. But replying or navigating to the root via links does not work.
I have bbPress 2.5.4 and WordPress 4.1
How do I trouble shoot this?
January 13, 2015 at 2:09 pm #156881In reply to: Category Tree
Nekurahn
ParticipantAlright, I’ve acquired the file you mentioned. How to I upload this into wordpress? I don’t see a file/folder structure in there anywhere.
Thanks!
January 13, 2015 at 1:31 pm #156878In reply to: Change Breadcrumb url link
Robin W
Moderatorok, I’ve had a detailed look, and there is no simple filter, so we just copy the function, rename it, and the hook back
so post this in your functions file
function change_root( $args = array() ) { // Turn off breadcrumbs if ( apply_filters( 'bbp_no_breadcrumb', is_front_page() ) ) return; // Define variables $front_id = $root_id = 0; $ancestors = $crumbs = $tag_data = array(); $pre_root_text = $pre_front_text = $pre_current_text = ''; $pre_include_root = $pre_include_home = $pre_include_current = true; /** Home Text *********************************************************/ // No custom home text if ( empty( $args['home_text'] ) ) { $front_id = get_option( 'page_on_front' ); // Set home text to page title if ( !empty( $front_id ) ) { $pre_front_text = get_the_title( $front_id ); // Default to 'Home' } else { $pre_front_text = __( 'Home', 'bbpress' ); } } /** Root Text *********************************************************/ // No custom root text if ( empty( $args['root_text'] ) ) { $page = bbp_get_page_by_path( bbp_get_root_slug() ); if ( !empty( $page ) ) { $root_id = $page->ID; } $pre_root_text = bbp_get_forum_archive_title(); } /** Includes **********************************************************/ // Root slug is also the front page if ( !empty( $front_id ) && ( $front_id === $root_id ) ) { $pre_include_root = false; } // Don't show root if viewing forum archive if ( bbp_is_forum_archive() ) { $pre_include_root = false; } // Don't show root if viewing page in place of forum archive if ( !empty( $root_id ) && ( ( is_single() || is_page() ) && ( $root_id === get_the_ID() ) ) ) { $pre_include_root = false; } /** Current Text ******************************************************/ // Search page if ( bbp_is_search() ) { $pre_current_text = bbp_get_search_title(); // Forum archive } elseif ( bbp_is_forum_archive() ) { $pre_current_text = bbp_get_forum_archive_title(); // Topic archive } elseif ( bbp_is_topic_archive() ) { $pre_current_text = bbp_get_topic_archive_title(); // View } elseif ( bbp_is_single_view() ) { $pre_current_text = bbp_get_view_title(); // Single Forum } elseif ( bbp_is_single_forum() ) { $pre_current_text = bbp_get_forum_title(); // Single Topic } elseif ( bbp_is_single_topic() ) { $pre_current_text = bbp_get_topic_title(); // Single Topic } elseif ( bbp_is_single_reply() ) { $pre_current_text = bbp_get_reply_title(); // Topic Tag (or theme compat topic tag) } elseif ( bbp_is_topic_tag() || ( get_query_var( 'bbp_topic_tag' ) && !bbp_is_topic_tag_edit() ) ) { // Always include the tag name $tag_data[] = bbp_get_topic_tag_name(); // If capable, include a link to edit the tag if ( current_user_can( 'manage_topic_tags' ) ) { $tag_data[] = '<a href="' . esc_url( bbp_get_topic_tag_edit_link() ) . '" class="bbp-edit-topic-tag-link">' . esc_html__( '(Edit)', 'bbpress' ) . '</a>'; } // Implode the results of the tag data $pre_current_text = sprintf( __( 'Topic Tag: %s', 'bbpress' ), implode( ' ', $tag_data ) ); // Edit Topic Tag } elseif ( bbp_is_topic_tag_edit() ) { $pre_current_text = __( 'Edit', 'bbpress' ); // Single } else { $pre_current_text = get_the_title(); } /** Parse Args ********************************************************/ // Parse args $r = bbp_parse_args( $args, array( // HTML 'before' => '<div class="bbp-breadcrumb"><p>', 'after' => '</p></div>', // Separator 'sep' => is_rtl() ? __( '‹', 'bbpress' ) : __( '›', 'bbpress' ), 'pad_sep' => 1, 'sep_before' => '<span class="bbp-breadcrumb-sep">', 'sep_after' => '</span>', // Crumbs 'crumb_before' => '', 'crumb_after' => '', // Home 'include_home' => $pre_include_home, 'home_text' => $pre_front_text, // Forum root 'include_root' => $pre_include_root, 'root_text' => $pre_root_text, // Current 'include_current' => $pre_include_current, 'current_text' => $pre_current_text, 'current_before' => '<span class="bbp-breadcrumb-current">', 'current_after' => '</span>', ), 'get_breadcrumb' ); /** Ancestors *********************************************************/ // Get post ancestors if ( is_singular() || bbp_is_forum_edit() || bbp_is_topic_edit() || bbp_is_reply_edit() ) { $ancestors = array_reverse( (array) get_post_ancestors( get_the_ID() ) ); } // Do we want to include a link to home? if ( !empty( $r['include_home'] ) || empty( $r['home_text'] ) ) { $crumbs[] = '<a href="' . trailingslashit( home_url() ) . '" class="bbp-breadcrumb-home">' . $r['home_text'] . '</a>'; } // Do we want to include a link to the forum root? if ( !empty( $r['include_root'] ) || empty( $r['root_text'] ) ) { // Page exists at root slug path, so use its permalink $page = bbp_get_page_by_path( bbp_get_root_slug() ); if ( !empty( $page ) ) { $root_url = get_permalink( $page->ID ); // Use the root slug } else { $root_url = get_post_type_archive_link( bbp_get_forum_post_type() ); } // Add the breadcrumb //$crumbs[] = '<a href="' . esc_url( $root_url ) . '" class="bbp-breadcrumb-root">' . $r['root_text'] . '</a>'; $crumbs[] = '<a href="/forums/">Forums</a>'; } // Ancestors exist if ( !empty( $ancestors ) ) { // Loop through parents foreach ( (array) $ancestors as $parent_id ) { // Parents $parent = get_post( $parent_id ); // Skip parent if empty or error if ( empty( $parent ) || is_wp_error( $parent ) ) continue; // Switch through post_type to ensure correct filters are applied switch ( $parent->post_type ) { // Forum case bbp_get_forum_post_type() : $crumbs[] = '<a href="' . esc_url( bbp_get_forum_permalink( $parent->ID ) ) . '" class="bbp-breadcrumb-forum">' . bbp_get_forum_title( $parent->ID ) . '</a>'; break; // Topic case bbp_get_topic_post_type() : $crumbs[] = '<a href="' . esc_url( bbp_get_topic_permalink( $parent->ID ) ) . '" class="bbp-breadcrumb-topic">' . bbp_get_topic_title( $parent->ID ) . '</a>'; break; // Reply (Note: not in most themes) case bbp_get_reply_post_type() : $crumbs[] = '<a href="' . esc_url( bbp_get_reply_permalink( $parent->ID ) ) . '" class="bbp-breadcrumb-reply">' . bbp_get_reply_title( $parent->ID ) . '</a>'; break; // WordPress Post/Page/Other default : $crumbs[] = '<a href="' . esc_url( get_permalink( $parent->ID ) ) . '" class="bbp-breadcrumb-item">' . get_the_title( $parent->ID ) . '</a>'; break; } } // Edit topic tag } elseif ( bbp_is_topic_tag_edit() ) { $crumbs[] = '<a href="' . esc_url( get_term_link( bbp_get_topic_tag_id(), bbp_get_topic_tag_tax_id() ) ) . '" class="bbp-breadcrumb-topic-tag">' . sprintf( __( 'Topic Tag: %s', 'bbpress' ), bbp_get_topic_tag_name() ) . '</a>'; // Search } elseif ( bbp_is_search() && bbp_get_search_terms() ) { $crumbs[] = '<a href="' . esc_url( bbp_get_search_url() ) . '" class="bbp-breadcrumb-search">' . esc_html__( 'Search', 'bbpress' ) . '</a>'; } /** Current ***********************************************************/ // Add current page to breadcrumb if ( !empty( $r['include_current'] ) || empty( $r['current_text'] ) ) { $crumbs[] = $r['current_before'] . $r['current_text'] . $r['current_after']; } /** Separator *********************************************************/ // Wrap the separator in before/after before padding and filter if ( ! empty( $r['sep'] ) ) { $sep = $r['sep_before'] . $r['sep'] . $r['sep_after']; } // Pad the separator if ( !empty( $r['pad_sep'] ) ) { if ( function_exists( 'mb_strlen' ) ) { $sep = str_pad( $sep, mb_strlen( $sep ) + ( (int) $r['pad_sep'] * 2 ), ' ', STR_PAD_BOTH ); } else { $sep = str_pad( $sep, strlen( $sep ) + ( (int) $r['pad_sep'] * 2 ), ' ', STR_PAD_BOTH ); } } /** Finish Up *********************************************************/ // Filter the separator and breadcrumb $sep = apply_filters( 'bbp_breadcrumb_separator', $sep ); $crumbs = apply_filters( 'bbp_breadcrumbs', $crumbs ); // Build the trail $trail = !empty( $crumbs ) ? ( $r['before'] . $r['crumb_before'] . implode( $sep . $r['crumb_after'] . $r['crumb_before'] , $crumbs ) . $r['crumb_after'] . $r['after'] ) : ''; return apply_filters( 'change_root', $trail, $crumbs, $r ); } add_filter ('bbp_get_breadcrumb', 'change_root') ;January 13, 2015 at 1:07 pm #156875In reply to: Custom Sidebar Problem
shootingtime
ParticipantCheck this link here.https://wordpress.org/support/topic/custom-sidebar-not-showing-up-2?replies=4#post-6429823
Looks like you’re in the right track.
January 13, 2015 at 12:53 pm #156873In reply to: Category listing
Robkk
Moderatori think you might need to go to http://jobs.wordpress.net/ to get this kind of feature.
January 13, 2015 at 12:33 pm #156868lflier
ParticipantOver on the ticket page (https://bbpress.trac.wordpress.org/ticket/2523#comment:1) there is a ticket reporting a bug in which reply treading breaks pagination.
I was about to report the same thing, until I saw a reply explaining that disabling pagination is by design. I had just spent the better part of a morning trying to figure out what happened to the pagination on my site. Turns out I had activated the reply threading.
Several other members in another support thread have asked for a solution. It’s not clear to me why it isn’t possible to paginate replies where threading is enabled. A solution in which a top-level reply, along with all of its threaded sub-level replies, is counted as a single reply for pagination purposes would be acceptable — certainly better than the present situation, where you can choose threading or pagination but not both.
And at the very least, this either/or choice needs to be made transparent to the user. Clicking an innocent looking check box on a configuration page shouldn’t disable another function on the same page without a warning. That’s just bad design. It wouldn’t be difficult, for example, to grey-out and disable the pagination controls when the threading check box is checked. That would get the message across.
If my skills were up to it, I’d offer to help. As it is, I can only offer my feedback.
January 13, 2015 at 12:27 pm #156866lflier
ParticipantOver on the ticket page (https://bbpress.trac.wordpress.org/ticket/2523#comment:1) there is a ticket reporting a bug in which reply treading breaks pagination.
I was about to report the same thing, until I saw your reply explaining that disabling pagination is by design. I had just spent the better part of a morning trying to figure out what happened to the pagination on my site. Turns out I had activated the reply threading.
Several other members in this thread have asked for a solution. It’s not clear to me why it isn’t possible to paginate replies where threading is enabled. A solution in which a top-level reply, along with all of its threaded sub-level replies, is counted as a single reply for pagination purposes would be acceptable — certainly better than the present situation, where you can choose threading or pagination but not both.
And at the very least, this either/or choice needs to be made transparent to the user. Clicking an innocent looking check box on a configuration page shouldn’t disable another function on the same page without a warning. That’s just bad design. It wouldn’t be difficult, for example, to grey-out and disable the pagination controls when the threading check box is checked. That would get the message across.
If my skills were up to it, I’d offer to help. As it is, I can only offer my feedback.
January 13, 2015 at 12:22 pm #156865In reply to: bbPress Android\iOs app
Robkk
ModeratorAs well is it possible to make Search widget available at ANY page? A looks it like forum search results (after searching something) or its just a regular search of WordPress?
the search widget should be able to handle being on different pages as long as you have it in your sidebar.
do you have an issue with it not being on some pages??
and the bbPress forum search that displays on the forum archive and also the search widget should only show results of bbPress related topics/replies/forums based on what you searched.
you can let the regular WordPress search show results of bbPress related topics/replies/forums if you follow this topic in the link.
Plugin, snippet, hack to include bbpress topics in wordpress search
Is it possible do detect in some ways that user subscribe only for particular “Forum” to receive ONLY noyifications (mail) for those “answers” …? Which function does it?
i havent found a plugin that could do this , so this might be some custom development so you might need to post another job in jobs.wordpress.net
January 13, 2015 at 12:09 pm #156864In reply to: Custom Sidebar Problem
mvaneijgen
ParticipantHey what did you do to fix it? Cause im having the same problem with Custom Sidebars (from WPMU)
January 13, 2015 at 10:49 am #156861In reply to: Search not working in default theme (twentyfifteen)
peetrike
ParticipantOk, thanks for your reply. But disabling all plugins didn’t fix the problem. The forum search was still not working. Somewhy it just shows only the most recent wordpress post in search results, no matter what I type in the search field. But when I switch themes (to twentythirteen or twentyfourteen, the forum search is working just fine.
So it can’t be a plugin problem, it must be a theme problem.
Or maybe it is some sort of database problem (as I recently migrated to another server)? But then how is it possible that it is working fine using other themes?
January 13, 2015 at 4:45 am #156848In reply to: Possible to get inline info and nested?
Robin W
Moderatorno that just gets you to the staring line !
you could advertise it on wordpressjobs
January 13, 2015 at 4:31 am #156845In reply to: bbPress Android\iOs app
NewCo
ParticipantOk thx for the answers.
Is it possible do detect in some ways that user subscribe only for particular “Forum” to receive ONLY noyifications (mail) for those “answers” …? Which function does it?
As well is it posiible to make Search widget available at ANY page? A looks it like forum search results (after searching something) or its just a regular search of WordPress?
January 13, 2015 at 3:13 am #156844In reply to: Possible to get inline info and nested?
tglarsen
ParticipantAwesome!
I have created/copied that file over to the new directory and I see it in the wordpress eidtor.
However, nothing changed on the forum pages themselves. I take it you got me to the starting line… and now come all the alterations, or should I see something of a change?
Thank you for the help!!!!
January 12, 2015 at 5:01 pm #156822In reply to: bbPress Android\iOs app
Robkk
Moderatoroh ok the zoom is probably just the app or maybe even some phone animations.
and bbPress has custom post types forums, topics, and replies
custom post types are just like regular WordPress Posts
bbPress doesnt use WordPress comments , the replies are just like regular posts
January 12, 2015 at 4:17 pm #156818In reply to: Search not working in default theme (twentyfifteen)
peetrike
ParticipantStill no replies? Finding the solution to the forum Search problem should be the main priority as twentyfifteen is the default theme of WordPress.
I’m surprised that an issue as important as this has not yet been tackled.January 12, 2015 at 2:21 pm #156807In reply to: bbPress Android\iOs app
NewCo
ParticipantBy ZOOM I meant when I loading a Mobile Version of the BBpress site via WEBview option of Android App… and want to type something its zooming in)
One technical question:
BBpress have structure:
Forums AND Posts
is it like
Posts (in wordpress) and Comments (in wordpress)
January 12, 2015 at 2:12 pm #156805Robin W
Moderatorok, suggest https://wordpress.org/support/ is the pace to go
January 12, 2015 at 1:33 pm #156802Robin W
Moderatoras far as I know it is a minimum of four
see
https://wordpress.org/plugins/network-username-restrictions-override/
Whilst this hasn’t been updated it probably still works !
Otherwise this is a wordpress thing rather than bbpress, so post in
January 11, 2015 at 9:24 pm #156786Topic: Chinese translation for bbpress
in forum Requests & Feedbackwei1031
ParticipantHi,
I have translated bbpress into Chinese with poedit application. Could anyone help me to upload .po file to https://translate.wordpress.org/projects?
thanks
January 11, 2015 at 11:35 am #156776In reply to: bbPress Android\iOs app
Robkk
Moderatorthese features you listed from what i can tell aren’t that bad im sure a developer at jobs.wordpress.net could develop this
1. there is already a mobile device layout created from the bbPress stylesheet , but its not that great but it does the job. You can improve the layout with bbPress but that requires a lot of modifying bbpress templates in your child theme.
1.1 It should be not ZOOM in when I push to post a topic\message answer
please explain this so i can know if its a bug or not
January 11, 2015 at 9:57 am #156767In reply to: Remove Forum text and search bar
Robkk
Moderatoryou can disable the search form in settings>forums in the backend dashboard of WordPress so that you wont have to use the CSS anymore.
and unless you already did you could remove the code that renders the title in your bbpress.php file.
if you haven’t created a bbpress.php you should
if you still need help copy the first half of the bbpress.php file you have in a reply here.
January 11, 2015 at 9:48 am #156766In reply to: bbp_setup_current_user was called incorrectly.
Robin W
ModeratorAs you no doubt already know, this is just a warning message, and bbpress say it is an issue with wordpress, and are waiting for wordpress to fix. Also as you know (but for others reading this), turning off debug fixes this.
If you want it to disappear whilst you are developing (and so need debug on), then go to
wp-content/plugins/bbpress/includes/core/sub-actions.php
and comment out/change line 147
_doing_it_wrong( __FUNCTION__, __( 'The current user is being initialized without using $wp->init().', 'bbpress' ), '2.3' );to
//_doing_it_wrong( __FUNCTION__, __( 'The current user is being initialized without using $wp->init().', 'bbpress' ), '2.3' );and change back after developing as well as turning debug off for the production environment
January 11, 2015 at 9:25 am #156762In reply to: bbPress 2.0 shortcode whitelist and bbcode plugins
Robkk
Moderatoruse this plugin instead and see if it works
-
AuthorSearch Results