Skip to:
Content
Pages
Categories
Search
Top
Bottom

Search Results for 'code'

Viewing 25 results - 17,026 through 17,050 (of 32,506 total)
  • Author
    Search Results
  • philv
    Member

    Chris, thanks so much. For now, the toolbar serves the purposes. The membership is restricted and I will be providing instructions for posting.

    I will be exploring shortcodes at the same time. Should I run into problems applying them, given my slow learning curve, I will return here for some excellent assistance.

    #41313
    danielkj
    Member

    Hi everyone. I have spent a whole lot of time building a website with this great bbpress forum, and suddently i found out that there is no “close for reply’s” options for the users who makes topics.

    The forum contains both discussion and also a section, where the topics not shall have reply’s.

    Is it possible to make such a function? Merry christmas everyone :)

    Regards, Daniel

    #107378

    @sravankumardv

    I think your code should read:

    [bbp-single-forum id=36]

    instead of:

    [bbp-single-forum id=$Introduction]

    I hope this helps…

    #110301
    GregKeen
    Participant

    Hi Guys,

    I finally figured out what the problem was: I had the “Post Types Order” plugin installed which is supposed to help in ordering of blog posts but apparently it affected the topics and replies in the bbPress forum too. After switching it off the order of topics and replies got fixed. :)

    Hope this is helpful for others with the same problem.

    #41303

    Topic: Appearance submenu

    in forum Plugins
    Seth
    Participant

    I figured out how to create a submenu of the plugins menu in bbpress. I’m trying to create a submenu of the Appearance menu. What’s the code to do this?

    @ChrisClayton
    Participant

    One of the worst things about a major update like this, is that we lose alot of great plugins – But, it’s better finding out now that their not actively updating it anymore than use it for a while and find out one day that everything’s broken :)

    what type of html did you want your users posting?

    Post toolbar allows alot of great functionality – https://wordpress.org/extend/plugins/bbpress-post-toolbar/

    It seems to do the same thing as ‘easy video embed’ by allowing users to post videos using a ‘[video]‘ or ‘[youtube]’ shortcode.

    Also, because bbpress is now using WordPress post-types. you could also easily create other shortcodes to achieve what you want.

    https://codex.wordpress.org/Shortcode_API

    Instead of letting users do img src and giving them complete control over the output of the image, you can allow them to do ‘[image]cat.img[/image]’ to achieve the same affect in an easier way, as an example.

    I do honestly think that using shortcodes (search the wordpress extend, theirs alot of shortcode plugins) would be a better option as it allows you to control it’s use properly, as i’m sure you know, some humans enjoy causing trouble – and their are afew html codes that can causing a hellish experience for your users if it gets into the hands of the wrong user.

    It’s one of the reasons wordpress.com doesn’t allow some html codes :)

    benfrain
    Member
    benfrain
    Member

    Correct. There can’t be any hard coded links anywhere, because all themes are different and will want them in different locations with different URLs. You can use the Login Widget that’s included to get you some of the way there, but even with widgets/shortcodes/templates it won’t satisfy everyone.

    Correct. There can’t be any hard coded links anywhere, because all themes are different and will want them in different locations with different URLs. You can use the Login Widget that’s included to get you some of the way there, but even with widgets/shortcodes/templates it won’t satisfy everyone.

    Create pages, use Shortcodes or Page Templates.

    Create pages, use Shortcodes or Page Templates.

    @ChrisClayton
    Participant

    Hi Philv.

    The plugin has not been upgraded for BBpress 2.0+

    To use that plugin you will need to download the stand-alone version or bribe the plugin developer into updating it

    or; finding a new plugin that is compatible for 2.0+. :)

    Hope that helps.

    #109736
    will_c
    Participant

    I was having the same issue and found some information here: https://codex.wordpress.org/AJAX_in_Plugins.

    I’m using BuddyPress, so I added the following to my functions.php file. If you are using regular WordPress I believe you’d need to substitute site_url(‘wp-load.php’) with admin_url(‘admin-ajax.php’):

    function ajaxurl_fix () {
    ?>
    <script> var ajaxurl = '<?php echo site_url('wp-load.php'); ?>';</script>
    <?php
    }
    add_action( 'get_header', 'ajaxurl_fix');

    Edit: I changed the action hook from init to get_header because I was experiencing problems logging in.

    #110920
    kahuitel
    Member

    Hi and thanks for your answer.

    As you suggested, I’ve been in settings / permalinks, then I saved, but I still have the problem. Did I understand well your suggestion ?

    Thanks for your precious help =)

    #110877
    drewdavid
    Participant

    Hi again,

    Just wondering if I could get a hand here from someone in the know. :)

    Best Regards,

    Drew

    Stephen Edgar
    Keymaster

    bbConverter FAQ/Known Issues 1.3 phpbb – bbpress

    – Post URL’s (**From post above this post)

    The URL’s from phpbb I thought were not getting migrated correctly when in fact they are, it is just that phpbb in its table lists the URL’s rather oddly. When looking at URL’s in the raw tables of phpbb they are in the following format:

    <!-- m --><a class="postlink" href="http://example.com">http://example.com<!-- m --></a>

    Need to strip the <!– m –> & ‘ class=”postlink”‘ before conversion either with bbconverter or firstly converting the links in phpbb before conversion

    – Poster IP Address is not migrated.

    see this post.

    – Images and Attachments (and smilies) are not migrated.

    see this post.

    – Existing Users

    If a username already exists in wp_users the imported user will be named imported_username eg. If ‘john’ already exists will import as ‘imported_john’

    – User Post Counts are not imported

    When viewing /wp-admin/users.php each user post count is ‘0’

    Ideally adding support to bbPress Core /wp-admin/tools.php?page=bbp-recount would fix that.

    (I couldn’t find where WP/BBP is keeping the total post count for a user though it is stored in phpbb_users user_posts)

    – Ophaned/Deleted User Posts:

    If the user has been deleted from phpbb when bbConverter runs these posts will be imported into bbPress as userid ‘1’ (i.e. ‘Admin’)

    – Time Zone

    Ensure you have your WP install is set to the same Time Zone as phpbb to get correct post times

    – User Profile data AIM & YahooIM fields are migrated by Jabber is not

    add the following code for ‘jabber’ to ‘/** User Section **********’ of phpbb.php script below aim/yim

    <br />
    // User jabber.<br />
    $this->field_map[] = array(<br />
    'from_tablename' => 'users', 'from_fieldname' => 'user_jabber',<br />
    'to_type' => 'user', 'to_fieldname' => 'jabber'<br />
    );<br />

    – ‘Quotes’

    I haven’t fully looked into how quote behavior works just yet, needless to say a workaround of sorts needs to be found for this.

    – Additional User Profile fields

    Ideally would like to import phpbb_users user_from (phpbb User Localtion) field to wp_usermeta description (Thus eg. Melbourne, Australia is added to the WP user BIO). Unless of course there is a funky way to import ‘User Location'(user_from), ‘Signatures'(user_sig), ‘occupation'(user_occ) & ‘interests'(user_interests) all together into WP Bio?

    – User Stuff not migrated (No big deal IMHO)

    User Subscribed Post, Favorite, Bookmarks, Private Messages, Rank

    (I dont see much of that as a very big issue in my case, users can just start this stuff from scratch)

    And that’s about all I have for now… Any ideas or other workarounds would all be well received and again thanks guys for this plugin and hope that now phpbb is there I can help contribute something back.

    Cheers,

    Stephen

    #41169
    eternal noob
    Participant

    I want to be able to make a forum for every blog post and use it in staed of the blog commenting system which is weirdly lacking for a blog-software system.

    There is a plugin that automatically makes a topic in a specific forum – but I need it to make a new forum.

    Of course I can alwaysuse a shortcode and make a new forum and include it in the blog post. But perhaps there is an automatized way, easier way.

    Why and what is the benefit of this ? Comments tend to be very unfocused and not very constructive. If you have to make a specific topic you have to focus and be more reflected when writing …

    Also I believe that John James Jacoby has thought about this ….

    Anyone who could and would do this ?

    Thanks, Jacob

    Aechus Tea
    Participant

    Is there a schematic for the bbpress forum/post/userlog/etc databases? I have a custom forum with a lot of posts that I’d like to import into bbpress but I’m going to be doing it myself. Is the code in your importer script clear enough so that I could do something?

    It would be cool if there was a simple universal xml file one could create with all the data for bbpress and import it that way.

    Thanks.

    ebiznet88
    Member

    Woohoo! Thank you, Adam! I’m going to now convert my phpBB3 forum to bbpress2.

    I’ll report back on how it went.

    Thanks again, Adam :)

    #110876
    drewdavid
    Participant

    Hi *Bump*

    Is my post lacking some information? If anyone could help out it would be much appreciated. The ‘forum participant’ user role doesn’t seem to be able to see my main forum page; it still reacts as though I am not logged in.

    Thanks so much for your help. :)

    Drew

    #100044
    Gautam Gupta
    Participant

    Rastarr, you may try converting your WordPress blog into bbPress standalone forums via http://code.google.com/p/wordpress-to-bbpress-converter/ and then use the bbPress plugin importer to import from the bbPress standalone. Please have a backup, cheers! :)

    Something in your theme’s CSS is coded for comment replies and bbPress is picking it up. This has happened to a few others, and I’ll be tweaking the default theme to prevent this in 2.1.

    #41132
    SportinSS
    Member

    I have the Chameleon theme from ElegentThemes. And i am trying to find out what to do to make bbpress work. I have it installed and works great on my mobile device. So i know it’s something to do with the theme i have. But i’m not sure where to start to make it work. This is really all i need so if there is a better way of doing it I am all ears! This site is for a small staffing company (365worx.com). They post a lot of things on Craigs List. But, they want to start posting things on there site. They don’t do a lot of it. So i don’t need anything special like phpBB. But i have thought about it and just don’t care for it much. Since i am so new to this it’s a little frustrating lol. Anyway, they will only post things to one forum, and no one will reply to it. it’s just to let people know it’s there.

    Thank you all for your help! Sorry if it’s a dumb question! =)

    MishaOLS
    Member

    Hello Adam, well, to be honest, I don’t remember, I have done the first conversion like two months ago. Now I have just used the tables from the database. But it should be the standalone version 1.1. And yes, I do have the bbconverter_translator table. Do you want me to send you my tables? ;) thank you very much for your work and time!

Viewing 25 results - 17,026 through 17,050 (of 32,506 total)
Skip to toolbar