Search Results for '"wordpress"'
-
AuthorSearch Results
-
May 12, 2022 at 6:36 am #229238
Topic: Search results only showing correctly on first page
in forum Troubleshootingdeborahdavidson
ParticipantWhen logged into our forums and using the search function, if there are say 130 results, 15 show correctly on the first page but when you click onto the second page it looks like a blank page but if you scroll down the page header is there (although the format is corrupted) and then the rest of the results show below this. This is the same for the subsequent pages but if you click to go back to the first page of results, it then shows correctly again. I haven’t edited the site recently, so this is a bit out of the blue.
Many thanks!
WordPress Version: 5.9.3
bbPress version: 2.6.9May 10, 2022 at 12:22 pm #229198Robin W
Moderatorsorry, this support forum is for bbpress issues, your query refers to wordpress registration login, which bbpress just uses, but is not involved in
May 10, 2022 at 11:28 am #229196goudenspeler
ParticipantThe page https://commitproject.eu/wp-login.php?checkemail=registered
Is not showing any message after a new user registration. The registration works fine just the message is not showing.
Robin W
ModeratorI can only suggest
it could be a theme or plugin issue
Themes
As a test switch to a default theme such as twentytwenty, and see if this fixes.
Plugins
If that doesn’t work, also deactivate all plugins apart from bbpress and see if this fixes. if it does, re-enable one at a time to see which is causing the error.
If you cannot do this to your site (say because it is live) then use the ‘troubleshooting’ features of this plugin to let you test without affecting other users
Then come back
May 7, 2022 at 1:43 pm #229129In reply to: not receiving subscriptions or notices.
Robin W
Moderatoras first step
then maybe amend sending email address which can be the culprit
dashboard>settings>bbp style pack>Subscription Emails
May 7, 2022 at 12:49 pm #229126In reply to: Trashing/Deleting Topics
Robin W
Moderatorthanks for that – it all helps me decide what route to go.
So wordpress has several states, these include draft, publish and trash. You can then permanently delete – this gets rid of them from the database, which makes it faster for lookups. Given the power of servers nowadays, many sites will have no problem with a significant database, so permanently deleting may not speed up your site, but is cleaner if you are sure you never want them back.
However your post does give a further alternate that I was not imtending, but might be your solution. If you create a ‘hidden’ forum, then this is only visible to moderators and keymasters. So instead of using a plugin that I write, you could simply move topics into that hidden forum
so
dashboard>forums>add forum> call it what you like but in forum attributes (top right) and set visibility to hidden
then for each topic
dashboard>topics>all topics>edit topic>topic attributes (top right) and just change the forum it belongs to to the new hidden one.
May 7, 2022 at 10:41 am #229116In reply to: Trashing/Deleting Topics
Robin W
ModeratorAll – let me just clarify that I’m just a guy sat in his kitchen who helps out here, I am not a bbpress author !!
@craigcotner & @iqfy- trashing topics or replies calls a standard WordPress function which checks for comments and media on each post before trashing. This involves a database lookup to check whether anything in those tables needs deleting and it is this that seems to be taking the time and making you both time out. Topics and replies don’t have comments or media that is attached in that way, so these steps are not needed.Now trashing a reply is fairly easy, replies don’t hold any data that needs referencing elsewhere that we need to worry about.
But Topics have engagements and subscriptions to be gone through.
so if I wrote some code to allow you to delete a numbered topic, this could use a quicker method to permanently delete all the replies, and then use the proper function to delete the topic.
And as long as the topic or reply it is not latest activity, then we can maybe skip the step that needs to recalculate what the lastest activity now needs to be.
That should prevent timeouts I hope.
SO 2 things here
1. any topic/reply being got rid of should not be the ‘latest activity’ in the forum – but I’m guessing if the topic is still getting replies and therefore ‘hot’ then you would not be deleting it
2. this would be deleting it a numbered topic at a time, so you would look up the topic and then in the dashboard there would be an option to enter that topic number to trash it.Does that sound as if it would work for you?
@jimmyt53 – not sure how easily I’d be able to fix that, but I’ll think about it as I progress. so1. how would you want to pick topics for deletion – by ‘older than’ presumably? and
2. just from one forum or across all forums?
3. again could not be a topic or reply where it is latest activityFeedback before I start code something that doesn’t help would be great ๐
and from all – are we talking about permanently deleting – ie reduce database size, or just trashing – ie stopping people seeing, but retaining the ability to restore later?
May 5, 2022 at 1:22 pm #229088In reply to: Blank topic pages while using TwentyTwentyTwo theme.
Steveorevo
ParticipantEven simpler; add this one line to twenty twenty twoโs index.php file; this will preserve the themeโs menus, header, etc. and tell WordPress to use 2022โs template engine:
include ABSPATH . WPINC . '/template-canvas.php';
Or, to prevent losing changes when/if 2022 updates; use this hook in your own functions/plugin/child:
add_filter( 'template_include', function( $template ) { if ( false !== strpos($template, 'twentytwentytwo/index.php') ) { $template = ABSPATH . WPINC . '/template-canvas.php'; } return $template; });
May 5, 2022 at 12:27 pm #229086Robin W
Moderatoryour theme or another plugin might be affecting my template loading
if you want to check this:
Themes
As a test switch to a default theme such as twentytwenty, and see if this fixes.
Plugins
If that doesn’t work, also deactivate all plugins apart from bbpress and see if this fixes. if it does, re-enable one at a time to see which is causing the error.
If you cannot do this to your site (say because it is live) then use the ‘troubleshooting’ features of this plugin to let you test without affecting other users
Then come back
May 5, 2022 at 12:24 pm #229085In reply to: Why are the image uploads so small?
Robin W
Moderatorthanks.
wordpress.org are the people behind WordPress – it is just the WordPress product.
Wordpress.com is the hosting company that WordPress has that allows you to have a website with WordPress.
There are many hosting companies – virtually all of whom let you have WordPress as a product on your website.
As far as I know it is wordpress.com who insist on the site having Jetpack, but since I have never lodged a site there, I have no idea if they let you change the settings.
https://santarosaphotographicsociety.org is listed as using wordpress.com on https://sitechecker.pro/hosting-checker/
your site https://steveruddyphotography.com/ is listed as hosted by InMotion Hosting, Inc.
so I suspect you actually want to move santarosaphotographicsociety away from wordpress.com not to it.
Other hosters might insist on you having Jetpack, and indeed may restrict the settings – none of the ones I use do either of those.
Anyway, hopefully you’ll get to a resolution.
May 5, 2022 at 10:23 am #229083In reply to: Why are the image uploads so small?
sruddy
ParticipantI have no idea but I have discovered I don’t like the restrictions when going with WordPress.org. Iโm waiting for the go ahead to change to wordpress.com using a host I use for my personal website. So at this point itโs Jetpack and no way to fix it as Jetpack is sending me here for support.
May 4, 2022 at 6:48 pm #229068In reply to: Why are the image uploads so small?
sruddy
ParticipantAgreed! ๐ I’m in the process of trying to get the photo club to allow me to move the site from wp.org to .com. That’s what I use and can usually work out any problems fairly easily. The settings for Jetpack plugin which is causing the issues are not available to me. The plugin was actually activated by wordpress.org because of the package they chose. I can’t even delete it and install a similar one.
May 4, 2022 at 6:17 pm #229067In reply to: Why are the image uploads so small?
sruddy
ParticipantNo I paid for, Image Upload for bbPress Pro. Using the healthcheck plugin you suggested confirmed the problem was due to Jetpack plugin. It turns out I can’t turn pack off and wordpress.org controls the settings.
May 4, 2022 at 4:43 pm #229066In reply to: Text Edit Bar missing for Keymaster
ddbell
ParticipantI thought the tabs were supposed to be there by default. I guess not. I am brand new to bbPress.
Just to Clarify, I have quite a few other plugins on the site. The bbPress plugin is just one part of the website and is a recent addition. The bbPress plugin was 100% default but it seems other plugins affect this text area in bbPress.
On the backup test website I was using as a test site, it looks like the tabs were there from the bbPress style plugin I installed which was only on the test site but not the main suite. I forgot I installed that…. but had never used it. It was only on the test site.
For the test site I just did the following to test.
I disabled the bbPress style plugin. It then only had the Visual Text tool bar and was stuck in Visual text mode (which I don’t want because I need to use HTML).
I then disabled the bbPress style plugin and also disabled all plugins except bbPress itself. Then it was in Text edit mode with no tool bars at all and no tabs at all.
I then re-enabable the bbPress style plugin so the only plugins on the site activated were bbPress and the bbPress style plugin. Then there was the text tool bar (not the visual tool bar), but no tabs.
I then re-enabled all other plugins. Now it has the tabs which switch between the Visual toolbar and the Text tool bar. So it seems one of the other plugins, unrelated to bbPress is adding the Visual Tool bar which also adds it into bbPress too. I’m not sure which one because I didn’t test one by one.
So that will work for me. I now added the bbPress style plugin to the main site and I have tabs and the text Editor I need. Other users can use the Visual if they want.
I didn’t realize a another plugin could change what happens inside of a different plugin. I guess WordPress can get convoluted with lots of moving parts. I may go back and try to figure out exactly which plugin adds the extra tool bar. But I like it to have both so it works fine as is now.
May 4, 2022 at 4:06 pm #229064In reply to: Why are the image uploads so small?
Robin W
Moderatorok so you are using a plugin to upload images – yes?
If so is it this
or something else?
May 4, 2022 at 2:36 pm #229057In reply to: Why are the image uploads so small?
sruddy
ParticipantThe image uploader used to ask for size, but after installing the bbPress image loader upgrade, it no longer gives the size field. thanks for the trouble shooting thing. This twenty fourteen theme has been modified and is now using a child theme. I’m not exactly sure what that means but I see no additional settings for the child portion. Neither the wordpress page editor nor the forum page editor have any format choices either. In addition I tried to make one page full width with this code .page-id-17507 .site-inner, .page-id-17507 .site-footer {
max-width: none !important;
width: 95% !important;
}
but it had no affect either, it works on my wordpress.com webpages at https://steveruddyphotography.com/
but not on this website.May 4, 2022 at 2:00 pm #229056In reply to: Why are the image uploads so small?
Robin W
Moderatorjust tried 2014 and it uploads as full size unless you constrain.
so when you say you use the image icon in the bbPress editor does this ask anything about size?
If not then it could be a plugin issue
deactivate all plugins apart from bbpress and see if this fixes. if it does, re-enable one at a time to see which is causing the error.
If you cannot do this to your site (say because it is live) then use the ‘troubleshooting’ features of this plugin to let you test without affecting other users
Then come back
May 4, 2022 at 1:37 pm #229055In reply to: Why are the image uploads so small?
Robin W
Moderatorthanks, fully appreciate that most of this stuff is annoying as hell ๐
The problem is that all wp websites are a combination of wordpress and its settings, your theme and its settings, any adjustments to that theme, and all the plugins and each of their settings. That’s before we look at things like php versions, apache stuff, ht-acess, hoster settings and limitations and a bunch more stuff. That makes most sites pretty unique, so site A will never replicate site B in it’s problems and issues.
I’m just a guy sat in his kitchen who was helped several years ago when I was setting bbpress up, so I try to help others – I’m not a bbpress author.
my test site is twenty ten. I’ll try twenty fourteen to see if that sheds any light.
May 3, 2022 at 12:40 pm #229027In reply to: Specific Roles are not visible forums in backend
Robin W
Moderatorportal-admin is not a default wordpress or bbpress role, so how ever you created that, you’ll need to add the appropriate bbpress capabilities to it.
May 3, 2022 at 12:16 pm #229024In reply to: Trashing/Deleting Topics
craigcotner
ParticipantWell… this board and the board that supports WordPress are straight up Q&A boards. People asking questions like I am.
But my board is a discussion board/forum. So you have topics that get hundreds, even thousands of replies. So I was just wondering how that is handled. Nice to know that this is something you just happen to be looking at! So you go do your thing!
May 2, 2022 at 7:01 pm #229015In reply to: Blank topic pages while using TwentyTwentyTwo theme.
Steveorevo
ParticipantVery nice work with the style pack Robin! I do have one issue with Mega Max menu compatibility. For whatever reason, it doesn’t look like shortcodes are being processed when style pack is activated (which is how MegaMax allows menus to be embedded).
Otherwise I’d recommend your style pack for bbPress users as this “simply works” to deliver the forum styling to Twenty Twenty Two without having to painfully apply one’s own CSS rules to make it marginally pretty.
For those willing to go that far, I found that simply adding a basic, default template page as described on WordPress.org will do the trick. Supposedly block editor doesn’t care for/use PHP template pages anymore so it’s otherwise ignored.
For simplicity, I just replace Twenty Twenty Two’s otherwise empty index.php with the “skinny” template index.php I created here:
https://gist.github.com/Steveorevo/96d8015bcf353221e1cf0cd6b89bb766
May 1, 2022 at 10:41 am #229003In reply to: Why are the image uploads so small?
Robin W
Moderatorthanks, just had a look on my test site.
The first hat image I uploaded displays as
<img src="https://i0.wp.com/santarosaphotographicsociety.org/wp-content/uploads/hm_bbpui/2765/dccxo3aalx9pf5qhw9w5scfhksqpwcb1.jpg" alt="picture">
so will load at the size of the web page.
On your site it displays as
<img src="https://i0.wp.com/santarosaphotographicsociety.org/wp-content/uploads/hm_bbpui/2765/dccxo3aalx9pf5qhw9w5scfhksqpwcb1.jpg?w=474&ssl=1" alt="Hats" width="473" height="316">
It is uploading as full size, so something, maybe your theme or a wordpress setting is limiting it’s display.
I’m not sure if those width details are being saved as part of the post saved in the database, or are added in displaying.
you might also look at
dashboard>settings>media
April 29, 2022 at 1:41 pm #228970Topic: Filter Replies by Tags
in forum Troubleshootingrcotwunite
ParticipantHello all,
I’m working in PHP in WordPress. I’m comfortable modifying and editing code.
I have a collection of Musical Artists and their releases. I’ve created a topic for each artist (post type) and release (post type) using bbPress Topics For Posts.
The user then replies to the topic. I want them to be forced to choose a tag when they reply: “Buy”, “Sell”, or “Info”.
Then I want them to be able to click a button that only shows replies tagged “Buy”, “Sell”, or “Info”.
How do I create a button to filter replies in PHP? Thanks!
Here’s an example of an artist page with a discussion forum below
April 28, 2022 at 7:02 am #228950In reply to: General question regarding compatibility of bbpress
Robin W
Moderatorsorry, I have bbpress running under WordPress, so if you don’t want to run WordPress, I cannot help.
You question is a bit like asking a ford car mechanic what the best motorbike is ๐
April 28, 2022 at 5:08 am #228946In reply to: General question regarding compatibility of bbpress
Robin W
Moderatorsorry, bbpress only works with wordpress.
-
AuthorSearch Results