Skip to:
Content
Pages
Categories
Search
Top
Bottom

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

Viewing 25 results - 4,226 through 4,250 (of 6,788 total)
  • Author
    Search Results
  • #119261
    gabrielstuff
    Participant

    Hey there, please find my little code that I’ve put into function.php :

    function ela_signup_redirect($redirect_to){
      $return_url = "";
    
    if (defined('ICL_LANGUAGE_CODE')) {
        switch (ICL_LANGUAGE_CODE) {
            case 'fr':
                $return_url = "http://xxx/merci/";
              break;
            case 'en':
                  $return_url = "http://xxx/forum/sinscrire/";
              break;
            default:
                  $return_url = 'langue non configurée';
              break;
        }
    }
    error_log("message : " . $return_url);
    return $return_url;
    }
    add_filter("bbp_user_register_redirect_to", "ela_signup_redirect");
    

    I’ve been trying to debug everywhere and hunt when the redirect happen, but I still get redirected to the admin panel.

    Any help would be appreciated.

    #119253
    jjohns12
    Participant

    Hi, Can you help? In bbpress my favorites link returns page not found. http://www.thsotestsite.dev/members/admin/forums/favorites/ the rest of forum works fine.

    The favorites in BuddyPress work fine http://www.thsotestsite.dev/members/admin/activity/favorites/

    And Yes running both Group and site wide forums and are playing nice together for the most part:)

    WordPress: Current version
    BuddyPress: Current version
    bbPress: Current version
    Theme: Frisco and BuddyPress Default Both have same results
    all running on my dev. server (DesktopServer)

    Is this a bug or config problem?

    can anyone give clue how to fix this?

    Thanks
    James

    #119247

    In reply to: page.php as template

    Shmoo
    Participant

    If you use the bbp-theme-compat theme you can copy some template files from the plugin directory to your theme directory.

    This way bbPress can get updates in the future while your custom edits will not disappear because of the updates to the plugin.

    https://codex.bbpress.org/theme-compatibility/
    (read the last part.)

    Only thing is, there is a template file that’s named like this: page-front-forums.php everybody thinks this is the default template that will be shown when you have an url like this.
    http://example.com/forums/

    But that’s not true, this template is only used when you use bbPress (the forum index page) as a homepage for your WordPress site.
    If you use the forums (index) page as a separated page like my ‘example.com’ url above bbPress uses the archive-forum.php template.

    What you can do very easy is copy-/paste the archive-forum.php template from the wp-content > plugins > bbpress > bbp-theme-compat > extras > directory to your theme’s directory.
    wp-content > themes > your-theme-name > and edit that template file.

    Now bbPress wil not use page.php but the archive-forum.php template instead and you can edit this page to all your needs.

    ouyagamingsource
    Participant

    Hello BBP Forum,

    I got nearly everything set up with the BuddyPress and bbPress forum plugins, however there’s a few tweaks I need to finish it off and I’m trying to figure out which files I need to adjust the html settings to match my custom theme of my other pages.

    Going from these directions: http://codex.bbpress.org/legacy/step-by-step-guide-to-creating-a-custom-bbpress-theme/ I created a child from my Alyeska theme and copied the Default bbPress Theme to the child theme folder. This helped get the forum page a little closer to my custom theme style, but still not there yet; the sidebars are missing, the forum BG is white, amongst a few other issues, but it’s getting closer. I’m just not sure where the CSS master file for this page is, I tried editing the two files in the child_theme/bbp/CSS folder but it didn’t make any change: http://ouyagamingsource.com/forums/, any ideas?

    Thanks ahead of time!

    –Bryan

    Gary3000
    Participant

    Just as the title says, I’m curious to know how the current main page at bbpress.org/forums/ is set up. Ideally, I’d like to have my forums main page set up in exactly the same fashion.

    Am I correct in assumming that it’s done as a Page (“forums” being the slug) with the bbPress shortcode “[bbp-topic-index]” as its content?

    I notice for Latest Topics it lists 28 topics, however in the bbPress Codex listing of shortcodes, it says that particular shortcode only lists 15 of the most recent topics. How does one go about configuring it to show more (or less) than the default of 15?

    The other thing I’m curious about is how one gets the nicer “Forums” sidebar widget. The one on bbpress.org/forums/ is styled with a header containing “Forum” and “Topics” column headers, and then a striped list of the Forums with the associated topic counts. In the current public version of bbPress (2.1.2), the “Forums” widget only shows a straight, plain list of the Forums — no header/columns, and no topic counts. Is the widget used on bbpress.org/forums/ from the current SVN of bbPress, or was it customized specifically for bbPress?

    #119221
    Shmoo
    Participant

    Hello, i didn’t know a better title but i’ll try to explain what i meant to say.

    I don’t understand why it’s very easy to get all info that you need from the Topic Starter and when you need the same info from the last person who has replied on a topic it’s very difficult.

    Look at my screenshot and you’ll see what i’m trying to say.
    http://i48.tinypic.com/33op6wz.png

    Everything on this picture is done by CSS the only images you’ll see are the Gravatars,
    At the left side it’s the Gravatar of the Topic Starter with a Hover effect when i took the screenshot.

    I didn’t use the default PHP code that bbPress provided because it wasn’t very clean so i searched around and found a few simple and easy to understand PHP tags who could help me build my custom lay-out.


    php bbp_topic_author_url(); = provides a clean url

    php bbp_topic_author_display_name(); = provides clean text without url

    php bbp_topic_author_avatar( $topic_id = 0, $size = 60 ); = provides a gravatar with url

    I love those simple codes because i can add and wrap HTML around it and position everything i need on every corner of the website if i would like so..

    But when i try to make the same Gravatar at the right side it’s getting difficult because there aren’t a few simple tags i can use to get the same clean code from the last person who has posted inside a topic.


    php bbp_author_link( array( 'post_id' => bbp_get_topic_last_active_id(), 'type' => 'avatar', 'size' => 60 ) ); = provides a gravatar with url okay

    php bbp_author_link( array( 'post_id' => bbp_get_topic_last_active_id(), 'type' => 'name' ) ); = this doesn't provide clean text but a name + url

    It’s a huge bummer because i can’t make the Hover effect on the Gravatar without clean code tags.

    fuzzybee
    Participant

    I am using BuddyPress 1.6.1, bbPress 2.1.2 and WordPress 3.4.2

    I follow the guide here.

    In the end, I did the trick pointed out by Sarah Gooding because mywebsite.com/forums was blank right after the above installation

    • Created a page called “Forums” with permalink mywebsite.com/forums
    • Insert bbPress shortcode [bbp-forum-index] into “Forums” page

    My questions are

    1) How do I customise page templates for the forum e.g. Forum page, topic page etc.

    My current theme is a child theme of twentyeleven and it has the following structure

    > themes/bp-twentyeleven/

    >

    > /activity/

    >

    > /blogs/

    >

    > /forums/

    >

    > index.php

    >

    > forums-loop.php

    >

    > /groups/

    >

    > /members/

    >

    > /registration/

    >

    > header.php

    >

    > sidebar.php

    >

    > style.css

    Notes

    • Apparently, bp-twentyevelen/forums/index.php is being ignored.
    • The reason for this set up is that I need the site to looks like TwentyEleven and has BuddyPress’ functionality at the same time

    2) How do I make sure that bbPress functions will work for my site e.g. do I copy and past all the functions in functions.php of bbPress’ default theme over my theme’s functions.php?

    3) How do I ensure that whatever I will get from 1) and 2) (probably from bbPress experts somewhere) will not conflict with BuddyPress’ functionality or my theme?

    BuddyPress setting screenshots are here and here.

    bbPress settings screenshot is here.

    #119175
    Shmoo
    Participant

    I’m just curious because i would like to edit the author’s gravatar and how it’s showed in the source to get more CSS options.

    bbp_topic_author_avatar

    bbp_get_topic_author_avatar

    When i use the bbp_topic_author_avatar() version inside the loop-single-topic.php file it shows a perfect 40 pixels gravatar like explained on the website with all possible bbPress code tags.
    Great but when i try to make this gravatar 80 pixels instead of the default 40 there is something wrong because the code doesn’t accept my array when i try do this.

     '80' )); ?>
    

    Even when i do this it doesn’t work.

     80 )); ?>
    
    #119163
    Stephen Edgar
    Keymaster

    The default ‘separator’ for the forum list is a comma (that comma you see on your site).

    I see you have tweaked your forum list yourself so that each forum is on a new line.

    I can’t see how you did this at the moment as I am using my phone and no CSS inspector.

    Take a look at this https://gist.github.com/3797945 and add it to your functions.php of your theme or add it as a standalone plugin. Instead of a ‘comma’ I have a BR element there which if you removed the tweaks you have already made in your CSS for the forum list, this code snippet will give you the result you are looking for.

    #119151

    Topic: security

    mazcar
    Participant

    I am new to WordPress/BBPress and am coming from PHPBB.

    I am creating a bulletin board using the BBPress plug-in for WordPress. I’m not planning on really using WordPress (yet) for my website. It’s just a few static pages, a css file, and, soon, a forum.

    My board will be for just fifty people and I would like to create all the accounts myself so that I don’t have to worry about spam posts from bogus accounts.

    • In PHPBB, there is a control panel option to disable the ability to create new accounts? I don’t see that option in WP/BBPress. How would I do that?
    • I think I read on this forum that I can make my board invisible to non-members, but that is not a control panel option. What’s the prefered way for a newbie to do that?

    Also, I read an article on WP security, Top 5 WP Vulnerabilities and How To Fix Them.
    http://www.esecurityplanet.com/open-source-security/top-5-wordpress-vulnerabilities-and-how-to-fix-them.html

    Vulnerability # 1: SQL Injection & URL Hacking.
    Vulnerability # 2: Access to Sensitive Files.
    Vulnerability # 3: Default Admin User Account.
    Vulnerability # 4: Default Prefix for Database Tables
    Vulnerability # 5: Brute-Force Login Attempts

    3, 4, and 5 seem pretty obvious to me. However, for help with mitigating the threat of Brute-Force Login Attempts, the author refers to two plug-ins: Limit Login Attempts and Better WP Security. Are these the preferred plug-ins? Although, I really must ask you guys why these two plug-ins aren’t written into the core software in the first place? In fact, shouldn’t the control panel also allow me to limit the creation of new accounts, as well?

    I know BBPress, as a plug-in, is new, but WordPress has been around for ten years. Are the features that I list above planned for future releases, or is security not really an issue for the WP community, but rather up to each user?

    Before I forget, how do I implement the solutions to the first two vulnerabilities? Do I just copy the code that the author lists into my .htacess file?

    I don’t want to sound critical of WP/BBPress, or be the guy who is constantly comparing it to PHPBB. I just want to know the mentality behind it and, really, what I am getting myself into. I had a pretty secure PHPBB board that was easy to set-up and manage, but it was boring and looked like every other PHPBB board out there. I was told that WP/BBPress is customizable (some guy on your board showcases a beautiful board about Stratoliner motorcycles) and more secure than PHPBB. I hope to explore these features without becoming a full-time board developer nor becoming a php guru.

    Thanks. I really appreciate this forum. I have been reading all sorts of posts. So if these questions have been answered, please don’t flame me; it’s not for lack of searching.

    #119123
    mighty_fox
    Participant

    I am currently trying to customize the default BBPress profile page. For each forum user’s profile I would like to display the user’s description (which for a WordPress user account is called “Biographical Info”. What functions or how can I display this?

    #119118
    Shmoo
    Participant

    Another update:

    Switching the page.php template with the code of the page-front-forums.php doesn’t work either..

    It will output all forums twice.
    I really hope @JJJ or somebody else would comment on this because i can’t believe this is default bbPress and WordPress stuff.

    It has to be a bug.

    #119102
    Michael
    Participant

    Checking the function code in bbp_topic_template.php, the call bbp_topic_excerpt() already accepts a $length argument; the default is 100, but it can be changed. Doh! It can be used as-is.

    Michael

    #119099
    Shmoo
    Participant

    Update:

    I think it’s very strange we can’t touch the defaul $slug with a custom page template!
    This is totally not WordPress like.

    Now i have to offer my page.php (default page template) to bbPress and make sure when i draft a new page inside my Dashboard i use a different (custom) page template to prevent my lay-out from breaking..

    img default slug

    I tested to following:
    Dashboard > New Page > Name it HELP > pick my custom Page Template with the bbPress forums index inside it > Saved it and it works 100%.

    I don’t know if it’s a bug or glitch but this is totally not the way to do so, because the default slug keeps showing up in the breadcrumbs.

    Hope somebody reads this..
    Thanks,

    Shmoo
    Participant

    Just curious, i’ve worked with bbPress before but it looks like the WordPress Hierarchy is broken by bbPress.
    http://codex.wordpress.org/images/1/18/Template_Hierarchy.png

    Normally i could make a page template and call it page-forums.php to make sure WP would use this page template for a new page created by the slug forums

    But for some strange reason this doesn’t work anymore with bbPress 2.2.1 and WP 3.5 Beta and Twenty Twelve.

    How can i make sure WP or bbPress uses a different page template then page.php for showing the forums and category -index on the forums slug?

    I’ve tried everything, Copy/Paste the page-front-forums.php from the Extra’s folder to my Theme’s Root -> Created a new page inside my Dashboard and called it Forums… Nope doesn’t work.. Even when i use the Shortcode [bbp-forum-index] on that last created page.. It keeps using the page.php by default..

    Anybody who can help ?
    Because this it totally not very cool 🙂

    #119084
    venntom
    Participant

    Hi,

    Great forum plugin!

    I am however experiencing some annoying theme compatibility issues…

    My forum page (with [bbp-forum-index] shortcode) was wrongly picking up my theme’s css, instead of the bbpress css.

    Resulting in an unusable forum layout.

    I have applied the theme compatibility actions by copying the necessary bbp-theme-compat directory/files to my theme root.

    By setting the correct bbpress page template via its page attributes, the main forum page (now without shortcode) seems to pick up the bbpress css. But shortcodes are still picking up the wrong css via the default theme page template..

    Any suggestions to make shortcodes work with the bbpress css instead of the theme’s css?

    Are there any additional css styles available that work with the bbpress theme-compat templates?

    I am using wp 3.4.2, bbpress 2.1.2 and my theme is generated with Artisteer 4.

    Regard,Tom

    #119065
    burakbirer
    Participant

    Is it avalaible now? This is the only theme that would work for our forum. Thanks,
    This should be the default install out of box 🙂

    #118962

    Topic: search stuff

    in forum Troubleshooting
    kortschot
    Participant

    He there… I got my own wp theme, within it a folder called bbpress for overriding files like loop-topic.php. No big deal, everything works great. But… when doing a search in the forums I would like it to use bbpress-search.php in mytheme/bbpress/ and not make use of the default search.php. I need this due styling and I need way less stuff in the results. Just want topic title and a little excerpt that’s it.

    So… main question, can I create a bbpress-search.php or something so when I do a search bbpress uses that file for showing it’s results. If so do you have any pointers?

    second… why isn’t there a default search function in a forum plugin like this?

    third… when is the next version comming and is there a new feature list somewhere? Thanks! Paul

    • This topic was modified 13 years ago by kortschot.
    • This topic was modified 13 years ago by kortschot.
    #118896

    In reply to: Problem with shortcode

    nirzol
    Participant

    I don’t understand.
    I used the buddypress default theme –> shortcode not work
    change the slug –> not work
    Try this solution : http://mysitemyway.com/support/topic/infocus-bbpress-20-root-slug –> not work
    change to twety theme forum theme –> not work
    desactive plugins…

    [bbp-single-forum id=44] doesn’t work on forum page…. 🙁

    But [bbp-topic-index] this shortcode work.

    what can I do more ?

    Max
    Participant

    Hi there – I have a forum on a membership site running:

    bbpress 2.1.2, buddypress 1.6.1, wordpress 3.4.2

    with a premium theme.

    The site owners have asked if we can add the ability for users to upload photos and embed video into forum posts. The rich tinyMCE editor doesn’t include the standard media uploader button, and even though in my Settings for bbPress I have the option to embed video/flickr/etc checked, when I paste the code in it defaults to a link instead of the embed object. I’m not very familiar with either bbPress or buddypress, so any help is greatly appreciated. I’ve attached a screenshot of the current forum editor.

    Because the site is a membership site and the forums are protected, the link won’t help much but here it is: http://www.innercircletheater.com.

    I’m more than happy to pay someone to implement these components. Also, I’ve tried adding the bbpress post tools plugin, but it breaks my theme.

    Thanks!
    Shannon

    screenshot of the current forum editor

    #118860
    creditrepair
    Participant

    I think I found the answer, just in case anyone else was wondering.

    Go to settings, forums and scroll down to Active Slugs.

    Get rid of what ever is there.

    Press save and it defaults to what it should be.

    dailydose
    Participant

    Currently on Bwater that I customized. I’m on bbPress Version 2.1.2 tried to find what version I am on, on WordPress but can’t seem to find, but do know that Im getting Updates to Update to the WordPress Version : 3.4.2 So take it I am on the old one. I don’t want to Update as I’m Petrofied of loosing all my hard Work that’s took me a year to do, and states in my Update’s that if I do Update, I will loose all my Customizations. RIGHT.. Hoping ANYONE can help me out on this one, I have sat for 4 whole Day’s and Nights trying to figure this out, and has now given up 🙁 I have not toched any bbPress css or has edited it in anyway to say in advance. There seems to be 2 Issues wrong. The Layout.
    When I choose the bbPress Default compat theme, The top half is fine, but when we get to the Create New Topic in: section it’s half Cut off you cant even see the Submit button. Widgets are showing fine though.
    I’m not to fussed about having set by default but would like to have it as a full page width, which I have done followed all Instructions! of even going into my Page setting the page attributes to Full-Width-no-sidebar Option. Then changed to the Twenty Ten (bbPress) plugin theme which made it Full width, but my Avatar is placed right at the Top Left hand of my page which is odd, and my Widgets are on the page also, which shouldn’t be there if I have set the page to full width. also the Widgets are @ the bottom of my page but scatterd all over my Forum ughhh. I have read through all of the Forums regarding this matter (Topic) Tried for myself but still does not look right. Please can ANYONE be so kind to help me on this matter PLEASE. Cant sit for another 4days trying to figure this out very frustrating really, and a Shame as I really like this bbPress its the only theme that looks nice on my site. Now if I can only get it to work! I have tried absolutly everything before coming to the forum unless absolutly ness.
    any step by step code help as I am not that savvy with all codes as of yet but know alittle.
    Link to the page it’s on http://dailydoseoflovely.com/forums/forum/which-blog/

    wpmhweb
    Participant

    Hello,

    I am just wondering if this is how it suppose to work. I was testing the user’s page in bbpress and I update my bio and when I hitted the update profile button it seemed that it worked ok. Later on I was in my WordPress user profile when I noticed that most of my settings were reset to defaults. I shouldn’t updated my profile through bbPress? Or there is a bug?

    Thanks,

    PS: I am using WP 3.4.2 and bbP 2.1.2

    #118727
    renai42
    Participant

    hey mate,

    this is precisely the kind of overly simplistic response which turns people off using bbPress. Your suggestion is pretty much contained in the bbPress documentation already and is less than useful.

    Sure, you need to copy bbpress.css to the right directory and edit it. But what you fail to mention, and what is mentioned nowhere in the bbPress documentation, is that many of the font specifications are not actually listed in that CSS file — you need to puzzle out the CSS entry yourself and add a new CSS entry, not edit an old one, to change the font size.

    I spent three hours working this out last night. The correct entry is:

    bbpress-forums .bbp-topic-content p,

    bbpress-forums .bbp-reply-content p {

        font-size: 12px;
    

    }

    I have seen this same response from the moderators on the bbPress forum dozens of times as I searched it last night. This same arrogance — ‘just copy the CSS file and edit it’. Technically you’re right, but without any detail or documentation around bbPress, this suggestion comes across as the contempt of an experienced web developer for someone who is, in their eyes, a ‘n00b’.

    I operate a major WordPress site and edit its CSS files daily. And yet, the CSS for bbPress is hideously complex and hard to understand. I suggest that you guys modify your attitude and start looking for actual solutions to people’s problems … especially around making default themes easier to customise. Otherwise, bbPress, which is an awesome solution to a long-held problem for WordPress site owners, will remain the little-used forum software that it is.

    Cheers,

    Renai LeMay
    Publisher, Delimiter.com.au

    #118718

    I believe bbPress uses wp_mail() and does not explicitly set a “from”, so wordpress@domain.com is used by default.

    https://codex.wordpress.org/Function_Reference/wp_mail

Viewing 25 results - 4,226 through 4,250 (of 6,788 total)
Skip to toolbar