Skip to:
Content
Pages
Categories
Search
Top
Bottom

Search Results for 'test'

Viewing 25 results - 4,776 through 4,800 (of 11,591 total)
  • Author
    Search Results
  • #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

    #145595
    Robin W
    Moderator

    I have no idea of this plugin works if you are using buddypress (it does with bbpress) but might be worth a quick test – let us know either way !

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

    #145560
    Nomi
    Participant

    Thanks for your reply. Its working now without turning off.

    I am not sure but I think Theme test drive plugin was creating issue.

    #145556

    In reply to: bbcode

    ww_hoax
    Participant

    See my test:

    <a href="https://www.dropbox.com/s/kkeoj8bqrs0jok5/Topic.png" title="bbcode" target="_blank"></a>
    nothing appears

    bbcode

    #145500
    tharsheblows
    Participant

    Ah ha – and hmm, would it still pick up the rest of the defaults, eg img and blockquote and those? The correct answer to this question is “You have a test install, play with it and figure it out yourself.” so I will. Later.

    I know what you mean about the amount that can be learned in 12 months. 12 months I was trying and trying to convince a client that they didn’t want a forum! Of course, that was for reasons other than development but it has turned out very well – cheap and easy (ok maybe not cheap and maybe not super simple when you count in moderation and user issues and all that) but an excellent way to get constantly updated content.

    #145496
    Chad
    Participant

    Ok… so I’ve been working on this all day. I installed BuddyPress, then I installed bbPress. The only other plugin installed at the time was Jetpack. I’m using Thememakers Blessing Theme on WP 3.8.3 and the latest BuddyPress and bbPress plugins.

    However, I went to create a new user (participant) and noticed that none of the new roles usually created when installing bbPress were there. I still only have the standard roles created when WP is installed.

    Here are the steps I’ve taken. I uninstalled all other active plugins. I uninstalled BuddyPress and bbPress. (completely deleted) I changed themes to a more generic theme (TwentyThirteen). So I was basically back to a fresh install of WordPress. I’m working on a new site that is not live yet so no big deal.

    I went and re-installed bbPress and still nothing. No new roles. No Keymaster, no participant… nothing. I’ve been searching for quite a while and I can’t find that anyone else has had this issue.

    Does anyone have any thoughts? Thanks.

    #145492
    mlocke90
    Participant

    I’ve tried everything you said. Deactivated everything but bbpress, switched to twentytwelve and did it all again on my localhost test area.

    Any other ideas on what may be causing this? Or any other way of making private topics inside a public forum?

    #145489
    carterlongbeach
    Participant

    Thanks for the code! I just modified it by commenting out the add user contacts section and using the Register Plus Redux field (which requires users to pick a school upon registration).

    I then added code to echo a hyperlink. For each new school I will add new hyperlink code. So far it seems to be working!

    function clb_school_replies_author() {
     
    echo get_user_meta(bbp_get_reply_author_id(), 'rpr_testfield', true); 
    
    if (get_user_meta(bbp_get_reply_author_id(), 'rpr_testfield', true) == 'school1')  
    echo nl2br ("\n<a href=http://www.school1.edu target=_blank>School 1 Web Page</a>");
    
    if (get_user_meta(bbp_get_reply_author_id(), 'rpr_testfield', true) == 'school2')  
    echo nl2br ("\n<a href=http://www.school2.edu target=_blank>School 2 Web Page</a>");
    
    #145486

    In reply to: New replies first

    Robin W
    Moderator

    @slprof

    If you want to try just the latest reply, then try

    function change_reply_order() {
    $args['order'] = 'DESC';
    $args['posts_per_page'] = '1';
    return $args;
    }
    add_filter('bbp_before_has_replies_parse_args', 'change_reply_order');
    

    But I suspect it will have some weird effects on the site, and of course you’ll never see anything but the latest post, so if pupil a posts and a minute laters pupil b, then you’ll never see pupil a’s.

    or do you mean that for each topic, pupil a would be pupil a’s reply, pupil b would see pupils b’s reply etc.?

    #145485

    In reply to: New replies first

    Robin W
    Moderator

    @slprof

    Try putting this in your functions file

    function change_reply_order() {
    $args['order'] = 'DESC';
     return $args;
    }
    add_filter('bbp_before_has_replies_parse_args', 'change_reply_order');
    

    I haven’t tested, so come back if it doesn’t work, it should do topic then replies with latest at top

    #145457

    In reply to: New replies first

    slprof
    Participant

    Yes. I need this also. I would like:

    Initial post
    – reply 3
    – reply 2
    – reply 1

    Maybe there’s a better way for me to do this. I post topics like “Write a journal entry” — I’m an English teacher. I don’t want to have to scroll down forever or page over. I want the latest reply by the student minus the other student’s comments to show up. Now THAT would be cool. Hm. I should post this elsewhere but I think it’s kinda related to blg002’s post.

    #145429
    Stephen Edgar
    Keymaster

    @jakoblanglois has it right, to fix the last issue he describes when just need to modify the breadcrumbs behaviour a bit…

    Uncheck the ‘Forum Prefix – Prefix all forum content with the Forum Root slug (Recommended)’ in bbPress settings and then the last bit…

    Upon further testing, I noticed that this will not edit the breadcrumbs and will show Home > Forums (linking to domain.com/forums).

    Tweak the settings of the breadcrumb using some custom arguments, this is based on the code here though what I have below just removes the ‘forums root’ from the breadcrumb…

    
    <?php
    /*
    Plugin Name: bbPress - Custom Breadcrumbs
    Plugin URI: https://gist.github.com/ntwb/7781901
    Description: bbPress - Custom Breadcrumbs
    Version: 0.1
    Author: Stephen Edgar - Netweb
    Author URI: http://netweb.com.au
    */
    
    add_filter('bbp_before_get_breadcrumb_parse_args', 'ntwb_bbpress_custom_breadcrumb' );
    
    function ntwb_bbpress_custom_breadcrumb() {
    
    	// Forum root
    	$args['include_root']    = false;
    
    	return $args;
    }
    

    Copy the above into a file named ntwb_bbpress_custom_breadcrumb.php in your plugins folder 🙂

    #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…

    #145418
    carterlongbeach
    Participant

    I don’t know if it is the most efficient solution, but I found something that works.

    I created a new profile field with Register Plus Redux (new field called rpr_testfield).

    I then modified bbp profile information with the following code, starting on line 26…

    $usermeta = get_userdata( $user_id, 'rpr_testfield' );
    echo $usermeta->rpr_testfield;
    if ($usermeta->rpr_testfield == 'school name from profile')  
    echo "<a href="http://www.hyperlink?pID=19" target="_blank">School web page</a>";

    Now all posts include the name of the user’s school with a hyperlink to the school webpage.

    #145371
    Stephen Edgar
    Keymaster

    Here is a custom plugin for custom KSES, specifically it adds support for tables and class names for a and img though you most likely don’t want people adding classes to these normally.

    https://gist.github.com/ntwb/7797990

    And I am glad your up and running now @matoca, TinyMCE v4 is a big upgrade and as you point out there are vast improvements and vast breakages with existing plugins, hopefully the authors of these plugins will get this sorted soon.

    I also look forward to seeing and checking out a few of the plugins that really take advantage of TinyMCE 4 as I have already spent a fair amount of time testing it already, specificly pasting from Word, Excel PDF etc and it is pretty awesome what you can throw at it.

    #145364
    Matoca
    Participant

    Update. Monday I asked my iPad, iPhone moderator to see if she could get a keyboard to come up, see what she was typing and actually post to the forum. She reported that it was working perfectly! No kidding! So after the WordPress 3.9 upgrade, the tinyMCE 4 upgrade has improved interaction with iPads and iPhones.

    See: http://www.tinymce.com/index.php
    Also: tinyMCE 4 has a presentation that explains what is different.
    http://www.tinymce.com/presentation/index.html#/

    I did a little research about tinyMCE because honestly it sounds like the name of a toy. So once I found the name, Tiny Moxiecode Content Editor, it made more sense to me. Wikipedia describes it as “platform-independent web-based JavaScript/HTML WYSIWYG editor control.” So, in a sense, this is the core element of WordPress (and other CMS platforms), giving the user the ability to get content on the blog without having to necessarily understand anything about HTML.

    After browsing some forums I better understand that this upgrade of WP and tinyMCE has rendered many previous plugins dead in the water. It means that users need to do some serious spring cleaning and get rid of any plugins that have not been specifically updated for use with WP 3.9.

    A lot of plugins have necessarily cropped up over time to add back lost functionality in tinyMCE as functions were removed. So the bbPress plugin I was using in the past that added back the visual tab to the forum message field was just one of many. Luckily I did disable it prior to the release of 3.9 but it clearly was already unstable with 3.8.

    I made a mistake when I posted earlier, enabling the tools in the dashboard does give them to everyone who is not registered or logged in, not just those logged in as moderators. So I have rethought having the text editor tools on the open forum. I don’t like the ability of non-registered posters to add images directly nor do I like them adding links. These people don’t register so I have removed all editing tools from the forum in forum>settings. I have asked moderators to use the tools in the dashboard for adding images and links. Perhaps there will be a plugin in the future that will allow moderators with administrator rights to have these tools directly in the forum, but not have them accessible to the general public?

    So if you do want your moderators to have undo, redo, add link, remove link and insert/edit image in the forum then enable this in forum>settings, it standard with tinyMCE 4, and looks exactly as it does on this forum

    I became interested in more functionality and I installed TinyMCE Advanced plugin this afternoon to play with. I realized the many things I could do just with tables! So it’s a versatile plugin and they claim has been tested with 3.9.
    my best, matoca

    ryanric
    Participant

    Hello Forum,
    My bbPress forum is displaying all of the replies instead of showing just a few replies per page.

    WHAT I WANT: I’m trying to set up a single-topic forum on my website on this page (http://learn.serve-smart.com/topic/the-secret-to-service-reflection-learner/). Right now I’m using this short code: [bbp-single-topic id=2073]. I want users to get a prompt, see the responses of three or so other users, and respond to the prompt themselves.

    WHAT IS HAPPENING NOW: The page is displaying every single reply to the topic on a single page. This is despite changing the bbPress settings to “3” for “Topics per page” and “Replies per page” under the “Topics and Replies Per Page” and Topics and Replies Per RSS Page.”

    WHAT I’M RUNNING:
    Database: Latest WP
    Theme: WP-Forge
    Key Plugins: Latest bbPress plugin, Latest LearnDash plugin

    Thanks in advance for your help!
    -Ryan

    #145355

    In reply to: SMF Import to bbPress

    landshark
    Participant

    I’m having some issues converting an SMF forum to BBPress. The SMF forum has about 7,500 members, 7000+ topics and 45,000+ replies.

    It seems the links to images are not being imported, my guess it is a problem with the [img] bbcode? But not sure.
    I understand that I won’t be able to get attached images imported but i would think that linked images would not be a problem.

    Also some of the posts are being truncated. I might get the first sentence but the rest is dropped. But not on all of them.

    I tired slowing the import down to 50 items at a time with a 2 second pause but still same results.

    I’m on a dedicated server. Latest bbpress version, and SMF version is 2.0.4

    Any help will be greatly appreciated.

    #145300
    Robin W
    Moderator

    ok I would suspect that it’s related to this plugin, you could prove this by deactivating the plugin on your test site (or live site briefly if you don’t have a test site)

    As this is a paid plugin, you should then contact them for support.

    come back and let us know what they say.

    #145286

    In reply to: Theme problem

    chetan0412
    Participant

    I looked at this when you first posted and you were working on it so I came back to it before I went to bed and it was all working correctly – now it’s not, of course. – Right at that time my server was using old hosting and my name server was not updated thts y at that time it was showing correctly, after some time it was updated and got the issue.

    There is something that is causing your css and js directory paths to be incorrect. Your files are there but it’s getting confused about where “there” is. – Right, Need to check, or i ll ask to my hosting service provider to check with firewall.

    I know it’s frustrating (I’d be frustrated at any rate) but maybe go back and disable all plugins and then make sure you’ve cleared your browser’s cache completely using eg Chrome->Tools->Clear browsing data to test.- Did same thing but no luck.

    #145284

    In reply to: Theme problem

    tharsheblows
    Participant

    I looked at this when you first posted and you were working on it so I came back to it before I went to bed and it was all working correctly – now it’s not, of course.

    There is something that is causing your css and js directory paths to be incorrect. Your files are there but it’s getting confused about where “there” is.

    I know it’s frustrating (I’d be frustrated at any rate) but maybe go back and disable all plugins and then make sure you’ve cleared your browser’s cache completely using eg Chrome->Tools->Clear browsing data to test.

    #145232
    Matoca
    Participant

    I was using a specific bbPress tinyMCE plugin, but I disabled that over a week ago when you mentioned that there may be some issues with it. Was it successful? I don’t know, you can read my moderator’s varied results above. When I had originally added the plugin it was specifically so moderators could edit photo size in the forum and not have to go into the dashboard to do that. I still ask my moderators to always be logged in when they are posting. If it is as simple as asking my moderator with the iphone issues to not log in when she needs to post replies or start topics, that is what we will do.

    The latest upgrade WP 3.9 has ver 4.0 tinyMCS in it. See:

    TinyMCE 4.0 is in core

    So, rather than confuse my troubleshooting, I have no tinyMCE plugins installed. Whatever tinyMCE capabilities 3.9 has is what I now have.

    When I am logged in, on the text tab there are the standards plus insert/edit link, url img, code and close tags, the same as we are seeing on this forum.

    On the visual tab, logged in, in addition to the standards there is undo, redo, add link, remove link and insert/edit image. Perfect, exactly what I wanted for the moderators.

    When I am not logged in there are only the standard fields for name, email and website and add message. There are no text or visual tabs. I have the Nextgen gallery plugin for Upload Photos so that solves the issue of users wanting to post photos. They go directly into a specific gallery and I get an email telling me that something has been uploaded and needs approving.

    I have Post Formatting in the forum tools settings unchecked for “Add toolbar & buttons to text areas to help with HTML formatting.” So that is probably why they are not allowed to have visual or text tabs. I do not require registration for posting. If I have trouble with someone I can put their IP on a blacklist. Akismet works well.

    But it’s only been a couple of days since I upgraded to 3.9. The developer of the theme I am using has notified me that he is also reworking his theme so that may change things as well.

    Once my moderator gets back in touch with me I will post here. Perhaps this WP upgrade has solved the problems with iPhone and iPad?
    my best, matoca

    #145201
    bustel
    Participant

    It works for the topics but not for the replies, I don’t know why it doesn’t work…

    I have tested with
    1)
    $uri = ( '/?edit=1' );
    in the topic: http://www.mysite.com/?edit=1
    it isn’t correct
    it go to the home of the site, that’s it.

    2)
    $uri = bbp_get_reply_edit_url( $r['id'] ) . '?edit=1';
    in the topic: http://www.mysite.com/map/map/1827/edit/?edit=1
    and it isn’t correct eather…
    it says: The page you requested could not be found.

    #145173
    bustel
    Participant

    So you have to edit 2 files:
    1) wp-content/plugins/bbpress/includes/topics/template.php
    2) wp-content/plugins/bbpress/includes/replies/template.php

    normally it should work, i have tested and it’s working fine for me… maybe the newer version should be adapted with these new functions?

    #145164
    leopolds
    Participant

    Hi,

    I am using the latest WordPress (Twenty Fourteen theme) and bbPress.

    There is a problem with my forums root page. Besides the regular forum listing section, all forums are also listed like posts below the regular section.

    How can I fix it? Thanks

Viewing 25 results - 4,776 through 4,800 (of 11,591 total)
Skip to toolbar