Forum Replies Created
-
In reply to: First Reply layout problem
this looks fine on my end is your issue resolved already??
if its not reply back.
In reply to: shortcodes to sign outyou can put this function in your child themes functions.php file
function iweb_logout_url_shortcode() { return wp_logout_url( home_url() ); } add_shortcode( 'bbp-logout', 'iweb_logout_url_shortcode' );
then use [bbp-logout]
or use this plugin
In reply to: Media not working in forumscontact them and report the bug to the them please so it wont happen in the future.
In reply to: Original CSS file or Modifiedyou could download bbPress on your computer from the WordPress repository and open the bbpress.css file in a text editor like notepad++ to see what the original file looks like.
In reply to: Lost password page not redirectingi dont think the normal WordPress reset password redirects either. (bbPress is built off of WordPress)
so i think its normal??
you could add this to your functions.php in your child to redirect to your homepage after a reset password though.
function wpse_lost_password_redirect() { wp_redirect( home_url() ); exit; } add_action('password_reset', 'wpse_lost_password_redirect');
or try this for a custom page
function wpse_lost_password_redirect() { wp_redirect( 'http://yoursite.com/allowed-password-recovery/' ); exit; } add_action('password_reset', 'wpse_lost_password_redirect');
In reply to: Sort topics alphabeticallyyou can use the bbpress views, and put the views widget in your sidebar
see if this works , put this function into your functions.php
function rkk_register_custom_views() { bbp_register_view( 'desc', __( 'Z-A' ), array('orderby'=> 'title', 'order' => 'DESC'), false ); bbp_register_view( 'asc', __( 'A-Z' ), array('orderby'=> 'title', 'order' => 'ASC'), false ); bbp_register_view( 'date-asc', __( 'Date ASC' ), array('orderby'=> 'date', 'order' => 'ASC'), false ); bbp_register_view( 'date-desc', __( 'Date DESC' ), array('orderby'=> 'date', 'order' => 'DESC'), false ); } add_action( 'bbp_register_views', 'rkk_register_custom_views' );
In reply to: how to change template (bbp-login)thats the right file , as long as you copied the file to a bbpress folder in your child theme it should work.
here is an example of the code of the label renamed and without :
<div class="bbp-username"> <label for="user_login"><?php _e( 'Name', 'bbpress' ); ?> </label> <input type="text" name="log" value="<?php bbp_sanitize_val( 'user_login', 'text' ); ?>" size="20" id="user_login" tabindex="<?php bbp_tab_index(); ?>" /> </div>
could also be a cache issue maybe clearing the cache on your site should fix it
In reply to: BBpress widgets no class or containersee if its a plugin or theme issue
Plugins
Deactivate all but bbpress and see if this fixes. if it does, re-enable one at a time to see which is causing the error.
Themes
If plugins don’t pinpoint the problem, as a test switch to a default theme such as twentytwelve, and see if this fixes.
is this a bbPress issue??
In reply to: Forum Navigation bar on top?are you talking about breadcrumbs??
if so see if your theme author can help bring those back because bbPress displays this by default in a unmodified theme.
In reply to: Ability to “save draft”please don’t bump old topics especially more than 2 or more years
on drafts as a feature im siding on _ck_’s old post
Drafts are for blogging systems.
I can’t imagine why a forum would need drafts.
it also mentions post preview in this topic too , if you want something iike that you can use this plugin
github.com/r-a-y/bbp-live-preview
if you really need a draft feature post a job at http://jobs.wordpress.net and see if a developer can assist you.
In reply to: Click Topic – links to replycheck and see if creating a bbpress.php file could fix this
if not see if its a plugin issue
Deactivate all but bbpress and see if this solves the issue. if not , re-enable one at a time to see which is causing the issue
In reply to: How to integrate wordpress with bbpress?it should work well on a self hosted site. (WordPress.org)
for better integration its recommended that you create a bbpress.php though.
i dont know for sure why you posted a link to your wordpress.com site though??
unless you are doing a blog on a wordpress.com site and a forum using bbPress and WordPress(self hosted) site??
you should use the same theme for both if you are doing that
wordpress.org/themes/book-lite
In reply to: Problem with headerok i think i found it this is whats causing the space on your other pages an not on the forum archive
it has this code close to the header, while on the bbPress forum archive doesnt
<div class=”container-inner”>
<p class=”site-title”>SDGR.pl</p>
`
<p class=”site-description”></p><div id=”wpai_widget-11″ class=”widget widget_wpai_widget”>
<div style=”display: table; margin: 20px auto;”>In reply to: Problem with headerif you haven’t already create a bbpress.php file and put it in a bbpress folder in your child theme and see if this fixes your issue.
In reply to: Category Treein your child theme create a folder called bbpress (unless you already have one)
use FTP by using software like Filezilla on your CPU or upload the file in the bbpress folder in your hosts file manager
to know what FTP is and how to use it go to the What is FTP and how do I access it? section in this document https://codex.bbpress.org/functions-files-and-child-themes-explained/
its tricky to solve issues in premium themes.
first contact your theme authors support.
see if its only that themes issue
see if its a plugin issue , deactivate every plugin but bbPress if that solves it reactivate each one and try to pinpoint the one causing the issue.
if you havent created a bbpress.php file see if creating one fixes the issue.
In reply to: Category listingi think you might need to go to http://jobs.wordpress.net/ to get this kind of feature.
In reply to: Add Text Above Forum on Main Page@julianms so your issue is its hard to customize the Markdown plugin??
and you tried to see if you could customize it in the bbPress templates??
and you want to use Latex language in bbPress , i can test out some plugins in a minute and see how that works out.
but yeah the first two questions i’m not sure i had right it was pretty hard following your reply, you put a lot of personality in it.
In reply to: Category Treedownload this .zip , extract the file loop-forums.php and copy it into a folder called bbpress in your child theme
https://github.com/robkk/bbPress-Hierarchical-Forum-and-Category-Layout
more on bbpress templates go to this.
codex.bbpress.org/theme-compatibility/
need anymore help setting it up please reply back.
In reply to: How do I remove the yellow notices?your welcome !!
In reply to: bbPress Android\iOs appAs 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
In reply to: Rersonal reply.You can try this plugin.
https://github.com/dota2lt/bbpress-direct-quotes
It is not exactly what you wanted though.
In reply to: Search not working in default theme (twentyfifteen)i think i found it, i had the bbpress templates copied to my child theme of twenty-fifteen and it worked, i then removed it and i saw exactly what you explained.
you have to copy the bbPress templates to a folder called bbpress in your child-theme
follow this document and see if it fixes your issue.
In reply to: Custom Sidebar Problemi just checked your site and i see different sidebars for some sections of your site im going to assume this is resolved.
if you still have an issue please reply back.