Search Results for 'test'
-
AuthorSearch Results
-
February 17, 2018 at 5:58 am #190336
In reply to: Remove rel=”nofollow” for admin only?
jameshh93
ParticipantThank you, unfortunately just tested it creating a new users with for both admin and editor roles and posting a reply with a link and the nofollow is still there 🙁
February 16, 2018 at 6:00 pm #190328In reply to: Oh bother! No topics were found here!
Robin W
Moderatorok, I think you should try 3 things
1. reset permalinks – I doubt it is this, but always an easy first thing
Dashboard>settings>permalinks and just click save – this resets them
2. try and run repair
Dashboard>tools>forums>repair forums and run one at a time
3. If those 2 fail, the it may well be an update problem, so I’m afraid you’ll need to try this
Plugins
Deactivate all but bbpress and see if this fixes. if it does, re-enable one at a time to see which is causing the error.
Themes
If plugins don’t pinpoint the problem, as a test switch to a default theme such as twentyfifteen, and see if this fixes.
Then come back
February 16, 2018 at 12:07 pm #190324In reply to: Copy Link in Forum. WP logo inside
Robin W
ModeratorI’ve done some more digging…
Wordpress uses an embed function to do this, which my simple css changes won’t alter
There are 3 ways to overcome this, as pre this blog
https://kinsta.com/knowledgebase/disable-embeds-wordpress/
The first is a plugin, but that is an old one.
I tested
and this worked fine.
February 14, 2018 at 8:57 pm #190281In reply to: bbpress topic problem
kristenkoster
ParticipantHi Robin,
Thanks for your quick response.
I’ve linked three screen shots below to show what’s different from a successful class in January, and the current class (Regency Post) and the one scheduled to start on Saturday (British Officer).
In this first screenshot of a topic posted in January, you can see that everything is showing up as expected:
TOPIC TITLE is followed by breadcrumbs, then the information on voices and freshness.
Then comes the topic container with the columns listed and below that the topic’s datestamp and mod menu, then author’s Gravatar, Name, and the content of the topic posted. Any replies follow the topic content as expected.
https://www.kristenkoster.com/wp-content/uploads/2018/02/Screen-Shot-2018-02-14-at-4.31.10-PM.pngFrom a forum topic posted earlier this week that has replies:
TOPIC TITLE is followed by breadcrumbs, then the information on voices and freshness.
Then the next thing that’s show are the replies that would normally follow the topic content. Notice there is no topic container or mod menu and everything from the original topic post is missing. The topic content IS in the database as I got it in email just fine using the bbPress Notify (No-Spam) plugin which I just added in this afternoon and it’s visible from the admin side when the topic is edited there.
https://www.kristenkoster.com/wp-content/uploads/2018/02/Screen-Shot-2018-02-14-at-4.30.42-PM.pngFrom a forum topic posted earlier today that has no replies:
Again, TOPIC TITLE is followed by breadcrumbs, then the information on voices and freshness.
But since there are no replies there is no topic container or mod menu or any of the topic content and only the reply box shows.
https://www.kristenkoster.com/wp-content/uploads/2018/02/Screen-Shot-2018-02-14-at-4.30.42-PM.pngSo obviously it looks like I’ve managed to zap some lines that pull that information into the generated page, but for the life of me, I don’t know where to start looking to find it to fix it again.
Thanks! -Kristen
February 14, 2018 at 5:27 pm #190271In reply to: No Login on mobile device
Robin W
Moderatorjust tried it using a simulator
and yes it doesn’t appear.
suggest you add it to the main menu
lots of plugins that will do this eg
February 14, 2018 at 9:10 am #190258In reply to: Remove rel=”nofollow” for admin only?
Robin W
Moderatorthe no follow is added at output, not on saving.
so we need to see if the topic/reply is written by an admin or editor and then remove the filter that does the no-follow
This coded is untested, but should work
add_filter ('bbp_get_topic_content' , 'follow_topic_if_admin' , 10 , 2) ; function follow_topic_if_admin ($content, $topic_id) { $user_id = bbp_get_topic_author_id( $topic_id ) ; $user_meta=get_userdata($user_id); $user_roles=$user_meta->roles; $allowed_roles = array('editor', 'administrator'); if( array_intersect($allowed_roles, $user_roles ) ) { remove_filter( 'bbp_get_topic_content', 'bbp_rel_nofollow', 50 ); } return apply_filters( 'follow_topic_if_admin', $content, $topic_id ); } add_filter ('bbp_get_reply_content' , 'follow_reply_if_admin' , 10 , 2) ; function follow_reply_if_admin ($content, $reply_id) { $user_id = bbp_get_reply_author_id( $reply_id ) ; $user_meta=get_userdata($user_id); $user_roles=$user_meta->roles; $allowed_roles = array('editor', 'administrator'); if( array_intersect($allowed_roles, $user_roles ) ) { remove_filter( 'bbp_get_reply_content', 'bbp_rel_nofollow', 50 ); } return apply_filters( 'follow_reply_if_admin', $content, $reply_id ); }
Add this to your functions file.
Let me know if it works
February 14, 2018 at 1:31 am #190254In reply to: No option to create groups
Mike George
ParticipantThanks Robin, that didn’t work but at least I can set the option manually for each new user. I’ll try deactivating other plugins to see if there’s a conflict. There’s a message on the plugin to say it hasn’t been tested with the current version of WordPress so maybe there’s an issue there. I’ll check the support forum for the toolkit.
February 13, 2018 at 5:37 pm #190249Robin W
Moderator1.404 issue
The link looks good, suggest you try
Plugins
Deactivate all but bbpress and see if this fixes. if it does, re-enable one at a time to see which is causing the error.
Themes
If plugins don’t pinpoint the problem, as a test switch to a default theme such as twentyfifteen, and see if this fixes.
Then come back
2.
I would like to run the bbpress forums without BuddyPress, if possible. Is there a solution to this issue?
yes bbpress runs quite happily on its own – my bbpress sites run without buddypress.
3.
An engaging business community giving credit to people who take the time to submit comprehensive organizational case studies
beyond ‘support desk’ help I’m afraid – it is do-able but lots and lots of bespoke coding needed (The site is not a bbpress one) . My style pack would help in getting a nicer look
February 13, 2018 at 10:47 am #190242In reply to: Visual pbs ?
matevoun
Participant1/ If i deactivate this plugin, i can’t upload new media.
I’m doing differently, i posting via then Control Panel / Topics / New topic.
But i don”t know how other people on our forum can upload new media without this plugin.2/ OKI ! Nice !
I’ve doing it also for loop-single-topic.php, in lines 60 & 98.
I’m testing with 20 for the size.3/ Thank you. 🙂
4/ Is it difficult to explain you here, because, we can’t upload on this forum. But i’ve pushed via my mobile on my website for you :
There is few space for text and the topic is not easy to read on mobile.
As you can see on the second one, my avatar is also a little strange in responsive mode… 🙁5/ I have no a new question also (number five ;)) :
I can’t find the “fil d’ariane” (Breadcrumb ?) on the top of my forum.
I’ve the SEO plugin installed.
Any idea ?February 12, 2018 at 2:59 pm #190211In reply to: register problem
Robin W
ModeratorIt could be a theme or plugin issue
Plugins
Deactivate all but bbpress and see if this fixes. if it does, re-enable one at a time to see which is causing the error.
Themes
If plugins don’t pinpoint the problem, as a test switch to a default theme such as twentyfifteen, and see if this fixes.
Then come back
February 12, 2018 at 12:59 pm #190198In reply to: Visual pbs ?
Robin W
ModeratorFrom @matevoun
Then, now :
1/ I think this is because i’ve installed bbPress Enable TinyMCE Visual Tab plugin, but i need this for uploading new media… 🙁
2/ Yes, tell me what can i do… 🙂
3/ Done ! Thank you ! I’ve installed your plugin. 😉
4/ I think this is a too little for texte + avatar.
How can i do now ?
Hope to read you soon…
1. As a test deactivate that plugin and see if it works without. If so re-enable and contact that plugins author
2. for the forum list
create a directory on your theme called ‘bbpress’
ie wp-content/themes/%your-theme-name%/bbpresswhere %your-theme-name% is the name of your theme
find
wp-content/plugins/bbpress/templates/default/bbpress/loop-single-forum.php
Make a copy of this file, and put in in the directory called bbpress that you created above, so you end up with
wp-content/themes/%your-theme-name%/bbpress/loop-single-forum.php
bbPress will now use this template instead of the original
and you can amend thisso change line 68
<span class="bbp-topic-freshness-author"><?php bbp_author_link( array( 'post_id' => bbp_get_forum_last_active_id(), 'size' => 14 ) ); ?></span>
amend 14 to whatever size you want
3. glad you like it
4. without knowing exactly what you want, I cannot suggest css changes – I suspect we will not fix this one
February 12, 2018 at 8:03 am #190192In reply to: Specified key was too long; max key length is 1000
TiiuK
ParticipantThanks guys, I had the latest bbPress installed but my converter.php looked different so now I am using the converter.php file which Stephen posted and did not do any change to it. Then I tried the phpBB3 import again but know I am stuck at “Starting conversion” … it just won’t stop and there is no error message. How can I finally get this to work?
February 11, 2018 at 11:46 pm #190175In reply to: Help need migrating/updating from bbPress v2.0
krioteh
ParticipantSorry, English is not my native language, I can distort phrases. I’ll try differently:
After importing a new site in …wp-admin/edit.php?post_type=topic and wp-admin/edit.php?post_type=reply is there anything?
Perhaps the topic and answer did not receive the correct post_type when importingYou can try to update the old site.
You can backup the database (in order to roll back in case of something), then:
Disable all plugins.
Update WordPress (if you can not get to the latest version, then you can add intermediate ones – they are available at https://wordpress.org/download/release-archive/)
After updating WordPress update bbPress.P.S.Your links require authentication 🙂
February 9, 2018 at 1:54 pm #190128Topic: Vbulletin to BBpress conversion in Stages
in forum Installation6piston
ParticipantHi BBpress people!
Okay, it’s taken me days to go through with the conversion between vbulletin and bbpress. Until now, I have yet to see my complete forums in bbpress. The process stops eventually every time I restart.
180K Threads
4.2m Post
170 UsersWhat I have done is:
– copied the vbulletin site to vbulletincopy
– prune it down to 100K post (replies)
– start the conversion
– it’s taken me 8hrs and i’ve only got 18,000 replies converted.Question 1:
How else can I do this conversion? I really want to get bbpress working.
Can I try this?:
– copy 4 or 5 copies of vbulletin db
– prune posts according to date (eg: 2018 – 2015 / 2015 – 2014)
– go through the conversion again with every “batch” and let it overwrite somehow?Question 2:
How can I copy it in stages and let the forums operate with the latest data and I can overwrite with more old threads later?Thanks!
February 9, 2018 at 12:16 pm #190126In reply to: Specific Moderator per forum?
krioteh
ParticipantI’m testing version 2.6rc5 – everything works, moderators are added.
You need to enter: “user1, user2, user3”They do not have access to the backend (this is superfluous …).
All actions with topics and answers (moving, splitting, merging, approval, etc.) are available from the frontend.
February 9, 2018 at 9:50 am #190107In reply to: How to hide from public
streng
ParticipantThanks, but it work only if text between code is on one row. If someune post log test separated by rows, then didnt work properly.
Any idea how to fix ?February 9, 2018 at 5:00 am #190033In reply to: Can’t see BBPress in my WordPress Menu
Robin W
ModeratorIt could be a theme or plugin issue
Plugins
Deactivate all but bbpress and see if this fixes. if it does, re-enable one at a time to see which is causing the error.
Themes
If plugins don’t pinpoint the problem, as a test switch to a default theme such as twentyfifteen, and see if this fixes.
Then come back
February 8, 2018 at 6:15 pm #190019In reply to: Forums won’t display on site
Robin W
ModeratorIt could be a theme or plugin issue
Plugins
Deactivate all but bbpress and see if this fixes. if it does, re-enable one at a time to see which is causing the error.
Themes
If plugins don’t pinpoint the problem, as a test switch to a default theme such as twentyfifteen, and see if this fixes.
Then come back
February 8, 2018 at 1:15 pm #190011In reply to: I can’t edit new posts anymore
Robin W
ModeratorI suspect an update has caused a conflict
It could be a theme or plugin issue
Plugins
Deactivate all but bbpress and see if this fixes. if it does, re-enable one at a time to see which is causing the error.
Themes
If plugins don’t pinpoint the problem, as a test switch to a default theme such as twentyfifteen, and see if this fixes.
Then come back
February 5, 2018 at 10:29 pm #189927AdventureRidingNZ
ParticipantThe “bbpress topics for posts” plugin does still work, I use it extensively on my site and have done for over 3 years.
I’m currently running WP 4.9.2 and whatever the latest version of BBPress is in Prod and in test I’ve just installed WP 4.9.3 and it’s looking ok under that as well.
One thing that does need doing for the plugin is to bring it up to PHP7.x compatibility.
February 5, 2018 at 8:17 am #189917In reply to: displayed outside of post
brent0r
ParticipantAnother test post.
- vcxvxc
vcxxvvxcvcx
- vvcxv
February 4, 2018 at 1:12 pm #189894In reply to: Topics not found, only sticky topics show
Robin W
ModeratorFebruary 4, 2018 at 12:13 pm #189893In reply to: Topics not found, only sticky topics show
jkw217
ParticipantI imported forums and that went fine.
I imported topics and they do not show in any forums. I re-save topics and they show up in forums. But having to save over 1,400 topics is a problem.
I have not yet imported replies but based on other people’s problems this is also going to be an issue. I cannot re-save over 15,000 replies to have them show up in topics.
This is using the WordPress built in export and import.
I have tried disabling all plugins except bbpress. I have tried saving permalinks. Nothing has worked.
I have tried the latest bbpress version, I have tried the RC version and I have tried the beta version. All with the same results.
February 2, 2018 at 6:55 pm #189865In reply to: Cannot See Forum Replies.
Robin W
Moderatorsuspect it an update conflict
It could be a theme or plugin issue
Plugins
Deactivate all but bbpress and see if this fixes. if it does, re-enable one at a time to see which is causing the error.
Themes
If plugins don’t pinpoint the problem, as a test switch to a default theme such as twentyfifteen, and see if this fixes.
Then come back
February 1, 2018 at 4:58 pm #189832In reply to: I need to hire someone to import Invision to bbpress
Pascal Casier
Moderator@adchix Did you try to import in bbPress v2.6 ? The import procedure have been reviewed so you might have more luck.
Try to install v2.6 from https://bbpress.org/download/ in a test environment.
Pascal. - vcxvxc
-
AuthorSearch Results