Skip to:
Content
Pages
Categories
Search
Top
Bottom

Search Results for '"wordpress"'

Viewing 25 results - 6,676 through 6,700 (of 26,866 total)
  • Author
    Search Results
  • #166935

    In reply to: Profanity filter

    Robkk
    Moderator
    #166931

    Topic: Phpbb imort

    in forum Troubleshooting
    Woutermesker
    Participant

    Stuck @ 80%

    Hi all,

    I’am converting a phpbb forum. I tweaked my php.ini apache settings allready but it keeps getting stuck.

    Is there a way to start over where it’s left. Or to speed up the proces….

    I importing the forum into a clean wordpress website,

    #166929
    rebecca-paisley
    Participant

    BBPress Version: 2.3.3
    WordPress Version: 4.3.1

    http://www.flasco.org

    The forums are completely private from public view via a membership plugin (WPMUDEV Membership2). However, every time anyone (members) posts into the BBP forums, everything is going to spam. None of it is actually spam though.

    Any idea of why everything would be going to spam?

    I deactivated all plugins related to BBBPress, but that didn’t remedy anything either ..

    #166915
    Robkk
    Moderator

    The custom profile fields, what exactly do they do? I get that I can now add my Twitter handle from profile settings, but it’s not displayed anywhere on the site.

    Yeah you have to manually place the any extra fields you want on the frontend of the user profile and and place the code in the template user-profile.php, that should be in your child theme for easy customization.

    in user-profile.php you will already see an example of the user’s description field being displayed, and you would need to do some of the same procedure.

    <?php if ( bbp_get_displayed_user_field( 'twitter' ) ) : ?>
    
        <p class="bbp-user-twitter">
            <a href="<?php bbp_displayed_user_field( 'twitter' ); ?>" title="<?php bbp_displayed_user_field( 'display_name' ); ?>'s Twitter" rel="nofollow">
                 <?php bbp_displayed_user_field( 'twitter' ); ?>
            </a>
        </p>
    
    <?php endif; ?>

    I will probably put an example for user’s to place the links on their profile templates later on that guide.

    I would love for it to be displayed beneath my avatar and username phpBB-style in topics, or at least on my visible forum profile.

    Yep, there is a way to that too. I can’t remember much but I think it just involves a hook to place the data. There is a plugin Robin made that can basically do that. There is also a different plugin for displaying BuddyPress profile fields. You can dig around the plugins code if you want to see how he did it.

    https://wordpress.org/plugins/bbp-profile-information/

    This doable? Obviously I can’t use the_author_meta() in bbpress, so…

    I think it is possible to just use the WordPress code with bbPress. bbPress is just a plugin of WordPress now.

    Also, instead of adding labels to certain topics. Can I add classes so I can do changes in CSS?

    Yeah you do not have to leave the [status] and just leave the classes there so you can style with just CSS.

    #166914
    yoshimitsu1234
    Participant

    Hi,
    After doing this I had noticed that now forums and topics have a featured image section but normal WordPress posts, no longer shows featured image setting option in new post page at site.com/wp-admin/post-new.php

    How Do I resolve this issue?

    #166912

    In reply to: Is there a REST API?

    Robkk
    Moderator

    Try not to bump very old topics at least older than a year, especially ones that are 8 years old!!

    There is an API or an example API in the Jetpack plugin.

    https://plugins.trac.wordpress.org/browser/jetpack/trunk/class.jetpack-bbpress-json-api-compat.php

    There have been users trying to make apps with bbPress.

    WordPress JSON Rest API bbPress and Android

    Also know there has been work to introduce an API into WordPress.

    https://wordpress.org/plugins/json-rest-api/

    And there already have been plugins in development for compatibility between the WP-REst API and bbPress like this one.

    https://github.com/thenbrent/BB-API (Alpha version)

    Any contributions for any work toward any type of bbPress Rest API are welcome and much appreciated.

    #166907
    Robkk
    Moderator

    Pretty permalinks should work fine in bbPress if you have set up the permalinks to use the post name structure in Settings > Permalinks.

    https://codex.wordpress.org/Settings_Permalinks_Screen

    I don’t think it would be a step backwards, I am not sure all that the vbSEO plugin did SEO wise, but I bet there is a WordPress plugin that works fine with bbPress.

    There are two different vBull converters, vBulletin and vBulletin3. The last one is what you would want to use.

    #166904
    Robkk
    Moderator

    Yeah I think you could just use amembers login if it works fine with WordPress. You may need to check if the user registering into amembers registration forms acquire their bbPress forum role to even participate in the forums correctly.

    They are technically logging into your site not just the forums, everything is unified when using bbPress with WordPress. Unless you want everyone to redirect to your forums, or if you want a referer redirect like if a user registers from a bbPress forum page and they should be redirected back where they were previously before registering.

    From posts I see on the amember forum they should integrate nicely. The amember plugin also has some kind of plugin integration with bbPress. If you need any extra help from users setting up with amember with bbPress and WordPress, you may need to contact their support forums as there are more topics about the integration between the software on their site.

    #166903

    In reply to: Adding design to page

    Robkk
    Moderator

    I am not sure using Visual composer, but since bbPress has dynamic pages and not static WordPress pages, I am not sure a page builder will help much.

    If you have a custom bbpress.php file in your theme you can add a banner to all bbPress pages or just the ones of your choice with some conditionals.

    If you are adding the banners using a shortcode you can echo the shortcode like this.

    <?php echo do_shortcode("[shortcode]"); ?>

    Just make sure to edit the bbpress.php file in your child theme and place the shortcode in the template.

    #166900
    TallSam
    Participant

    I’ve got a gravatar account (with pic) with an email address that is the same as for my keymaster account for my wordpress.org site. But doesn’t seem to be linked. Any suggestions?

    Thanks,
    Sam

    #166881
    sbskamey
    Participant

    Hi support,

    I would like to add a banner design to the bottom of my topics and replies pages, but I’m not sure how I do this? What WordPress page do I use?

    I am using Visual Composer.

    http://sincebeingsingle.com/forums/forum/relationships/

    I have done this with the main forum index page using the shortcode:

    http://sincebeingsingle.com/insight/

    Any help would be great!

    Thanks,
    Kam

    #166865
    Robkk
    Moderator

    You find this in your theme, most likely in the functions.php file, but it could be different depending on the theme. You would spot by the register nav menu function like what is listed in this page.

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

    If you have a free theme I could check it out and get the arguments you need.

    If not there may be some arguments like menu slug that could help, but I need the name of the menu you are wanting to put the profile link in.

    #166863
    Robkk
    Moderator

    Interesting survey results!! I keep forgetting to comment my thoughts on this!!

    I am surprised that theming bbPress is split between all three of the choices listed, I expected most people to rely on their custom built themes and theme compatibility of bbPress like last year. So it seems not just developers/knowledgeable coders know how to use bbPress with any theme.

    I can see there is a small increase of developers creating sites with bbPress forums for others, but a decrease in users creating themes and plugins. So at least more developers are interested in bbPress, but I bet once the plugin and theme development guides are finally up, that there will be an increase in plugin and theme development.

    There is an increase in multisite usage of bbPress, which is good to see.

    I believe Gaming, Academic, and Music site types could possibly use an increase in site types using bbPress.

    Users contributing to bbPress has seem to have lowered quite a bit, which is not good. Hopefully there are a few things that can change that. People are joining slack though, so there is that.

    Desktop and Laptop is being mostly used by users, while they seem to want a better mobile experience. I will keep that definitely in mind as times are changing, and people browse while on mobile more than in the past.

    I am surprised unread replies and quotes have dropped a tad for being a requested feature, but there are some great plugins that can add that functionality.

    People want bbPress topics to replace WordPress comments more than ever.

    There is a lot more positive feedback on the comments left in the survey listed at the very bottom on this. Which is very good. I also think these comments are one of the most important parts to pay attention to of the survey.

    http://mercime.github.io/bbPress-2015-survey-results/


    @mercime
    thanks for doing a wonderful job with the survey. 🙂

    #166859
    Robkk
    Moderator

    Hmm, the repair tools should have fixed it. There is even a repair tool named

    Recalculate the sticky relationship of each topic

    There is not really a setting for sticky topics, it is basically a post status similar to sticky posts in WordPress. The query for topics just displays sticky posts first then the rest of the topics after that.

    Did you sort the topics differently by using a code snippet from this website, like sort topics by date or something different??

    #166853
    Robkk
    Moderator

    I think this plugin will allow you to customize how the notifications look in Settings > Forums. There might be shortcodes to change the content to use excerpt instead.

    https://wordpress.org/plugins/bbpress-custom-reply-notifications/

    #166852
    Robkk
    Moderator

    They shouldn’t be able to create blog posts in the WordPress backend by default.

    Make sure that you have the New User Default Role set to Subscriber in Settings > General in the WordPress backend. Make sure to also set the default forum role in Settings > Forums to Participant for any new users to get for the bbPress forums on your site.

    If the social login plugin/or any other plugin you are using has a setting to configure the default role make sure to check on that.

    Also know that the SUbscriber role can go into the WordPress backend, but since they have low level capabilities compared to an Admin or an Author, they can only edit their profile in the WordPress backend.

    If you need to disallow users from the backend entirely by user role, install a plugin like WP No Admin.

    #166843

    In reply to: bbpress themes

    Robin W
    Moderator

    you can play with the styling using

    https://wordpress.org/support/plugin/bbp-style-pack

    #166842
    Robkk
    Moderator

    Why did you contact bbPress support??

    I think that plugin is for WordPress themes??

    Also links to that plugin are quite about 5 years old, and it is not on the wordpress.org repository.

    You may need to contact the plugin author, if it is still supported.

    #166841
    KubiK888
    Participant

    Hi all, I am new to bbpress support forum and I have no idea how to create a new support topic, and no way to contact site admin directly, so please forgive me to post it here.

    Could someone please tell me how I can create a new support topic on bbpress.org support forum? I am able to login using my wordpress account information, but nowhere I can see any button for me to create my own request of support topic. Any help is highly appreciated.

    #166837
    Kasi Salyer
    Participant

    Hi,

    Here is what I see using codestyling localisation :

    Loading Issue: Author is using load_textdomain instead of load_plugin_textdomain function. This may break behavior of WordPress, because some filters and actions won’t be executed anymore. Please contact the Author about that.

    Thanks.

    #166830
    Robkk
    Moderator

    It is weird that you got this new issue. I just tested the snippet again on my WAMP server to check with the latest version of WordPress, switched to German again, and also see if it conflicts with the last code snippet I gave you, but I do not see an issue on my side.

    #166829
    dayan89
    Participant

    Hi,

    I have two menu areas on my website: main and top. I would like to add user profile link to top menu only.

    I found this example, which was were useful: https://codex.bbpress.org/layout-and-functionality-examples-you-can-use/#8-add-edit-profile-to-a-wordpress-menu But it adds link to both menus, top and main. I would like to add user profile link only to top menu, without adding it to main menu.

    Can you help me please?

    #166828
    project_subdomain
    Participant

    just had the problem that on all not bbpress-related pages the title was ” ‘s “.
    When commenting out the part for “User is viewing someone else’s profile” it’s working correctly on all pages, also when viewing another profile:

    else {
    			$new_title['text'] = sprintf( esc_attr_x( "%s's", 'User viewing another users profile', 'bbpress' ), get_userdata( bbp_get_user_id() )->display_name );
           }

    fyi new occurred, just had a wordpress update recently

    #166813
    Robkk
    Moderator

    I think it is how the subscriptions work, this might be a reason TinyMCE was disabled by default too, and also for security reasons.

    There may not be an easy way to fix this without editing the core files of bbPress.

    Like I said I created this trac ticket awhile ago that is about this issue. It might take awhile before a patch is made into the bbPress plugin update though.

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

    #166812
    Robkk
    Moderator

    This might do it since it says it works with custom post types.

    https://wordpress.org/plugins/aspose-pdf-exporter/

Viewing 25 results - 6,676 through 6,700 (of 26,866 total)
Skip to toolbar