Reply To: Header Spacing
can you define/elobarate on what you mean by ‘but i cant get the page ID to work correctly’
View ArticleReply To: Header Spacing
i use the BBforums so i dont have a wordpress page ID so i dont know what i could put there.
View ArticleReply To: Header Spacing
Unless i click the Create Post button like on any other forums. like on yours when i view the topics it’s hidden unless i enter a topic.
View ArticleReply To: Edit the bbPress login widget
Hi Robin, I don’t know why, but I can not fix the css of the login widget. Just need a white background and a litte padding, but all attempts with .bbp-form; .bbp-login-form or .sidebar-item fail…?...
View ArticleReply To: Edit the bbPress login widget
should be .bbp-login-form { background: white !important; padding: 10px !important; }
View ArticleReply To: Edit the bbPress login widget
Oh no, I forgot the !important 😉 It’s working… Thanks Matthias
View ArticleReply To: Edit the bbPress login widget
often the !important is not needed, it all depends on what order css is being loaded !
View ArticleReply To: Theme problem
getting lots of 404 erros. plugins/bbpress/templates/default/js/user.js?ver=5.3.2 can i have the solution ?
View ArticleReply To: Edit the bbPress login widget
<?php bbp_user_profile_link( bbp_get_current_user_id() ); ?> How can I change the code above, to show only the name, without the link to bbpress profile? Thanks Matthias
View ArticleReply To: Edit the bbPress login widget
untested, but try this add_filter ('bbp_get_user_profile_link' , 'rew_get_user_name', 10 , 2) ; function rew_get_user_name ($user_link, $user_id ) { // Validate user id $user_id = bbp_get_user_id(...
View ArticleReply To: Edit the bbPress login widget
Hi Robin, this code works fine, thanks. I put it in functions.php After this I changed some code in bbpress/includes/common/widgets.php The changes work fine, but it only works when I change the core...
View ArticleReply To: Edit the bbPress login widget
no, core code does not get changed in child themes what did you change?
View ArticleReply To: Theme problem
looks like it is the same issue as 5 years ago – specific to your site, so there is little I can suggest
View ArticleReply To: Edit the bbPress login widget
I just added some needed extra links 🙂 `<div class=”bbp-logged-in”> <a href=”<?php bbp_user_profile_url( bbp_get_current_user_id() ); ?>” class=”submit user-submit”><?php echo...
View ArticleReply To: Theme problem
Yes, Same issue, and also tried previous suggetion but still same errors
View ArticleReply To: Edit the bbPress login widget
The best solution is to clone this widget and then amend. so put this in your functions.php It creates a duplicate login widget, but you’ll find it in dashboard>appearance>widgets called (mat)...
View ArticleReply To: Edit the bbPress login widget
Hi Robin, this is awesome. I just tested it and it works like a charm. Thanks you Matthias
View Article