Skip to:
Content
Pages
Categories
Search
Top
Bottom

Search Results for '+.+default+.+'

Viewing 25 results - 1,726 through 1,750 (of 6,724 total)
  • Author
    Search Results
  • fenixbazaar
    Participant

    Hi there,

    I wonder how to replace “Topics” and “Replies” with Post Count.

    Here is an example of what I want to do:

    http://tamrielfoundry.com/topic/general-tips-for-new-or-returning-players/

    As you can see on that forum, it shows “Total Posts”, not “Topics” and “Replies”, which is default in buddypress.

    Any help would be greatly appreciated!

    #173067
    MarcGuay
    Participant

    Hi,

    Is it possible to get the permalink of the forums root without referencing the slug? If the forum root slug is changed in the settings, any reference in the theme to the default ‘forums’ would break.

    Thanks,
    Marc

    #173066
    rmuhr1701
    Participant

    I have done some more poking, it does not seem to be a plugin per say.
    It seems to be my theme (highend from http://hb-themes.com) When I switch to default theme it works fine.

    Anyone out there running highend with this issue/solution?

    #173045
    Robin W
    Moderator

    bbPress is tested with wordpress default themes. It maybe a conflict – you need to check plugins and themes

    It could be a theme or plugin 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 twentyfifteen, and see if this fixes.

    Then come back

    #172985
    tech55541
    Participant

    Hello,
    URL: http://yourtechadvisors.com/forums/topic/testing-safe-to-ignore/
    For some reason on mobile devices, part of the reply and post text will overlap the bar where the date is. I have tried deactivating all plugins and checking to see that there are no syntax errors in my CSS. Could someone please check my forum to see what is happening?

    Here is an image link, as you can see the mobile view looks pretty bad.
    https://drive.google.com/file/d/0B_h6oU4LzDtleElpclF5QV9BajA/view?usp=sharing

    I cannot switch to the default theme, I do not want to lose any changes, so a CSS fix would be nice if at all possible.

    Thanks for your help.

    #172977

    In reply to: Updating my import

    Pascal Casier
    Moderator

    Hi,
    1.8 million should not be the issue, as others run without those issues.
    Could you import your old topics into your test too so you could play with it ? Did you ever try to switch to a default theme ?

    If you are really convinced to delete in production, we can discuss further on that on how to clean.

    Pascal.

    #172938

    Topic: bbpress templates

    in forum Themes
    abforex
    Participant

    hello all

    I looked for a long time to find a ready template for bbpress but unfortunately I can not find can any one help me because I like to use bbpress as my forum but the default setting it is very poor and I don’t have experience to modify it by my self so please if you know any ready theme or template which can help me I will appreciate your help

    and to understand what I mean please check this link (http://www.spyka.net/bbpress-themes/businesslike/) I tried also to use it but unfortunately not success maybe some missing files or because it is very old version I don’t know please help

    thank you

    thinkDrew
    Participant

    @vadim77

    I fixed my issue by using the default wordpress search (not bb search widget) and by adding this snippet into my functions.php. This snippet adds the bbpress hook into the default search and works like a charm (adds topics & replies) to search results. This will also make it much easier styling the search results page consistently (forum results vs blog / page results).

    Thanks to: @undergroundnetwork for your snippet!

    https://bbpress.org/forums/topic/plugin-snippet-hack-to-include-bbpress-topics-in-wordpress-search/

    thinkDrew
    Participant

    @vadim77

    You are correct! When you change the + symbol in between the words to %20, everything works as it’s supposed to.


    @Robkk

    Considering the change from the + symbol to %20 works, what would our next steps be in order to get this working properly? If we can get the search to return the %20 as the separator, everything should be fine.

    I have tried this within the 2015 / 2016 default wordpress themes with the same issue. Plugins running are Ultimate Member, bbpress & WP SMTP

    #172900
    Pluew
    Participant

    Thank you very much.
    Yes, the default theme fixed it. I am using the Make (child) theme.

    How can I fix this now?

    Thank you!

    #172894
    kodacollider
    Participant

    Thank you. I’m having a little bit of trouble.

    I found the original function I need to edit in bbpress/includes/topics/template.php:

    function bbp_get_topic_reply_link( $args = array() ) {
    
    		// Parse arguments against default values
    		$r = bbp_parse_args( $args, array(
    			'id'           => 0,
    			'link_before'  => '',
    			'link_after'   => '',
    			'reply_text'   => esc_html__( 'Reply', 'bbpress' ),
    		), 'get_topic_reply_link' );
    
    		// Get the reply to use it's ID and post_parent
    		$topic = bbp_get_topic( bbp_get_topic_id( (int) $r['id'] ) );
    
    		// Bail if no reply or user cannot reply
    		if ( empty( $topic ) || ! bbp_current_user_can_access_create_reply_form() )
    			return;
    
    		$uri = '#new-post';
    
    		// Add $uri to the array, to be passed through the filter
    		$r['uri'] = $uri;
    		$retval   = $r['link_before'] . '<a href="' . esc_url( $r['uri'] ) . '" class="bbp-topic-reply-link">' . $r['reply_text'] . '</a>' . $r['link_after'];
    
    		return apply_filters( 'bbp_get_topic_reply_link', $retval, $r, $args );
    	}

    The only line I need to modify is:

    $retval = $r['link_before'] . '<a href="' . esc_url( $r['uri'] ) . '" class="bbp-topic-reply-link">' . $r['reply_text'] . '</a>' . $r['link_after'];

    Is there an easier way to phrase my new function to modify just this variable?

    #172872
    rossagrant
    Participant

    @casiepa – yeah I’ve ran the plugin and completely reset all user roles to default install settings.

    The bbPress role doesn’t show up as a selectable role to assign the user, it just appears at the very bottom of their profile in the backend. Just like in the pic the original poster published.

    I have no idea where it is being pulled in from. I’ll do a search in my DB and report back.

    #172854
    Robin W
    Moderator

    ok, so

    AS A TEST ONLY –
    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 twentyfifteen, and see if this fixes.

    Then come back

    berkelmudez
    Participant

    Hi people,

    I basically can’t get to show any topics on a custom theme that I’ve been making.
    I think it has nothing to do plugins, in my custom theme when I call ‘bbp_has_topics()’ it returns the boolean false. But when I switch to the wordpress theme twenty fifteen, I get returned the boolean true and it basically shows the topic correctly, with all plugins turned on.

    However my forums list get displayed correctly, and the topic detail page will only display the topic when I turn off the ‘bbp_show_lead_topic()’ as it by default only shows when that function return true which in my custom theme it doesn’t.

    the function ‘bbp_has_topics()’ basically get influenced or something as soon as I switch to my custom theme. To be honest honest I have no clue what causes this action to influence that those bbp function, I was hoping someone here did.

    Does anyone have any suggestions or have encountered this problem and knows what could possibly cause this problem?

    #172836
    Robin W
    Moderator

    @netweb

    @brovashift

    Ok I’ve done some testing.

    bbpress uses the display_name as stored in wp_user table.

    If you allow registration

    ie – Dashboard>settings>membership – anyone can register

    then yes, the user_nicename and the display_name in wp_user table are the same and the same as the username entered by the person registering.

    If you don’t allow registration, and you add users manually

    ie Dashboard>users>add new user

    and you don’t enter the first and last name, then the user_nicename and display_name are the same

    BUT if you enter the firstname and lastname, then the nice_name is the username, but the display_name is saved as firstname followed by lastname !

    So a bit of inconsistency by WordPress.

    Now display_name is all that we can play with in bbpress, and users can change their display_name under bbpress in the profile area.

    So I plan to put a function in my style pack that will let the user choose what the default display_name is, and optionally disable users from creating a nickname and/or changing the default.

    #172730
    Robkk
    Moderator

    I would say maybe just place the default bbPress login widget instead of your themes custom one, or customize the widgets settings if it has an option to remove the modal login, or remove the deregister widget code that has possibly removed the default bbPress login widget.

    #172587

    In reply to: Editing “Reply To”

    Robkk
    Moderator

    Copy the default bbPress templates to a folder called bbpress in a child theme then you can edit the templates how you would like.

    The files you are looking for is form-anonymous.php and form-reply.php.

    Here is a guide that will explain this a little more.

    https://codex.bbpress.org/themes/theme-compatibility/

    Pascal Casier
    Moderator

    Hi,
    That’s probably coming from a plugin or your theme. Something is interfering.
    Try to switch to a default theme and switch off all plugins except bbPress. Then switch them on one after the after to find the one causing this.

    Pascal.

    #172558

    In reply to: forum page

    Pascal Casier
    Moderator

    Hi,
    From what you describe, I would think there is something with your theme.
    Can you try switching to a default theme and then come back to us ?

    Pascal.

    #172546
    Stephen Edgar
    Keymaster

    bbPress uses the users username by default, a user can change their own profile to use first/last name if they wish via the “Display name” on the users edit profile screen.

    #172512
    Brovashift
    Participant

    Hi anyone and everyone,

    Im just wondering why bbpress displays participants real name instead of their username by default? I want to change this as I can’t remember ever seeing a site before where you create a username for it not to be used, even this bbpress support forum shows usernames!

    I see topics on this matter going back 4+ years, and still its the same solution, why?

    So why is it that we have to edit code to achieve this? It should at least be a simple edit in the admin area.

    #172509
    amongstlovelythings
    Participant

    Thanks!

    I did deactivate all but bbpress- and the search bar was fixed. I re-enabled them one at a time, and found that BuddyPress was causing the error.

    I then switched to the default theme twentyfifteen, but the search bar completely disappeared when I did that…

    So now I’m back on the Beautiful theme for Genesis.

    Also– FYI, the search bar was working beautifully about 3 or 4 days ago. This is a new problem that just started within the last couple of days.

    #172504
    Robin W
    Moderator

    It could be a theme or plugin 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 twentyfifteen, and see if this fixes.

    Then come back

    #172485
    stewmills
    Participant

    Unfortunately that didn’t work. I switched the code and while it still included a sidebar with stuff, it was a sidebar with all sorts of crazy stuff about a page long.

    So, I acted as if I was starting over and I copied my page.php file and resaved it as bbpress.php in my main theme folder. The result of this was a page with no sidebar anywhere in my forum since this template does not include any sidebar info.

    So do I:
    a) keep the page.php file that I renamed to bbpress.php and just add some code (I would need directions) to include the sidebar on all bbpress pages.
    b) revert back to my previous page an keep troubleshooting this issue with the page template that i know works aside from the topics page.

    Here is the code from the page.php page that I renamed to bbpress.php, which looks great but does not display my sidebar on any forum page.

    <?php get_header(); ?>
    
    <?php 
    // check for WooCommerce. If true, load WooCommerce custom layout
    if (class_exists('woocommerce') && ((is_woocommerce() == "true") || (is_checkout() == "true") || (is_cart() == "true") || (is_account_page() == "true") )){ ?>
    
    </div><!-- header-area -->
    </div><!-- end rays -->
    </div><!-- end header-holder -->
    </div><!-- end header -->
    
    <?php truethemes_before_main_hook(); //action hook ?>
    
    <div id="main" class="tt-woocommerce">
    <?php get_template_part('theme-template-part-tools-woocommerce','childtheme'); ?>
    
    <div class="main-holder">
    <div id="content">
    <?php if(have_posts()) : while(have_posts()) : the_post(); the_content(); truethemes_link_pages(); endwhile; endif; 
    comments_template('/page-comments.php', true); ?>
    </div><!-- end content -->
    
    <div id="sidebar" class="right_sidebar">
    <?php 
    		if ( (is_cart() == "true") || (is_checkout() == "true") ) {
    			dynamic_sidebar("WooCommerce - Cart + Checkout");
    		} else {
    			dynamic_sidebar("WooCommerce Sidebar");
    		}
    		?>
    </div><!-- end sidebar -->
    </div><!-- end main-holder -->
    </div><!-- main-area -->
      
      
      <?php // ELSE load default layout
      } else { ?>
      
    </div><!-- header-area -->
    </div><!-- end rays -->
    </div><!-- end header-holder -->
    </div><!-- end header -->
    
    <?php truethemes_before_main_hook();// action hook, see truethemes_framework/global/hooks.php ?>
    
    <div id="main">
    
    <?php get_template_part('theme-template-part-tools','childtheme'); ?>
    
    <div class="main-holder">
    <div id="content" class="content_full_width">
    <?php if(have_posts()) : while(have_posts()) : the_post(); the_content(); truethemes_link_pages(); endwhile; endif; 
    comments_template('/page-comments.php', true);
    get_template_part('theme-template-part-inline-editing','childtheme'); ?>
    </div><!-- end content -->
    </div><!-- end main-holder -->
    </div><!-- main-area -->
      
      
      <?php // END WooCommerce loop
      } ?>
        
    <?php get_footer(); ?>

    Thanks!

    #172473

    In reply to: add a specific class

    neecride
    Participant

    Thank you !

    I found the file in part !!

    Now I would like to change while loop_forums in index forums on loop-forums.php

    exemple : http://gauge.wpengine.com/forums/

    i does not use shortcode I create a forum page and i edit the default page in bbpress folder on my folder template !

    translated by google !!

Viewing 25 results - 1,726 through 1,750 (of 6,724 total)
Skip to toolbar