Skip to:
Content
Pages
Categories
Search
Top
Bottom

Search Results for 'codes'

Viewing 25 results - 801 through 825 (of 1,701 total)
  • Author
    Search Results
  • #146356
    Stephen Edgar
    Keymaster

    I just checked the difference between the current version included with bbPress and that version you linked above. The version included with bbPress has quite a few enhancements, password support, forum categories, author IP, closed topics, sticky topics and topic tag slugs.

    The difference that you need is the BBCodes:

    // This is what is currently included with bbPress for YouTube:

    
    $vbulletin_markup = preg_replace( '/\[video\=youtube;(.*?)\](.*?)\[\/video\]/', '$2', $vbulletin_markup );
    

    //And this is what we had in that custom linked version:

    
    // Replace '[video=youtube;$1]$2[/video]' with '$2"
    $vbulletin_markup = preg_replace( '/\[video\=youtube;(.*?)\](.*?)\[\/video\]/', '$2', $vbulletin_markup );
    		
    // Replace '[video=youtube_share;$1]$2[/video]' with '$2"
    $vbulletin_markup = preg_replace( '/\[video\=youtube_share;(.*?)\](.*?)\[\/video\]/', '$2', $vbulletin_markup );
    // Replace '[SOUNDCLOUD]$1[/SOUNDCLOUD]' with '$1"
    $vbulletin_markup = preg_replace( '/\[SOUNDCLOUD\](.*?)\[\/SOUNDCLOUD\]/', '$1', $vbulletin_markup );
    

    So the addition of these two BBCodes:

    [video=youtube_share;$1]$2[/video] and [SOUNDCLOUD]$1[/SOUNDCLOUD]

    Do you know if both of these BBCodes are included with all vBulletin versions or are these custom BBCodes you manuallly created in your vBulletin install?

    Either way I just updated that gist with the above BBCode that you should be able to download and test as you did 8 months ago, it has ‘all the things’ above included in it. 🙂

    https://gist.github.com/ntwb/513187363f36b56ec77d

    #146306
    ThemeTon
    Participant

    I saw there some styling from your theme (ShopAndBuy). That style adds fontawesome icon for every LI elements. But bbpress has so many ul/li structure for formatting forum section and that style makes this issue there. Please manage or remove that styles from line 350 of “ShopAndBuy/css/shortcodes.typography.css”

    Thanks

    #146259
    Stephen Edgar
    Keymaster

    Cool, I will take a closer look in the morning, it’s late here down under and the brain is to fuzzy to dive in right now 😉

    Can you confirm which importer you used, did you import using the vBulletin3 or vBulletin importer and what is the exact version of the vBulletin forum you are importing from. I’ll try to take a closer look at those BBCodes and also make any updates as needed.

    #146203
    Stephen Edgar
    Keymaster

    Except for the default BBCode [b], [i], [u], [img], [url] etc the vBulletin importer only has [quote], [mention], [youtube] BBCodes added at this time. You would need to manually edit your topics and replies for any SoundCloud embeds.

    To test this any further I will need your vBulletin version you importing from so I can take a closer look, firstly to see if I have a copy of a vBulletin ‘version xyz’ to test against and then to see if I can see any reason why it would not be importing everything correctly.

    #146139

    In reply to: bbpress editor

    orionghf
    Participant

    Hi
    yes this is what Im using .. but Im still using WordPress 3.8.3
    The MCE editor is displaying perfectly and I can use all its features .. but when I save the content from the front end, the content is displayed with the html codes ..
    Could it be a theme problem?

    #146074

    In reply to: SMF Import to bbPress

    Stephen Edgar
    Keymaster

    @landshark I wouldn’t say you were being ignored, we are all volunteers here and if and when people have the time to help others they do, myself included.

    What is the BBCode for images on your SMF forum?

    bbPress converts these default BBCode [img] to `<img src=”…”>
    [img]http://www.google.com/intl/en_ALL/images/logo.gif[/img]
    [img=http://www.google.com/intl/en_ALL/images/logo.gif]
    If you have any custom BBCodes this will not work and you could either fix this in your SMF forum before importing or if your comfortable with MySQL you could update these in your database directly.

    #146066
    BeethovenWC
    Participant

    Hello.

    I made some changes in localisation (via Codestyling Localization plugin) and suddenly disappeared all my BBPress widgets from administrator’s widget menu.

    Please help.

    Stephen Edgar
    Keymaster

    The bbPress shortcodes are:

    [bbp-login] – Display the login screen.
    [bbp-register] – Display the register screen.
    [bbp-lost-pass] – Display the lost password screen.

    I suspect some of your issues are more WordPress related rather than specificly bbPress

    #145645
    Stephen Edgar
    Keymaster

    Do you think there is a limit with database size?

    No, all size constraints are upstream and relate directly to WordPress and the size you are talking about is not an issue.

    There is almost 100,000 posts and the database is bigger than 350 Mb

    That’s fine…

    Now the fine print, this will take a while to import, depending on your setup it might be a couple of hours right through to 8, 16 or 24, “how long is a piece of string” theory.

    I am not sure what tools Invision includes but optimizing and cleaning the database first is a very good idea.

    As bbPress imports the topics and replies it parses all the BBCodes ([b][i][url] etc) through a custom conversion script, if it comes across data it doesn’t like it will stop and no longer continue. Thus it is advisable to setup a local MAMP/XAMPP install and perform an import on your local machine as it gives you a good idea on how the process works, how much time it will take and the data integrity. Once your happy with all that then give it a go on your webhost.

    #145598
    Pietmar
    Participant

    Hi

    WP 3.9
    BBP 2.5.3
    TwentyTen

    I use WPPA a lot on my blog and would like to integrate in BBPress.

    When I add it in topic i get this:

    http://goandstay.co.za/blog/forums/topic/testtopic-2/#.U15rdfmSySo

    The code instead of the slideshow.

    Jacob Breedtveld . aka Opajaap (author of this amazing plugin) (http://wppa.opajaap.nl/ & https://wordpress.org/plugins/wp-photo-album-plus/) says:

    If this also does not work, ask the BBPress boys if there is a possiility that on the particular text shortcodes can be expanded ( $text = do_shortcode( $text ); ) or that the standard content filters can be run. ( $text = apply_filters( ‘the_content’, $text ); )

    I don’t have a clue what Jacob says, but think you will know!

    Thanks

    #145581
    Stephen Edgar
    Keymaster

    I suggest you have a read of some of the docs, most of what you are asking about is in the docs.

    For example you can use shortcodes and widgets for login and register actions:
    https://codex.bbpress.org/shortcodes/ https://codex.bbpress.org/widgets/

    The majority of bbPress actions including moderation can all be performed in the ‘front end’ and only some specific actions (configuration and settings) are required to be performed in the WordPress dashboard (back-end).

    https://codex.bbpress.org/getting-started-with-bbpress/

    Codex

    #145553

    In reply to: bbcode

    ww_hoax
    Participant

    once again: I want to disable only 2 dysfunktional bbcodes – e. g. link and img. This buttons works also not in this forum – try it! It’s a bug!
    I make no sense to frustrate user.

    #145511

    In reply to: bbcode

    ww_hoax
    Participant

    Dear tharsheblows, I know this function, but I will only deactivate 2 or 3 bbcodes – e. g. “img”.
    This bbcode does not work.
    https://www.dropbox.com/s/kkeoj8bqrs0jok5/Topic.png

    #145479

    In reply to: bbcode

    ww_hoax
    Participant

    I mean the bbcodes above the forum editor. Is it not possible to delete individual buttons.
    https://www.dropbox.com/s/kkeoj8bqrs0jok5/Topic.png

    No effect, if I comment out line 109
    Many thanks

    #145468

    In reply to: bbcode

    Robin W
    Moderator

    if you mean the bbpress shortcodes, they’re held in

    includes/common/shortcodes.php

    at the simplest just comment out line 109

    ie change to

    //add_shortcode( $code, $function );
    

    bbpress upgrades will overwrite this, so keep a note to change again as bbpress upgrades are issued.

    #145456

    Topic: bbcode

    in forum Installation
    ww_hoax
    Participant

    Is there any simple solution to delete default bbcodes. In which file the default bbcodes defined. Many thnaks for any hint.

    #145428
    Jakob Langlois
    Participant

    If I understood you correctly this is what you’re after.

    When in the dashboard, navigate to Settings > Reading.

    Change the option that’s called Front page displays to a static page and choose the home page (assuming you’ve created a page to be the front page).

    Now navigate to Pages > All Pages and edit the page you selected to be your home page (usually “home”).

    Enter the shortcode [bbp-forum-index] and then publish.

    For a full list of available shortcodes, visit https://codex.bbpress.org/shortcodes/

    Upon further testing, I noticed that this will not edit the breadcrumbs and will show Home > Forums (linking to domain.com/forums). I also tested this by changing the forum root slug in Settings > Forums to “home” (the page I have set to be my front page) and it now shows Home > Home

    I am unsure as to how this would be fixed though…

    #145417
    Stephen Edgar
    Keymaster

    Looks good, I like that you have the template notices using the colors from your theme, many people miss styling those and it is always the first thing I look for 😉

    Take a look at the shortcode [bbp-stats] to display the forum statistics.

    https://codex.bbpress.org/shortcodes/

    Also the page template page-forum-statistics.php to get some good ideas on adding your stats .

    #145122
    leopolds
    Participant

    Hi,

    I am using Twenty Fourteen and bbpress. How can I make the forums root page full width?

    I want to remove the sidebar, center the content and remove the post-like forum names after the listing section. Basically, I want this page to act as a full-width page, not a post/forum listing.

    My forums root page is http://leopolds.com/discussions/

    I want it to look like http://leopolds.com/bbs/ (created using shortcodes)

    Thank you very much.

    (I was able to achieve full-width style in individual forum page by using widget visibility function. But this doesn’t work for the forums root page.)

    #145097

    In reply to: CHAT FOR MY FORUM

    Halo Diehard
    Participant

    There are so many cool options right now! Besides private messages, like the plugin listed above, there is a chat at the bottom bar that users can chat with but it’s also one on one privately, it is iFly.

    Also, the plugin Quick Chat can be integrated into bbPress in two different ways:

    1. This chat plugin can be put into different WordPress pages with shortcodes, so you can put it on any pages at the top or bottom of your forums that are on WordPress pages using shortcode, or in any sidebar widget.

    2. You can also use a different chat on each WordPress page using shortcode, so coupled with the plugins BuddyPress and BuddyPress Groups Extras (which adds extra pages to BuddyPress Groups) you can give each of your bbPress forum groups their own private chat!

    #145053
    chimerapro
    Participant

    okay I found the style editor I added these codes to the bottom of it and that did nothing I use !important its not working.

    #145026
    Adonismoet1608
    Participant

    I have applied some of those codes from the styling crib into my css folder and they dont work

    #144973
    Adonismoet1608
    Participant

    theme: Analytical Lite
    the latest version of wordpress and bbpress

    my font,background, and reply background is white
    so all text is hidden.

    i have tried applying the codes from styling crib into my theme css but it still dosent work.

    does anyone have anycode to change the back ground

    #144969
    vegas778
    Participant

    On which files I can find these HTML CODES :

    <span class="bbp-topic-started-by">Started by: <a href="https://bbpress.org/forums/profile/renai42/" title="View renai42's profile" class="bbp-author-avatar" rel="nofollow"><img alt='' src='https://secure.gravatar.com/avatar/9cc0474d583be1164e47317a42b158c3?s=14&d=retro&r=G' class='avatar avatar-14 photo' height='14' width='14' /></a>&nbsp;<a href="https://bbpress.org/forums/profile/renai42/" title="View renai42's profile" class="bbp-author-name" rel="nofollow">renai42</a></span>

    <span class="bbp-topic-freshness-author"><a href="https://bbpress.org/forums/profile/crzyhrse/" title="View crzyhrse's profile" class="bbp-author-avatar" rel="nofollow"><img alt='' src='https://secure.gravatar.com/avatar/c92f6fbad5b684dd17d1fde21aff8c24?s=14&d=retro&r=G' class='avatar avatar-14 photo' height='14' width='14' /></a>&nbsp;<a href="https://bbpress.org/forums/profile/crzyhrse/" title="View crzyhrse's profile" class="bbp-author-name" rel="nofollow">crzyhrse</a></span>

    Thank in advance.

    #144967
    vegas778
    Participant

    Thank you but I meant on which files I can edit these HTML CODES above ? I dont find the file’s name.

Viewing 25 results - 801 through 825 (of 1,701 total)
Skip to toolbar