Skip to:
Content
Pages
Categories
Search
Top
Bottom

Search Results for '"wordpress"'

Viewing 25 results - 4,501 through 4,525 (of 26,864 total)
  • Author
    Search Results
  • #184047
    Robin W
    Moderator

    you are telling me that this was working, and now it is not.

    If you have changed bbpress version, then revert to the previous, but I strongly suspect that this not the case.

    Otherwise you have changed something, either in a theme version, a wordpress setting, a page settings, a template, a theme setting, a plugin update or something else such as a php version, a server setting etc, etc. etc.

    I cannot possibly guess at what you have changed, so I cannot see how to help.

    #184002
    Robin W
    Moderator

    seems php 7.1 has issues with a lot of plugins, 2 mentioned here

    https://wordpress.org/support/topic/php-7-0-14-to-7-1-1-operator-not-supported-for-strings/

    and a bbpress trac ticket

    https://bbpress.trac.wordpress.org/ticket/2987

    I’m running php 7.0.17 with no issues

    #183998
    Robin W
    Moderator

    yes, install my bbp style pack plugin

    bbp style pack

    and go to

    dashboard>settings>bbp style pack>breadcrumbs to set breadcrumb options or disable altogether

    #183995
    PrancingHorse
    Participant

    Nevermind I found a plugin https://wordpress.org/plugins/adminimize/

    #183994
    forums1234
    Participant

    Is it possible to customize the menu in forum and topic pages to delete the breadcrumbs altogether and only have a “Back” button option?

    Wordpress Version – 4.7.4
    bbpress – Version 2.5.12

    Be Forbes Art Forum

    #183993

    In reply to:

    blasterspike
    Participant

    Unfortunately I haven’t found a solution.
    I still think that due to

    Existing passwords are converted during the import so users can login to WordPress/bbPress as soon as the import and recounts have finished.

    the converter should have saved the database information to read phpbb_users somewhere but it hasn’t, that’s way I’m getting the “Error establishing a database connection”.
    Which I think is somehow related to
    https://bbpress.trac.wordpress.org/ticket/1886

    At this point I will ask my users to reset their password.
    During my tests, I have also discovered that even if you reset your password, you are still getting the “Error establishing a database connection” error for migrated user and to “skip” it, you have to rename/delete the table “wp_bbp_converter_translator”.

    #183968

    In reply to: Captcha-plugin

    Aswathy Ajish
    Participant

    Hi,

    I tried the plugin “SI CAPTCHA Anti-Spam” (https://wordpress.org/extend/plugins/si-captcha-for-wordpress/), but it is not working for me.

    I have configured the plugin for add new topic and add new reply forms. Captcha appears, but even after entering correct captcha, it is showing an error message “ERROR: Unreadable CAPTCHA token file”.

    Can anybody help?

    #183922
    aelsharawi
    Participant

    Thanks a lot,was looking for -php7.1 fix
    when is the final release?
    how to auto update on WordPress

    shieatt
    Participant

    I’ve been digging a lot and trying all kinds of different things but really have no idea how to get my site working again.

    For whatever reason – every time I try and login to the standard Admin dashboard at “restomod101.com/test/wp-admin” for WordPress I get redirected to “restomod101.com/test/forum-registration/” which leads me to think its a redirect issue with bbpress but I could be wrong.

    Whereas “restomod101.com/test/wp-login” takes me to a 404 error page.

    What makes this all the more odd is the homepage seems to work fine EXCEPT when I click on any link, it resolves to a 404 page.

    I’ve tried turning all the plugins off by renaming my plugins folder, I’ve tried my main themes folder but that takes me to a blank page.

    What exactly has gone wrong?

    Page is: restomod101.com/test/

    Just trying to access the standard admin dashboard, I’ve put so much work into this site to lose it now!! Any help would be sincerely appreciated.

    #183896
    xelota
    Participant

    Wordpress : WordPress 4.7.4 avec le thème BlackFyre.
    bbpress : Version 2.5.12
    http://www.vieuxetmechants.com/

    Hello i’ve created custom and i don’t understand the role MembreVetM can’t edit or delete their own post

    function add_new_roles( $bbp_roles )
    {
        $bbp_roles['bbp_gamer'] = array(
            'name' => 'Gamer',
             'capabilities' => custom_capabilities( 'bbp_gamer' )
            );
     
    	$bbp_roles['bbp_membrevetm'] = array(
            'name' => 'MembreVetM',
             'capabilities' => custom_capabilities( 'bbp_membrevetm' )
            );
    		
        $bbp_roles['bbp_veteran'] = array(
            'name' => 'Vétéran',
            'capabilities' => bbp_get_caps_for_role( bbp_get_moderator_role() )
            );
    	
    	$bbp_roles['bbp_officier'] = array(
            'name' => 'Officier',
            'capabilities' => bbp_get_caps_for_role( bbp_get_keymaster_role() )
            );
    	
        return $bbp_roles;
    }
     
    add_filter( 'bbp_get_dynamic_roles', 'add_new_roles', 1 );
     
    function add_role_caps_filter( $caps, $role )
    {
        /* Only filter for roles we are interested in! */
        if( $role == 'bbp_gamer' )
            $caps = custom_capabilities( $role );
     
        if( $role == 'bbp_membrevetm' )
            $caps = custom_capabilities( $role );
     
        return $caps;
    }
     
    add_filter( 'bbp_get_caps_for_role', 'add_role_caps_filter', 10, 2 );
     
    function custom_capabilities( $role )
    {
        switch ( $role )
        {
     
            case 'bbp_gamer':
                return array(
                    // Primary caps
                    'spectate'              => true,
                    'participate'           => true,
                    'moderate'              => false,
                    'throttle'              => false,
                    'view_trash'            => false,
     
                    // Forum caps
                    'publish_forums'        => false,
                    'edit_forums'           => false,
                    'edit_others_forums'    => false,
                    'delete_forums'         => false,
                    'delete_others_forums'  => false,
                    'read_private_forums'   => false,
                    'read_hidden_forums'    => false,
     
                    // Topic caps
                    'publish_topics'        => true,
                    'edit_topics'           => true,
                    'edit_others_topics'    => false,
                    'delete_topics'         => false,
                    'delete_others_topics'  => false,
                    'read_private_topics'   => false,
     
                    // Reply caps
                    'publish_replies'       => true,
                    'edit_replies'          => true,
                    'edit_others_replies'   => false,
                    'delete_replies'        => false,
                    'delete_others_replies' => false,
                    'read_private_replies'  => false,
     
                    // Topic tag caps
                    'manage_topic_tags'     => false,
                    'edit_topic_tags'       => false,
                    'delete_topic_tags'     => false,
                    'assign_topic_tags'     => false,
                );
     
    			case 'bbp_membrevetm':
                return array(
                    // Primary caps
                    'spectate'              => true,
                    'participate'           => true,
                    'moderate'              => false,
                    'throttle'              => false,
                    'view_trash'            => false,
     
                    // Forum caps
                    'publish_forums'        => false,
                    'edit_forums'           => false,
                    'edit_others_forums'    => false,
                    'delete_forums'         => false,
                    'delete_others_forums'  => false,
                    'read_private_forums'   => true,
                    'read_hidden_forums'    => false,
     
                    // Topic caps
                    'publish_topics'        => true,
                    'edit_topics'           => true,
                    'edit_others_topics'    => false,
                    'delete_topics'         => true,
                    'delete_others_topics'  => false,
                    'read_private_topics'   => true,
     
                    // Reply caps
                    'publish_replies'       => true,
                    'edit_replies'          => true,
                    'edit_others_replies'   => false,
                    'delete_replies'        => true,
                    'delete_others_replies' => false,
                    'read_private_replies'  => true,
     
                    // Topic tag caps
                    'manage_topic_tags'     => true,
                    'edit_topic_tags'       => false,
                    'delete_topic_tags'     => true,
                    'assign_topic_tags'     => true,
                );
     
                break;
     
            default :
                return $role;
        }
    }
    #183888
    blengine
    Participant

    Another solution for those interested. This makes use of the “Shortcodes in Menus” plugin to easily place the bbpress “View Profile” and “Edit Profile” links in your WordPress nav menus. Instructions:

    1 – Install the free plugin “Shortcodes in Menus”
    2 – Place the following code in your theme’s functions.php file:

    function menu_profile_link() { 
    		$current_user = wp_get_current_user();
    		$profile_menu_item = '<li><a href="' . home_url('forums/users/') . $current_user->user_nicename . '">View Profile</a></li>';
    		return $profile_menu_item;
    }
    add_shortcode('bbp-profile', 'menu_profile_link');
    
    function menu_edit_profile_link() { 
    		$current_user = wp_get_current_user();
    		$profile_menu_item = '<li><a href="' . home_url('forums/users/') . $current_user->user_nicename . '/edit">Edit Profile</a></li>';
    		return $profile_menu_item;
    }
    add_shortcode('bbp-edit-profile', 'menu_edit_profile_link');

    3 – In WordPress go to your Menus and go to the new Shortcodes panel. Type in “View Profile” as the title and underneath that type in [bbp-profile] to place the profile link in your menu. Click “Add to Menu”. Repeat this process using the shortcode [bbp-edit-profile] to add the “Edit Profile” link.

    4 – I’d also recommend the free plug-in “Nav Menu Roles” to restrict your menu items to logged in or logged out users.

    Hope this is useful!

    #183885
    Alex Stine
    Participant

    Hello,

    I have a plugin that is used to index search results in to Amazon CloudSearch. I’ve written the below code to exclude private forums from search results. Now I need some code to automatically exclude all topics inside a private forum.

    function exclude_private_forums_search() {
    	$forum_id = bbp_get_forum_id();
    	if (get_post_status($forum_id) == 'private') {
    		add_post_meta($forum_id, 'acs_exclude', 1, true );
    	} else {
    		delete_post_meta($forum_id, 'acs_exclude');
    	}
    }
    add_action('bbp_new_forum', 'exclude_private_forums_search' );
    add_action('bbp_edit_forum', 'exclude_private_forums_search' );

    Is there anyway I can get a list of topic IDs inside a forum ID?

    Running latest version of bbPress and WordPress.

    Thanks.

    PrancingHorse
    Participant

    Hello,

    Is there a way to remove the wordpress dashboard for participants/subscribers? Right now the participant/subscriber can see plugins that need to be updated for example and other information like Maintenance and Security Releases.

    Thank you,
    Diana

    #183879
    dram2017
    Participant

    Hi
    Newbie would be grateful for some help …..

    WordPress 4.7.4 – bbPress 2.5.12
    https://bijouxbutterflies.co.uk/forums/

    Using the “Creating Content” guide I created my first forum and topic with no problems.
    I then created a second forum (latest news) with one topic (trade mark registered).
    Although both forums and both topics show in wp-admin, when I visit the website only the first forum shows.
    What do I have to change to get both forums listed?
    Thanks

    #183852
    Thanh Sang Nguyen
    Participant

    Hi there,
    I have use WordPress 4.7.4, Twenty Fifteen theme, bbPress Version 2.5.12 and all plugins deactive. I have issue exactly same this topic.

    Reply to Topic Link Not Working

    #183841
    Robin W
    Moderator

    if you install my plugin bbp style pack it has options to disable or amend the breadcrumb.

    bbp style pack

    once installed and activated go to

    dashboard>settings>bbp style pack>breadcrumbs

    #183832
    codyrauh
    Participant

    Wordpress: 4.7.4
    BBpress: 2.5.12

    Forum: http://www.wildorigin.online/forums/

    I have tried reading a couple other post, and the posted tutorials. Not sure where I am going wrong, but I cannot get my forum to go full page, it still wants to show sidebar/archive on forum page.

    Please help, thanks!

    malcolmpaulpearson
    Participant

    Hi all

    Shared Windows hosting.
    WordPress 4.6.5 running Karma theme.

    Hosting provider will not change the IIS config for just me, they recommend me adding a Linux shared hosting and host the bbpress on that server, external to the site.

    When I search with one word – it works fine. When I search with two words it gives the error:

    HTTP Error 404.11 – Not Found
    The request filtering module is configured to deny a request that contains a double escape sequence.

    Most likely causes:
    The request contained a double escape sequence and request filtering is configured on the Web server to deny double escape sequences.

    Things you can try:
    Verify the configuration/system.webServer/security/requestFiltering@allowDoubleEscaping setting in the applicationhost.config or web.confg file.

    Detailed Error Information:
    Module RequestFilteringModule
    Notification BeginRequest
    Handler ExtensionlessUrlHandler-Integrated-4.0
    Error Code 0x00000000
    Requested URL https://www.ciproza.co.za:443/forums/search/annual+returns/
    Physical Path D:\Websites\ciproza.co.za\httpdocs\forums\search\annual+returns\
    Logon Method Not yet determined
    Logon User Not yet determined

    More Information:
    This is a security feature. Do not change this feature unless the scope of the change is fully understood. You should take a network trace before changing this value to confirm that the request is not malicious. If double escape sequences are allowed by the server, modify the configuration/system.webServer/security/requestFiltering@allowDoubleEscaping setting. This could be caused by a malformed URL sent to the server by a malicious user.
    View more information »

    Anybody got a solution for me?

    #183813

    Topic: Forum Problem

    in forum Installation
    datboi
    Participant

    Hello,

    First of all i am using 4.7.4 version of WordPress and 2.5.12 version of bbpress.
    The problem is when i click “Forums” button (on WordPress Admin) i get HTTP 500 error
    this happens when i click “New Forum” or “All Forums” too.

    The weird part is that i can open a topic without no forum.

    My WordPress site: forums.the-rvo.com

    bigt11
    Participant

    @welshdemon did you ever figure this out, I am pretty much doing – stuck exactly where you are. I am going for older bbpress to newer bbpress that is part of a full site update and just want to bring everything in cleanly. It does bring in my replies, and they seem to be connected properly in the backend, but frontend, they do not show.

    If i edit a reply, and just hit the update button, it will then show. I want to avoid doing that 1000 times.

    Even if I export the topics from the new site, that show properly after I did the update trick mentioned above, then bring it back in (wordpress import) to test if it will import properly, it does not, has same symptoms a you mentioned.

    #183794
    panda666uk
    Participant

    Any idea on this error ? Thanks

    WordPress database error: [Unknown column 'users.id' in 'field list']
    SELECT convert(users.id USING "utf8mb4") AS id,convert(users.password USING "utf8mb4") AS password,convert(users.username USING "utf8mb4") AS username,convert(users.email USING "utf8mb4") AS email,convert(kunena_users.websiteurl USING "utf8mb4") AS websiteurl,convert(users.registerDate USING "utf8mb4") AS registerDate,convert(users.name USING "utf8mb4") AS name,convert(kunena_users.aim USING "utf8mb4") AS aim,convert(kunena_users.yim USING "utf8mb4") AS yim,convert(kunena_users.gtalk USING "utf8mb4") AS gtalk,convert(kunena_users.icq USING "utf8mb4") AS icq,convert(kunena_users.msn USING "utf8mb4") AS msn,convert(kunena_users.skype USING "utf8mb4") AS skype,convert(kunena_users.twitter USING "utf8mb4") AS twitter,convert(kunena_users.facebook USING "utf8mb4") AS facebook,convert(kunena_users.myspace USING "utf8mb4") AS myspace,convert(kunena_users.linkedin USING "utf8mb4") AS linkedin,convert(kunena_users.delicious USING "utf8mb4") AS delicious,convert(kunena_users.friendfeed USING "utf8mb4") AS friendfeed,convert(kunena_users.digg USING "utf8mb4") AS digg,convert(kunena_users.blogspot USING "utf8mb4") AS blogspot,convert(kunena_users.flickr USING "utf8mb4") AS flickr,convert(kunena_users.bebo USING "utf8mb4") AS bebo,convert(kunena_users.websitename USING "utf8mb4") AS websitename,convert(kunena_users.location USING "utf8mb4") AS location,convert(kunena_users.signature USING "utf8mb4") AS signature FROM jos_users AS users LEFT JOIN jos_kunena_users AS kunena_users ON kunena_users.userid = users.id LIMIT 0, 100
    #183780
    danaroo
    Participant

    I am running WordPress 4.7.4 and using bbPress v 2.5.12

    I have a ‘Forum Topics’ widget set up in the sidebar and the breadcrumbs is linking to a Blog page. I want this to link to a PAGE in my site instead. I cannot figure out how to do this.

    My site is;

    and the breadcrumb that I want to re-direct is this;

    Any assistance here is appreciated.
    Dana

    #183769
    ico33
    Participant

    Latest News: I restored WordPress to a few weeks ago, but still with the latest release.

    Rstoring, the issue disappeared. And some plugins asked me to make an upgrade because of the restore to a few weeks ago. Due to the problem “solved”, I tried to update one plugin by one, and see if the problem comes back. Yes! It came back after the update of “Custom Sidebars”.

    “ok” – I thought – “now deactivate it and see if the problem disappears”. Well, deactivating Custom Sidebars, the issue remains! And the only way to make it disappear is, now, deactivating BBpress.

    What a confusion!

    What do you think?

    #183761
    timsilva_
    Participant

    I was considering Tapatalk for bbPress (after migrating from SMF which has Tapatalk support) a while back in an effort to compete with Slack.

    I did bookmark this URL: https://tapatalk.com/download_bbpress.php – but it is no longer active, it just redirects. Here is the archive.org version: https://web-beta.archive.org/web/20150911232515/https://tapatalk.com/download_bbpress.php

    There also was this plugin, but I haven’t tested it or confirmed that it is actually meant for bbPress specifically (it looks like it is for blog comments): https://wordpress.org/plugins/tapatalk/

    If anyone is currently using Tapatalk with bbPress, let us know how. 🙂

    #183760
    ico33
    Participant

    Ok… for now I have to restore to the previous WordPress, because in this way every user can’t see login, can’t see the pages refreshed, and it’s a problem. Hope somebody will answer.

Viewing 25 results - 4,501 through 4,525 (of 26,864 total)
Skip to toolbar