Skip to:
Content
Pages
Categories
Search
Top
Bottom

Search Results for '\"wordpress\'

Viewing 25 results - 13,051 through 13,075 (of 26,882 total)
  • Author
    Search Results
  • #119467
    gabrielstuff
    Participant

    Fixed !

    The core wordpress was doing some security check that break the redirect ! it works perfectly.

    #119453
    Shmoo
    Participant

    Alright guys i’ve got a solution,

    Please note, i have ZERO PHP skills so this probably isn’t the best solution on earth but i think it’s a good work-around to get the job done ‘easy’..

    If some PHP developer reads this topic and thinks, damn this guy is going crazy with all his copy-/pasting stuff please feel free to modify this code..

    What did i do:
    First i opened up the Core template file of bbPress where the Breadcrumbs function is made.
    I have copied the code and pasted inside a new PHP document, made some simple HTML changes before and after the urls and called this new template file inside my Theme’s functions.php

    Last i called my custom Breadcrumb PHP code just to make sure my code is loaded and not the default bbPress code..

    Here you go.
    When your done it should look like this structure..
    http://i46.tinypic.com/33z93lg.png

    Nothing too fancy but the only difference, it’s made by a HTML List , like it should be in 2012 because a Breadcrumbs is a navigation and not just 5 URLs behind each other.
    http://twitter.github.com/bootstrap/components.html#breadcrumbs

    Step 1:
    Paste all this code into a new empty PHP document and call it breadcrumbs.php
    When your done drop this file into your Themes include folder.
    wp-content / themes / [ your-theme-name ] / inc / * here *
    http://pastebin.com/bWdPEXa5

    Step 2:
    Open your theme functions.php file and add this code to it.
    http://pastebin.com/nJ9pZinq

    Step 3:
    Open the bbPress or WordPress stylesheet and add those few lines of CSS to it.
    http://pastebin.com/KyPuknTw

    Step 4:
    Inside the bbPress template files you often find this line of PHP code, it calls the default Breadcrumb function:

    Change that line to this one and your done..

    __( '', 'bbpress' ), ) ); ?.>

    • without the dots before and after the -> .?.

    Hope this helps..

    #119450
    Shmoo
    Participant

    Active the option inside WordPress > settings

    There is somewhere a checkbox that says ” allow people to register on your site ” * something like that.

    If you activate that checkbox people can register to your WP site and reply and create topics.

    #119447
    Shmoo
    Participant

    @JJJ

    Please do the people on bbPress.org a huge favor and delete all the fancy stuff in this comment-form, just load the default wordpress.ORG comment-form it’s huge and only support a few needed options. This is getting ridicules. People have to be an acrobat to post some code on this forums.

    I can’t copy-/paste @mattsimo code because of this forum-software.

    Safari + Firefox it doesn’t copy the the selected code i needed.

    #119445

    In reply to: Lead Topic

    Shmoo
    Participant

    Maybe a little bit late..

    The Lead Topic ( content-single-topic-lead.php ) is a very powerful but super simple function that can be used to style the Topic Authors different from the Repliers..

    It’s also very useful if you want to add some ads or a simple note to your readers after the first message ( from the topic author)

    Bummer this is nowhere to be found in the Codex.
    But you can activate this option by adding this line of code to your WordPress theme functions.php template file.
    Note i say functions.php and not bbpress-functions.php because you if you would add it to the bbpress-functions.php this code will be overwritten when the bbPress plugin updates in the future.

    add_filter( 'bbp_show_lead_topic', '__return_true' );
    

    Hope that helps..

    #119440
    Stephen Edgar
    Keymaster

    The only thing I can think of to offer at the moment would be this ticket in trac “Enable WordPress custom fields” as https://bbpress.trac.wordpress.org/ticket/1743. If a patch/plugin was made to support this then that might be enough for MemberMouse to hook into…

    fuzzybee
    Participant

    Hi Zaerl,

    Thanks so much.
    I have found the answer for myself actally.

    Yes, I love the fact that bbPress is not obtrusive!
    It almost doesn’t matter at all how I am trying integrate BuddyPress here.

    So this narrow downs to customise bbPress template when installed as a plugin to WordPress.
    The answer is here: https://codex.bbpress.org/legacy/step-by-step-guide-to-creating-a-custom-bbpress-theme/ 🙂

    It appears strange to me though.
    Why does this guide belong “legacy” documetation?

    #119432
    Malissant
    Participant

    I’m running a WordPress Multi-user installation. I added forums to a single ‘site’ and everything is integrated just fine.

    The problem I’m having, is that whenever someone posts in the forum their role for that site is changed to ‘Forum Participant’. This happens for all roles, every time I make a post I have to reset my permissions.

    I have no idea where to start looking for a solution and I haven’t found anything else on these forums.

    #119425
    dwbroad
    Participant

    I have created a forum and can register a new user and log in using the short codes. I can also go to the forum page and post new topics, etc.

    http://www.davidbroad.co.uk/flac/forums/forum/forum/

    My only problem is when the user is logged in and on their Dashboard page when they click ‘Topics’ or ‘Reply’ in the ‘Right Now in Forums’ box they get this message:

    You do not have sufficient permissions to access this page. apart from this it seems to be working, but this is obliviously going to confuse some users..

    I’m using WordPress 3.4.2 and bbpress 2.1.2

    Thanks,

    David

    • This topic was modified 13 years, 6 months ago by dwbroad.
    • This topic was modified 13 years, 6 months ago by dwbroad.
    #119419
    GSmith84
    Participant

    Hello bbPress experts,

    I have searched through the forums to find some means of restricting user access to content and it looks like some of the solutions revolve around a Membership plugin that exists.

    The issue with that is several things, we’re not using User Roles. We’re trying to integrate with the MemberMouse premium plugin and users created via MemberMouse are not assigned roles in wordpress. This makes it useless to restrict access via User Roles. We’re also developing it on Thesis which seems to have a plethora of issues with bbPress regardless (so we have setup the compatibility plugin).

    However, MemberMouse does have user levels and tags to call them via wordpress functions. We can restrict other types of content with means like

    is_user_logged_in() && mm_isMembershipLevel(2)
    

    So we were looking for a means to hook into the forums to create conditional statements like this.

    For the time being we are hooking in the meta box and assigning an ID whether its public or restricted. Unfortunately we couldn’t find any solution letting us hook into the meta box and create restricts using traditional methods like described.

    As such, we are injecting javascript to rewrite html elements for users that do not pass restriction, which is occurring after the page loads. We’ve spent a lot of time on this and would be interested to find out from bbPress veterans if there might be a hook or init function we can connect to, in order to make restrictions not role based but member based using the means provided by the MemberMouse plugin.

    #119410
    A Swede in Greece
    Participant

    As far as I can see there is only 2 options in the settings who can register: 1 Anyone can register and 2: noone can register? I have changed it to noone can register because it has been hundreds of new spam members every day. A couple of persons had made 100 spam memberships each! How is this possible? Does this mean they have the same amount of membership accounts at WordPress?

    #119403
    GardenFork
    Participant

    thanks zaerl, can’t seem to get it to work. i’m not a rocket scientist with databases.

    happy to hire a programmer who can make this happen, posted a job request on http://jobs.wordpress.net/

    thx again. eric + gardenfork.tv

    #119398

    In reply to: 'Before' pagination?

    Shmoo
    Participant

    I’ve got almost the same problem as @Anointed here, no before and after option..

    Sorry to say but this is typically WordPress development they output Page navigations in < .a href's.. just one after the other and you can only hope there is enough classes to list and style them properly.

    I found this problem with WordPress the first time when i tried to apply Twitter's Bootstrap Page navigation to a WordPress theme.
    This is how a page-navigation should look like anno 2012 in default HTML. http://twitter.github.com/bootstrap/components.html#pagination

    not like this..

            <a href="#">page 1</a>
            <a href="#">page 2</a>
            <a href="#">page 3</a>
    

    • This reply was modified 13 years, 6 months ago by Shmoo.
    • This reply was modified 13 years, 6 months ago by Shmoo.
    zaerl
    Participant

    1) Create a bbpress.php file in the root directory of your theme (or archive-forum.php).

    2) bbPress is a plugin and so every single function that are include()d are automatically available on the global scope. Take a look at the bbpress() function.

    3) By testing. bbPress isn’t obtrusive and at 99% it will not raise problems.

    fuzzybee
    Participant

    It has been a week now.
    Does anyone have any ideas how I can achieve this?

    #119373
    Charly_ZA
    Participant

    Thanks for the help but isn’t that just creating a link to the forums in the navigation bar? Is there a way to treat it like a page? Simple press does it like that. I don’t like simple press and I want to change to bbpress. I have it installed on my website at tbolmc.com/wordpress.

    #119327
    JoanBotella
    Participant

    Hi everyone.

    I’m developing a web site with multilingual support, using WordPress 3.4.2 and the Polylang plugin 0.9.4 . I’d love to add a forum to the site, so I downloaded, installed and activated bbPress 2.1.2 .

    The first problem was that bbPress didn’t switch from one language to another, always keeping the default WordPress language. I solved this calling again bbpress()->load_textdomain() before loading the header template:

    function cbp_bbPressTranslate(){
    bpress()-&gt;load_textdomain();
    }
    add_action('get_header','cbp_bbPressTranslate');
    

    This worked great, but soon other problem appeared. If topics and replies doesn’t have translations, they doesn’t show up. I can add translation posts for they from the admin panel, but of course my users can’t. I’ve isolated the problem to the Polylang plugin: switching back to Twenty Eleven theme and deactivating all plugins but Polylang didn’t do anything. Deactivating Polylang showed the topics again.

    I’ve tried other multilingual plugins like xili-language, which works great with bbPress, but lacks of customizing menus panel, wich I need on my site.

    Anyone can help me? Encouraging words will be welcomed too! 😀

    #119315
    #119310
    Charly_ZA
    Participant

    Thanks, when I go to mywebsite.com/wordpress/forums the page is white. I did copy the bbpress files to the forum folder. When I get it installed will I be able to change the colours to match my current template?

    #119307
    LabSecrets
    Participant

    The plugin is https://wordpress.org/extend/plugins/wpvn-username-changer/

    I’ve not used it lately, and it is over 2 years since an update….so please test it before on a demo site.

    I suggest you merely use cpanel and phpmyadmin to change username for admin in row 1 of wp_users table…..be sure to backup your db beforehand in case something goes wrong 🙂

    Cheers!
    Spence

    #119306
    Stephen Edgar
    Keymaster

    Nice to see your ‘ Posts-to-bbPress’ plugin at GitHub
    https://github.com/nosecreek/Posts-to-bbPress

    Worthdesigning
    Participant

    I am using Profile Builder. Excellent plugin for registration.

    https://wordpress.org/extend/plugins/profile-builder/

    #119302
    cavenewt
    Participant

    Anybody tried WangGuard?

    #119297
    cavenewt
    Participant

    Same question here–I have a standalone 1.02 I’d like to upgrade to v2. Don’t care about WordPress but bbPressv2 is strictly a plugin for WP, right?

    #119295
    Charly_ZA
    Participant

    Is there any way to create a navigation bar link saying forums on my website. I have installed bbpress but I don’t know what to do next. I looked at a few tutorials. My website is tbolmc.com/wordpress

Viewing 25 results - 13,051 through 13,075 (of 26,882 total)
Skip to toolbar