Skip to:
Content
Pages
Categories
Search
Top
Bottom

Search Results for '"wordpress'

Viewing 25 results - 8,226 through 8,250 (of 26,874 total)
  • Author
    Search Results
  • #156760
    NewCo
    Participant

    Yeah I’ll try, but the main goal is to NOT just manage this app. But create this app for all future clients of this forum to use this forum from the Android app. If it’ll be creating for open source I’ll be happy to create a technical task and be a project manager to connect people all togher, but right at first I’ll try jobs.wordpress site

    #156759
    Robkk
    Moderator

    hmm i thought they would have bbPress support since they have the sister project BuddyPress supported shown on there site, well at least they could implement it in the future though.

    and well you could use a normal web browser/WordPress app in view site and go to the regular WordPress dashboard on your site and edit the bbPress settings that way.

    like i said you can receive push notifications to your phone with pushover and the plugin mentioned above or hell you can use IFTTT and bbPress’s RSS feeds for its custom post types too.

    with the search from XML-RPC i think you would need some custom development

    you can go to http://jobs.wordpress.net/ or any other freelance websites.

    if you do get this all set up like you want , can you please post a topic in Pimp your press cause i would like to check out the results.

    #156756
    Robin W
    Moderator

    This is an error in wordpress and awaiting their fix

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

    Switching off debug fixes it, but appreciate that it is annoying !

    #156749
    John Clause
    Participant

    It might have been already reported to you, I would like to post another vote to get rid of the following message:

    Notice: bbp_setup_current_user was called incorrectly. The current user is being initialized without using $wp->init(). Please see Debugging in WordPress for more information. (This message was added in version 2.3.) in /wp-includes/functions.php on line 3547

    which starts showing up when bbPress is activated and WP_DEBUG is on in /wp-config.php. It does not seem to break functionality of bbPress, but it is very annoying, when one tries to debug other stuff.

    Thank you very much.

    #156748
    Robkk
    Moderator

    test this out cause im not entirely sure , but install jetpack if you havent already on your site and download the WordPress app from Google Play and connect your self hosted WordPress site to the app.

    can you see any settings for bbPress in the app dashboard?? like settings>forums??

    just so you know this only allows you to manage your site from the dashboard in the app, nothing frontend. If you want a custom app i highly recommend Apppressor.

    if you feel like you need to hire a developer go to http://jobs.wordpress.net/ or any other freelance website for custom development.

    #156742
    NewCo
    Participant

    thx for the answer. I have an idea:

    Is it possible to modify – https://github.com/wordpress-mobile/WordPress-Android and make some changes like add a FORUM button? and create a functional using XML-RPC for BBPress…

    if yes here s some questions:

    Does the BBPRESS – SEARCH available from XML-RPC?

    ANYBODY want to spend 1-2 days to make that stuff, may be open source?

    #156734
    Robkk
    Moderator

    you should post a job at http://jobs.wordpress.net/

    #156733
    Robkk
    Moderator

    I don’t know how your going to find your forums in FTP , but you can go to each forum and click view and that should take you right to the forum.

    you also see the whole forum archive if you go to yoursite.com/forums.

    if you dont have pretty permalinks activated in settings>permalinks in the backend of WordPress then its yoursite.com/?post_type=forum

    other than that make sure you correctly created your forums and subforums correctly.

    #156726
    Doug Smith
    Participant

    Another thing you might try is one of the many login widgets in the WordPress plugin repository. It doesn’t have to be specific to bbPress to work. For example, here’s a tabbed login widget that looks pretty nice.

    #156608
    Doug Smith
    Participant

    I just finished troubleshooting a problem where user profile links would redirect to the site home page. I’m documenting it here in case others run into the same problem.

    It turns out there is a conflict with a feature in the WordPress SEO by Yoast plugin; both in the free and premium versions. There is a “Disable the author archives” setting under “Titles & Metas” –> “Other” that must be unchecked for bbPress profile links to work.

    I have reported the issue to Yoast. They agree that there is a context difference between blog authors and bbPress users that should be accommodated. They have created a GitHub issue for it if anyone wants to follow along or participate.

    #156594
    Robin W
    Moderator

    Several plugins that will do this for you, bbpress stores the entries as 3 custom post types, Forums, Topics, and Replies

    I googled ‘wordpress export custom post to excel’ and got several inc.

    https://wordpress.org/plugins/wp-ultimate-csv-importer/

    https://wordpress.org/plugins/custom-csv-exporter/

    #156572
    Robin W
    Moderator

    easiest way would be to uncode my shortcode

    bbp additional shortcodes

    or just use the do_shortcode function within your code

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

    #156708
    Nicolas Korobochkin
    Participant

    I’m sorry for few days of silence. My love in the USA, and I’m in Russia without the visa.


    @jeffacubed
    thank you for “спасибо”. I can publish the code. Also I can give you access to my private repo on Bitbucket.

    wp_signup_location – it’s the filter which returns the sign up page location (url) and WordPress redirect to this addres. So this address not using in wp-signup.php because you already on the signup page. Your example of grep result shows that this filter using in wp-login.php (this page have the signup link).

    My code
    All of this files a part of my mu-plugins for this project.

    Require necessary files — gist.github.com/korobochkin/06780b88118e35c3bfd1

    wp-signup.php — gist.github.com/korobochkin/9e4f9cd6502c4252d902 I use selena_network_signup_main function from this file on page-signup.php template in child theme.

    wp-activate.php — gist.github.com/korobochkin/765d0a5d4e028dc3001a I use selena_network_activation_page function from this file on page-activate.php template.

    And finally gist.github.com/korobochkin/a161718855b7784bfb10 file which sends notifications after you create an account and disable default WordPress notifications (return false at the end of the function). If you return true at the end of this function then user get 2 emails with different activation links:
    site.com/wp-activate.php?key=HASH
    site.com/activate/?key=HASH

    P. S. can’t post this reply with links (bbPress doesn’t allow post replies with links).

    #156707
    Nicolas Korobochkin
    Participant

    I’m sorry for few days of silence. My love in the USA, and I’m in Russia without the visa.


    @jeffacubed
    thank you for “спасибо”. I can publish the code. Also I can give you access to my private repo on Bitbucket.

    wp_signup_location – it’s the filter which returns the sign up page location (url) and WordPress redirect to this addres. So this address not using in wp-signup.php because you already on the signup page. Your example of grep result shows that this filter using in wp-login.php (this page have the signup link).

    Require necessary files https://gist.github.com/korobochkin/06780b88118e35c3bfd1

    wp-signup.php — https://gist.github.com/korobochkin/9e4f9cd6502c4252d902 I use selena_network_signup_main function from this file on page-signup.php template in child theme.

    wp-activate.php — https://gist.github.com/korobochkin/765d0a5d4e028dc3001a I use selena_network_activation_page function from this file on page-activate.php template.

    And finally https://gist.github.com/korobochkin/a161718855b7784bfb10 file which sends notifications after you create an account and disable default WordPress notifications (return false at the end of the function). If you return true and the end of this function then user get 2 emails with different activation links:
    site.com/wp-activate.php?key=HASH
    site.com/activate/?key=HASH

    #156699
    se7en1216
    Participant

    This page is currently written as just a simple WordPress page with several shortcodes as listed below:

    General Discussions
    
    [bbp-single-forum id=3926]
    
    Guild Discussions
    
    [bbp-single-forum id=3924]
    
    Group Forums
    
    [bbp-single-forum id=10169]

    When changing the Settings to have /forums as the forum root page, it changes all of the above listed shortcodes visually to look like it was just duplicated over and over from the current /forums-root page. It loses all of the current forum IDs and they all turn into a general forum-index.

    This is why I can’t just swap it in the Setting menu for the forums, and the reason I want the current Forum breadcrumb to direct to /forums and not /forums-root.

    If you would like, take a look at the way it looks now, and I’ll switch it after so you can see what it is doing.

    #156696
    Robin W
    Moderator

    I’m sorry but I don’t understand what you mean.

    What shortcodes – where?

    You will need to either provide examples or explain further.

    Sorry, but I am trying to help you, but there are hundreds of ways to set up wordpress/bbpress so need clear issues to resolve eg it looks like this, it needs to look like this

    #156690
    Robin W
    Moderator

    Not sure what you questions is, but maybe the answer is

    https://wordpress.org/plugins/bbp-last-post/

    MLH78
    Participant

    Hi all,

    I need help for programming a little feature for my forum.
    I’m willing to pay some money, after a more detailed discussion of price.
    But this should be somewhat “easy” for a programmer used to bbpress/wordpress, as most code already exists.

    If interested:

    Please, have a look at this page:
    https://www.tradingview.com/widget
    (They supply this for free by the way)

    Look at the top widget/stock chart, and look at the code supplied on the same page underneath the chart.
    Also notice how you can enter the stock-symbol of choice, in the top left corner of the chart, to search in Teamviewers own database, to load a new chart.
    NOTE: This method (from the user interface) does apparently NOT change the “SYMBOL” in the code, as seen on the page above.
    – For the “widget” to show another symbol by default, you’ll have to enter it and click “Apply” on the left side, to update the code with a new default SYMBOL.
    Please try it out, to have a feeling how it works.

    Now my questions:

    Q1:
    Is it possible to embed this script, in the text-area for bbpress, and run its output “live” when a user edits a new post?
    It could be called and embedded into the text area, by clicking a “check-button” labeled “Graf” (‘Chart’ in Danish).
    (And removed again unchecking this button – of course)

    Q2:
    Is it possible for the user, to enter directly on the user interface of the widget, a new symbol, and post it (correct chart) together with the topic?
    It would maybe require that the Post-button would need to update the “SYMBOL”-line in the script code, with the symbol the user have chosen and fetched from Tradingviews database, while also posting it all…Like you would do with an WYSIWYG editor

    I hope I made myself somewhat understandable 🙂

    Thanks in advance !

    Best regards,
    Martin L. Hansen – Denmark.

    #156669
    Robkk
    Moderator

    I believe that wordpress support forums use bbpress, how can I add this “Add New” button to my bbpress forum

    they do , the bbpress standalone version

    suprisingly this button is not in here.

    wordpress.org use a customized version of bbPress just like this site ooes

    you can try something like this

    <?php if ( bbp_is_single_topic() ) : ?>
    
    <?php if ( is_user_logged_in() ) : ?>
    <a class="bbp-new-reply-button" href="#new-post">New Reply</a><li>
    <?php endif; ?>		
    	
    <?php endif; ?>

    place the code in loop-replies.php above the <li class="bbp-header">

    you can style the link like so with some CSS , place wherever you place custom CSS

    .bbp-new-reply-button {
        background:black;
        color:#fff;
        text-transform:uppercase;
        text-decoration:none;
    }
    #156667
    Robkk
    Moderator

    bbPress doesnt render shortcodes

    you will need to use a plugin like this

    https://wordpress.org/plugins/bbpress-do-short-codes/

    Note: by default, only users with the ability to publish bbPress forums will have their short codes parsed. This can be changed by passing a different capability via the pw_bbp_parse_shortcodes_cap filter.

    so by this note keymasters/moderators for sure can post shortcodes.

    #156666
    Robkk
    Moderator

    this plugin does this type of thing but you have to manually configure that part

    https://wordpress.org/plugins/bbpress-go-to-first-unread-post/changelog/

    you would have to copy the bbPress Recent Topics widget edit it/rename it and change where it renders the topic title to gtf_topic_title()

    Robkk
    Moderator

    we´re finding bbpress so incredibly frustrating, no private messages, no way to tell users if x post has unread replies (I mean, really!? how is a user supposed to use it regularly!?)

    sorry about your experience so far, there is alot of unread posts plugins that do unread posts quite differently in each one.

    search google for these.

    bbPress – Pencil Unread
    bbPress Unread Posts
    bbPress New Topics
    bbPress Go To First Unread Post
    bbPress – Mark as Read
    bbPress – Thread Catch-Up

    and as for private messages their are a bunch of WordPress plugins that do that also. 1 for sure is BuddyPress which is made by the same developer as bbPress.

    check out this topic for other examples besides BuddyPress’ private messages feature. https://bbpress.org/forums/topic/private-messages-not-with-buddy-press/

    if you have any other issues with bbPress please make a new topic and the support will try to handle it as soon as possible.

    Altersoundwork
    Participant

    Hi Robk,

    I understand but you know it´s supposed to be pretty much the official wordpress forum solution and it we made the leap from joomla to wordpress and the forum was a main pilar of our site and we´re finding bbpress so incrediby fustrating, no primate messages, no way to tell users if x post has unread replies (I mean, really!? how is a user supposed to use it regularily!?) and it´s just ridicolous, I´m sure bbpress has many good features but… so far it´s just useless to us and we have no special needs, just a conventional, everyday forum with conventional everyday features.

    As for the converter, for whoever finds this post, I found no solution for Kunena 2 converter. Only solution was to update the joomla forum to Kunena 3 and then run the Kunena 3 converter/importer and that seemed to work.

    #156636
    coffeefcy
    Participant

    In bbpress, Video player not showing.
    I tried both Jwplayer & flowplayer and wordpress core player.
    But none of this show the player, just the code.
    but in other page, it works well.
    Would you help me?

    http://www.fcy.me/forums/topic/20-acoustic-rock-lick-01/

    #156631
    siddardha
    Participant

    hello,

    I believe that wordpress support forums use bbpress, how can I add this “Add New” button to my bbpress forum

    http://screenshot.co/#!/25c3f78a68

    suprisingly this button is not in here.

    thank you,
    siddardha.

Viewing 25 results - 8,226 through 8,250 (of 26,874 total)
Skip to toolbar