Forum Replies Created
-
In reply to: bbPress/memberpress Forum Profile Tab
not sure I can help further.
in essence memberpress is adding this, but they are (I think) saying that they are unable to help is saying how to remove this. That is their choice, you wouldn’t expect your car showroom to remove a wheel trims or change the wheels that come as standard with the car for free because you don’t like them.
if you care to join me to your site and email me account details to http://www.rewweb.co.uk/contact-me/ I’ll take a quick look, but will only be quick
In reply to: Subscriptions versus my subscribed topics@gdragon – thanks for spotting this 🙂
In reply to: Artefacts above and below forum list in 20 16 themeif I had to guess, I’d probably guess that you are using [bbp-forum-index] on a gutenberg block page, and that you have either not used the shortocde block, or have code blocks in the page.
The bits in your pasteboard are before bbpress fires
In reply to: Artefacts above and below forum list in 20 16 themewhen you launch, come back and I’ll look again
In reply to: Artefacts above and below forum list in 20 16 themeok, it is not a problem I have seen and bbpress has 300,000 installations, so I cannot say why you are seeing it and without site access I cannot say how to hide it, as that would take me working it out from your screeshots which is beyond free help
In reply to: bbPress/memberpress Forum Profile Tabprobably one for the memberpress plugin support forum 🙂
In reply to: bbPress forum as homepageI suspect that your homepage just needs to have the correct sidebar applied to it, so yes you would use the shortcode as you suggest, but in dashboard>pages>homepage you will need to allocate a sidebar
In reply to: Image preview from URL pasted within bbpress posts?bbpress doesn’t have visual editor as default
but this link to a visual link plugin might catcah attention if more request it to the plugin authirs by adding to the post
https://wordpress.org/support/topic/need-to-help-use-it-available-in-bbpress/
In reply to: Artefacts above and below forum list in 20 16 themeok, no idea what is causing that
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
In reply to: Subscriptions versus my subscribed topicsand that is created from using what?
In reply to: Artefacts above and below forum list in 20 16 themewould need a link to an example of your live forum to see what is causing them
In reply to: How to make forums look better/prettierthanks, was a while ago that page was last updated – I’ve added you better solution 🙂
but no form at the bottom?
In reply to: bbPress profile page add custom page menuok, doing that using url’s is well beyond free help or indeed my knowledge of wordpress/bbpress.
The code can be amended to pass a $_REQUEST of say ‘loginname’
you can then create a page in wordpress, and use a shortcode to hook to php code that would look up the login name and display data related to that user, but then you have to have an area to create that data and store it in the database, or let the user create – so you would need creation/edit/delete pages and code.
It is all quite doable but well beyond free help
In reply to: bbPress profile page add custom page menusorry I am confused …I can give you code to go to any url, but unless you create some content for that url, it will 404.
what are you expecting it to do when you click that link ?
In reply to: bbPress profile page add custom page menuadd_action( 'bbp_template_after_user_details_menu_items', 'rew_add_item' ); function rew_add_item () { ?> <ul> <li class="pictures"> <span class="pictures-link"> <?php $username = bbp_get_user_nicename(bbp_get_displayed_user_id()); echo '<a href="http://localhost/projects/wpdev2/forums/users/'.$username.'/my-stories/">Click to show picture</a>' ; ?> </span> </li> </ul> <?php }In reply to: bbPress profile page add custom page menusorry, I don’t fully understand – the code will take you to any url you want.
do you mean user specific?
or if you got it working in buddypress what code did you use there?
or maybe describe what you want to achieve?
In reply to: bbPress profile page add custom page menuadd_action( 'bbp_template_after_user_details_menu_items', 'rew_add_item' ); function rew_add_item () { ?> <ul> <li class="pictures"> <span class="pictures-link"> <a href="https://prnt.sc/wcemvm">Click to show picture</a> </span> </li> </ul> <?php }In reply to: bbPress profile page add custom page menuok, so you could use the hook in the standard template to add the item in a plugin
<?php do_action( 'bbp_template_after_user_details_menu_items' ); ?>In reply to: Login Issues – Login Not WorkingI use w3 total cache on a couple of forum sites
In reply to: bbPress profile page add custom page menuif you mean amend the ‘topics started, relies created’ etc, menu, then this is in the template
\templates\default\bbpress\user-details.php which you can amend and put in a bbpress directory in your child theme
eg…
find
wp-content/plugins/bbpress/templates/default/bbpress/user-details.phptransfer this to your pc and edit to what you want
and save
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
Then transfer the file you saved above and put in in the directory called bbpress that you created above, so you end up with
wp-content/themes/%your-theme-name%/bbpress/user-details.phpbbPress will now use this template instead of the original
sorry, you have the topic form at the top, or the ‘create new topic’ button at the top ?
In reply to: Subscriptions versus my subscribed topicsok… so I know how to get to
https://www.askwoody.com/forums/users/sb/subscriptions/
but how do you get to https://www.askwoody.com/forums/view/my-subscribed-topics/
hmmm – do you have the form showing at the bottom of the page ?
Put this in your child theme’s function file –
ie wp-content/themes/%your-theme-name%/functions.php
where %your-theme-name% is the name of your theme
or use
add_action ( 'bbp_template_before_single_forum', 'rew_create_new_topic' ) ; function rew_create_new_topic () { $text='Create New Topic' ; if ( bbp_current_user_can_access_create_topic_form() && !bbp_is_forum_category() ) { $href = '#new-post' ; echo '<div class="rew-new-topic"> <a href ="'.$href.'">'.$text.'</a></div>' ; } }but you’ll have to work out how to style it yourself I’m afraid !!