Search Results for 'test'
-
AuthorSearch Results
-
April 27, 2014 at 6:49 am #145560
Nomi
ParticipantThanks for your reply. Its working now without turning off.
I am not sure but I think Theme test drive plugin was creating issue.
ww_hoax
ParticipantApril 25, 2014 at 8:44 pm #145500In reply to: Moderator Unable To Post To Forum: iPhone iPad
tharsheblows
ParticipantAh 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.
April 25, 2014 at 7:11 pm #145496Topic: User Roles not showing
in forum TroubleshootingChad
ParticipantOk… 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.
April 25, 2014 at 3:24 pm #145492In reply to: Problems marking topic as private?
mlocke90
ParticipantI’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?
April 25, 2014 at 12:56 pm #145489In reply to: add custom profile field or group as signature?
carterlongbeach
ParticipantThanks 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>");April 25, 2014 at 12:46 pm #145486In reply to: New replies first
Robin W
ModeratorIf 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.?
April 25, 2014 at 12:40 pm #145485In reply to: New replies first
Robin W
ModeratorTry 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
April 25, 2014 at 4:50 am #145457In reply to: New replies first
slprof
ParticipantYes. I need this also. I would like:
Initial post
– reply 3
– reply 2
– reply 1Maybe 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.
April 24, 2014 at 6:14 am #145429In reply to: Installing in the root directory?
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.phpin your plugins folder 🙂April 24, 2014 at 5:50 am #145428In reply to: Installing in the root directory?
Jakob Langlois
ParticipantIf 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…
April 23, 2014 at 11:06 pm #145418In reply to: add custom profile field or group as signature?
carterlongbeach
ParticipantI 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.
April 23, 2014 at 2:34 am #145371In reply to: Moderator Unable To Post To Forum: iPhone iPad
Stephen Edgar
KeymasterHere is a custom plugin for custom KSES, specifically it adds support for tables and class names for
aandimgthough 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.
April 22, 2014 at 9:54 pm #145364In reply to: Moderator Unable To Post To Forum: iPhone iPad
Matoca
ParticipantUpdate. 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, matocaApril 22, 2014 at 7:16 pm #145359Topic: Limit Number of Topics and Replies per Page and RSS
in forum Troubleshootingryanric
ParticipantHello 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 pluginThanks in advance for your help!
-RyanApril 22, 2014 at 4:07 pm #145355In reply to: SMF Import to bbPress
landshark
ParticipantI’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.
April 21, 2014 at 12:55 pm #145300In reply to: Participants can't see the Q, only the A…?
Robin W
Moderatorok 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.
April 21, 2014 at 9:31 am #145286In reply to: Theme problem
chetan0412
ParticipantI 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.
April 21, 2014 at 9:25 am #145284In reply to: Theme problem
tharsheblows
ParticipantI 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.
April 19, 2014 at 5:00 pm #145232In reply to: Moderator Unable To Post To Forum: iPhone iPad
Matoca
ParticipantI 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:
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, matocaApril 18, 2014 at 2:02 pm #145201In reply to: edit on the Front-end doesn't work anymore
bustel
ParticipantIt 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.April 17, 2014 at 3:57 pm #145173In reply to: edit on the Front-end doesn't work anymore
bustel
ParticipantSo you have to edit 2 files:
1) wp-content/plugins/bbpress/includes/topics/template.php
2) wp-content/plugins/bbpress/includes/replies/template.phpnormally it should work, i have tested and it’s working fine for me… maybe the newer version should be adapted with these new functions?
April 17, 2014 at 1:02 pm #145164Topic: Forums Root page
in forum Troubleshootingleopolds
ParticipantHi,
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
April 17, 2014 at 9:32 am #145160In reply to: creating a child-theme
Sascha.H
ParticipantWell the problem isnt that i cant install it. Actually i had installed both plugins but i dont want to rewrite the plugin code because when the plugins will be updated my code will be overwrited thats why i want a child-theme but i dont know which parts from the plugin in which folder.
1. Thank you
2. The Problem is the basic URL is http://www.myurl.de/forums/forum/test and when i disable the thickbox its http://www.myurl.de/forum/test. But i want zero tags before. And when i delete the forum field and save than it appears again.April 17, 2014 at 9:00 am #145157foxden-vixen
BlockedThe site is back up today and I tested it out. It did not work the way you wrote the code.
.forum-archive DIV.sidebar.right, .bbpress .single-forum DIV.sidebar.right, .bbpress .single-topic DIV.sidebar.right { display: none !important; }should be
.forum-archive DIV.sidebar.right, .bbpress.single-forum DIV.sidebar.right, .bbpress.single-topic DIV.sidebar.right { display: none !important; }Just taking out the spaces between bbpress and single worked. The syntax was incorrect.
One other stupid question…at the bottom of the main page, which I guess now is called the archive page, there is the “read more” tag. How do I get rid of that? Doesn’t that have to do with the loop?
-
AuthorSearch Results
