Skip to:
Content
Pages
Categories
Search
Top
Bottom

Search Results for '"wordpress'

Viewing 25 results - 9,226 through 9,250 (of 26,874 total)
  • Author
    Search Results
  • #149385
    Robin W
    Moderator
    #149381
    SAPinfoASAP
    Participant

    Hi,

    Is it possible to allow shortcodes in the forum? These shortcodes are not part of bbpress, but other wordpress plugins I have installed.

    For example one short code allows me to add an optin form, I would like to add this to the end of my forum post.

    Thanks in advance,

    #149369
    Robin W
    Moderator

    very high chance it will be fine, but risk that your developer will have changed some core files.

    Since your trying to learn stuff, then I strongly recommend that you create a test site, which will let you try it there first, but also will teach you loads about wordpress and how it operates, and give you confidence to make other changes in a test area first

    https://codex.bbpress.org/creating-a-test-site/

    #149358

    In reply to: User Groups and Forums

    Robin W
    Moderator

    not sure if private groups will help you, might be worth a look

    https://wordpress.org/plugins/bbp-private-groups/

    #149348
    gogitossj34
    Participant

    Okay, now this is what I did:
    I replaced the line above

    <?php the_title( ‘<h2 ‘ . hybrid_get_attr( ‘entry-title’ ) . ‘>‘, ‘</h2>’ ); ?>

    with this line in my old bbpress.php file because I see they are in the similar position and the page work ok.

    <?php the_title( ‘<h2 ‘ . hybrid_get_attr( ‘entry-title’ ) . ‘>‘, ‘</h2>’ ); ?>

    But at the topic page, it pushed the sidebar to the bottom. So, I deleted the get footer line and everything looks exactly how I want them to be.

    Only that now I don’t know if they’ll be any problem, especially when I removed the get footer line.

    The fact that I changed your code also is worrying me since I have absolutely no knowledge about php coding. I mean, I’ve found out there is a something called php coding.

    Anyway, here is my footer.php content, can you check if anything is important ?

    <?php hybrid_get_sidebar( ‘primary’ ); // Loads the sidebar/primary.php template. ?>

    </div><!– #main –>

    <?php hybrid_get_sidebar( ‘subsidiary’ ); // Loads the sidebar/subsidiary.php template. ?>

    </div><!– .wrap –>

    <footer <?php hybrid_attr( ‘footer’ ); ?>>

    <div class=”wrap”>

    <?php hybrid_get_menu( ‘social’ ); // Loads the menu/social.php template. ?>

    <p class=”credit”>

    <?php printf(

    /* Translators: 1 is current year, 2 is site name/link, 3 is WordPress name/link, and 4 is theme name/link. */

    __( ‘Copyright © %1$s %2$s. Powered by %3$s and %4$s.’, ‘stargazer’ ),

    date_i18n( ‘Y’ ), hybrid_get_site_link(), hybrid_get_wp_link(), hybrid_get_theme_link()

    ); ?>

    </p><!– .credit –>

    </div><!– .wrap –>

    </footer><!– #footer –>

    </div><!– #container –>

    <?php wp_footer(); // WordPress hook for loading JavaScript, toolbar, and other things in the footer. ?>

    </body>

    </html>

    #149341
    Robin W
    Moderator

    also either use or crack open my plugin that does exactly this, you’ll find all the code in there

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

    #149333
    Stephen Edgar
    Keymaster
    #149328
    Stephen Edgar
    Keymaster

    You’ll need to download the translations manually per the details here:

    https://codex.bbpress.org/bbpress-in-your-language/
    https://translate.wordpress.org/projects/bbpress/2.5.x

    Save them into /wp-content/languages/plugins

    With some luck these two direct links will get you the .mo and .po. Make sure you rename both files so they are named bbpress-fr_FR.mo and bbpress-fr_FR.po respectively.

    The reason I asked for the language you are using is because if the language translation is 100% translated then bbPress translations are delived to you automatically by the same WordPress Core ‘Automatic Updates’ mechanism, sadly bbPress French translations are not at 100%. (Technically they are at 100% translated but there are 228 strings waiting to be approved.)

    #149311

    Topic: compact bbpress

    in forum Themes
    dingxiaohan
    Participant

    I’m extremely new to WordPress and totally new to bbpress. I have designed a community website in 2012 which seems fine, and want to add a forum.

    It needs to be compact and waste no space, or people won’t use it. That doesn’t seem to be possible in 2012, which forces a sidebar if you want a search facility, and which consumes a lot of vertical space with the identity of the contributor, including a large avatar. My very first experimental shot is here:
    http://www.hundredthmonkey.eu/?topic=wish-list
    and you’ll see what I mean. I wish I could attach a screen shot of the Sibelius.com forum, which is my ideal.

    I am thinking that the only solution will be to link out to a separate site with a really compact, unfussy, uncluttered theme. Can anyone suggest?

    #149307
    Robin W
    Moderator

    “well, that’s life in the world of WordPress, so live with it”, which is what your first comment conveyed” – yep and it’s what I meant – having coded several plugins, I can with some certainty say that the way you link to wordpress does mean that several people can hook to the same item and affect each other, and no we can’t test all plugins against all other plugins.

    But your offer to try and come up with a repeatable problem would be great, and if you can do so I’d be happy to try and look and let you know why a particular plugin is affecting.

    However 5 people going to the doctor after having been to the gym doesn’t mean there’s a common problem or that the gym is to blame 🙂

    Anyway I look forward to hearing from you when you’ve had a chance to investigate.

    #149306
    linkomatic
    Participant

    Okay, fine, it’s “nobody’s fault”. But nothing will get fixed if one simply says, “well, that’s life in the world of WordPress, so live with it”, which is what your first comment conveyed. That aside, sure, I’ll try to respond to your suggestion to document a repeatable case, even though, as I said, this issue seems to pop out in a semi-random fashion.

    #149299
    Robin W
    Moderator

    These issues will occur with different combinations of plugins, and it is nobody’s fault.
    and it will never be eliminated.

    Wordpress is free open source software. It allows others to hook into it using Filters and actions, as well as using templates and functions. Additionally theme developers can affect the way wordpress functions. This lets lots of other people change how wordpress works and add both functionality and looks.

    So if two developers both hook into the same bit of code, the actions of one can alter or even cancel out the other’s code.

    With many thousands of plugins it is simply impossible for developers to test to see if their plugin works with every other plugin out there.

    bbPress is thoroughly tested with the latest version of WordPress, in combination with all of the wordpress default themes (twentyten, twentyeleven etc.) to ensure it functions. Most bbpress plugin developers will also test against this combination to give a good degree of conformance.

    This is the best that you can get.

    It is no more the fault of bbpress that it doesn’t work with plugin A, than it is the fault of plugin A that it doesn’t work with bbpress!

    Sorry but that is life 🙂

    Open source means you get lots of great FREE software but you don’t get an integration guarantee – it’s pretty damn good, but sorry not perfect.

    And It’s nobody’s fault !

    #149295
    linkomatic
    Participant

    I have experienced similar problems with the bbPress menus not showing in the dashboard. For example, I have a site where both CPT UI and WordPress SEO plugins are installed. The menu items appeared adjacent to each other in the dashboard – then WordPress SEO menu appeared just above the CPT UI menu. After I installed bbPress, the Forums, Topics and Replies menus did not appear in the dashboard. When I use Chrome inspector to look at the code, it appeared that the bbPress menus were trying to display below the WordPress SEO menu and above the CPT UI menu — but they did not appear. I tried deactivating the WordPress SEO plugin to see what would happen and, sure enough, the bbPress menus then DID appear in the dashboard, just above the CPT UI menu. I reactivated WordPRess SEO, and everything now looks fine: SEO appears above Forums, Topics and Replies, followed by CPT UI.

    So, perhaps all’s well that ends well, but this semi-random behavior is concerning. I’ve seen other similar issues myself, and employed different solutions recommended by others on different discussion threads. One of these involved installing the Capability Manager plugin. That fixed the dashboard menu problem but BROKE the CPT UI plugin! I deactivated Capability Manager, which un-broke CPT UI, and still the menus displayed correctly. So, again, all’s well that ends well — but what the heck is going on here? It would be nice if the bbPress plugin developer would weigh in on this topic — and figure out a way to eliminate these issues.

    #149290
    Robin W
    Moderator

    ok, you have some distinct display issues caused by lots of adverts,masking any input, which are certainly not helping, but tried it and received no email.

    This is a wordpress/host set up issue not a bbpress one.

    EDITED : see post below

    #149289
    Robin W
    Moderator

    ok, could be many things, and we could spend a lot of time trying to track down the exact issue.

    So we’ll go for two options

    presuing that the “downloaded recommended plugin” is bbpress wp tweaks then lets start with :

    Deactivate bbpress tweaks
    Dashboard>plugins>bbpress tweaks>deactivate

    Go into widgets
    Dashboard>appearance>widgets

    And look at the bottom of the left hand side. You’ll see an “inactive sidebar”, with your entries on
    Below this is an “inactive widgets”
    Drag all the entries from the inactive sidebar to the inactive widgets area.
    This then allows wordpress to delete the sidebar
    I normally log out and in again at this stage – probably not needed, but I’ve never bothered to check
    Then basically reverse the above
    Re-enable bbpress tweaks
    You see the bbpress sidebar returns
    Drag the entries back from the inactive widgets area to the sidebar

    let us know if that works.

    jaciando1
    Participant

    hi there, I am running latest wordpress, buddypress and bbpress. on my registration form I have the standard wordpress details – username, email and password fields – but then I also have the username field for buddypress – in profile base fields which cannot be deleted. how can I delete one of these – or sync them – so that user only has to enter one username and not get confused with which username to use for logging in etc. please – someone I need urgent help on this – have already asked in buddypress forums but no luck yet. pllllleeeeeeaaaaasssseeee.

    #149246
    allieslabs
    Participant

    Hey Guys,

    We would like the topics on the Forum index page to display in order of Freshness. I understand this to be the default behavior, but for some reason our forum is not using that ordering.

    http://cornerstonecollective.com/forum/

    I have looked in settings and dug into the source code looking for a way to set the order to use the appropriate meta data, which I believe to be _bbp_last_active_time, but cannot seem to find the answer. Any suggestions would be most appreciated!

    Thanks!

    WordPress Version: 3.9.1
    bbPress Version: 2.5.4
    Website: http://cornerstonecollective.com/forum/

    Robin W
    Moderator

    I suspect your issue is with Easy WP SMTP 1.0.9

    there are a couple of threads on their support site about needing to change/resave settings after the upgrade to 1.0.8 that might apply to you

    https://wordpress.org/support/plugin/easy-wp-smtp

    and go to support

    Robin W
    Moderator

    1. bbpress plugins add exactly as normal wordpress plugins

    Dashboard>plugins

    Bbpress will try and use your theme, you may want to visit the set up guides

    Step by step guide to setting up a bbPress forum – Part 1

    2. depending on your theme, you should see the ability to add a topic at the end of each forum.

    You can add a ‘topic’ add in your sidebar using the text widget and putting

    <a href="/add-new-topic/">Create a new topic</a>
    

    in the text

    #149220

    In reply to: bbpress SQL Injection

    Echoing what Stephen said above, these issues are not actual issues (with bbPress 1.x or 2.x) and in are in no way responsible for anything that could have happened to your site.

    When something is not installed incorrectly, of course it isn’t going to work correctly. These issues are akin to installing your TV with the screen facing the wall, and complaining that you can’t see it from the couch. 🙂

    If it so happens any security issues are found in any version of bbPress, please do not publicly report them in these forums. Instead, responsibly disclose us:

    https://codex.wordpress.org/FAQ_Security

    We try to be really good about fixing any security issues ASAP.

    #149201
    Stephen Edgar
    Keymaster

    Ok, maybe the pre v3.0.0 never included ‘topic tags’ so the best solution is to delete or comment out this section in vBulletin3.php

    Basically remove the code between lines #293 and #334 in vBulletin3.php bbPress 2.5.4

    https://bbpress.trac.wordpress.org/browser/tags/2.5.4/includes/admin/converters/vBulletin3.php#L293
    https://bbpress.trac.wordpress.org/browser/tags/2.5.4/includes/admin/converters/vBulletin3.php#L334

    I hope to get the updates that I have been doing over the past week and a bit finished by the end of the week and it would be great if I could get a few people to test theme out 🙂

    #149198
    Stephen Edgar
    Keymaster

    Indeed I can confirm this is happening, feel free to create a ticket and if you have a patch add that also https://bbpress.trac.wordpress.org/, if not I’ll try to get some time later in the week to have a look.

    #149195
    Stephen Edgar
    Keymaster

    I’m still not having any issues with my vBulletin 3 databases 🙁

    First up, once the import is finished the progress window should look something like this:

    
    Repair any missing information: Continue
    Conversion Complete
    No threaded replies to convert
    Converting replies (79500 - 79599)
    Converting replies (79000 - 79499)
    ...
    Converting replies (300 - 399)
    Converting replies (200 - 299)
    Converting replies (100 - 199)
    Converting replies (0 - 99)
    Converting topic tags (0 - 99)
    No super stickies to stick
    Calculating topic stickies (0 - 99)
    Converting topics (5000 - 5099)
    Converting topics (4900 - 4999)
    ...
    Converting topics (200 - 299)
    Converting topics (100 - 199)
    Converting topics (0 - 99)
    Calculating forum hierarchy (0 - 99)
    Converting forums (0 - 99)
    Delete users WordPress default passwords (0 - 99)
    Converting users (0 - 99)
    
    Starting Conversion
    

    In particular, do you get to see the Conversion Complete without any errors shown?

    Do you ever (or even know if you can remember) if you see the importer is actually converting topic tags per Converting topic tags (0 - 99) or do you see an error along the lines of WordPress database error: [Table 'vbulletincopy.tagthread' doesn't exist]

    Also @themefurnace what version of vBulletin is it specifically? v3.1? v3.2? v3.81? etc

    #149193
    Stephen Edgar
    Keymaster

    When I convert existing forums to categories, the topics inside don’t show but the page does load.

    There is something weird here, I haven’t quite found all the issues relating to this but I am sure it is part of what I am looking at in https://bbpress.trac.wordpress.org/ticket/2647

    Could you please give me specific details on what you are doing:

    e.g.

    – Create a new forum via the ‘new forum’ in the backend
    – Change the above new forum type to ‘category’ and update
    – Visit http://example.com/forums/myforums
    – Click this
    – Click that

    Result:

    When I go here, I expect the forum to something something

    Expected result:

    The forum should do this and that and not do xyz or 123

    #149175
    Stephen Edgar
    Keymaster

    You want to change line #109 in form-topic.php
    https://bbpress.trac.wordpress.org/browser/tags/2.5.4/templates/default/bbpress/form-topic.php#L109

    From:

    
    <?php if ( !bbp_is_single_forum() ) : ?>
    

    To:

    
    <?php if ( ! ( bbp_is_single_forum() || bbp_is_topic_edit() ) ) : ?>
    
Viewing 25 results - 9,226 through 9,250 (of 26,874 total)
Skip to toolbar