Search Results for 'code'
-
AuthorSearch Results
-
December 18, 2013 at 4:54 am #140451
In reply to: unable to edit profile in [bbp-register] page
December 18, 2013 at 4:52 am #140450In reply to: unable to edit profile in [bbp-register] page
Rollsjoyce
ParticipantI removed the following text (between the dots) from the user-details.php
Now it is no longer possible to edit the profile in the bbpress profile overview. But when I want to update this plugin it will be possible to edit again. Do you have a better solution so it is still erased after an update of this plugin?<span class=”bbp-user-edit-link”> …..” title=”<?php printf( esc_attr__( “Edit %s’s Profile”, ‘bbpress’ ), bbp_get_displayed_user_field( ‘display_name’ ) ); ?>”><?php _e( ‘….Edit…..’, ‘bbpress’ ); ?> </span>December 18, 2013 at 3:16 am #140447In reply to: Forum Size
Subtopic
ParticipantAlso where to put the code haha.
December 18, 2013 at 12:23 am #140444In reply to: Show Sidebar in default bbp pages
Stephen Edgar
KeymasterIf your theme has a template with sidebar maybe
page.phpthen make a copy of that file and rename it tobbpress.phpDecember 17, 2013 at 9:27 pm #140441In reply to: participant can't edit their posts
Stephen Edgar
KeymasterYou can try the ‘Remap existing users to default forum roles’ repair tool to see if that fixes the bbPress Roles: https://codex.bbpress.org/repair-forums/
I had a quick look at https://wordpress.org/plugins/role-scoper/ and they make no specific mention of supporting bbPress’ ‘Dynamic Roles’ and that could be where the core of the issue is.
Yes, Role Scooper is the issue and it appears there will be no longer further development or support:
https://wordpress.org/plugins/role-scoper/faq/
With the production release of Press Permit, is Role Scoper still supported?
Basic Role Scoper support (bug fixes but not necessarily plugin conflict resolution) will be provided while WP 3.6.x is the active WordPress version. Compatibility with WP 3.7 and beyond is not assured, as I do not plan any further unfunded development of the Role Scoper code base. Further development and support will be available on a consulting basis as indicated on agapetry.net, but I will encourage migration to Press Permit – a superior platform with a sustainable funding model.The good news is the new plugin ‘Press Permit’ does support bbPress’ Dynamic Roles 🙂
https://wordpress.org/plugins/press-permit-core/
Customize bbPress forum permissionsDecember 17, 2013 at 9:07 pm #140439Stephen Edgar
KeymasterUpdated 🙂
Subscriptions
Forum participants can elect to subscribe to a forum or topic. They will be notified when a new topic is created in a subscribed forum or a new reply is posted to a subscribed topic. Subscribed forums and topics will appear on their forum user profile.
https://codex.bbpress.org/forum-settings/December 17, 2013 at 9:01 pm #140438In reply to: How to make a forum Sticky in the main Forum Page
Stephen Edgar
KeymasterJust set the ‘Forum Order’ of your forums to whatever order you want them displayed in.
https://codex.bbpress.org/getting-started-with-bbpress/#creating-your-first-forum
December 17, 2013 at 8:02 pm #140437In reply to: Exclude specific forums in Recent Topics widget
kokocipher
Participantcould you share your code :3 ? Where do you copy the codes for the widgets?
December 17, 2013 at 7:54 pm #140436In reply to: Kunena converter for bbPress 2.4
Stephen Edgar
KeymasterCool, glad your taking a look at it.
“It seems to have appended an extre Re: in front of each (so they read Re:Re:Topic)”
The
Re:should only be added to the title of a reply, this should not be adding them to the topics and this shows that the SQL in the importer isn’t quite matching up with your database.The SQL queries below are based on the
Kunena1.phpimporter and use the prefixjos_as the table prefix for the bbPress importer.When the importer fails you should see an error message like the following:
WordPress database error: [Unknown column 'kunena_categories.locked1' in 'field list']In this particular case the importer was looking for
jos_kunena_categories.locked1wherejos_kunena_categoriesis the table name andlocked1is the field name. I used ‘locked1’ as a way to force an error to show the example, so if I knew my version of the database should be looking at the fieldlockedinstead oflocked1you can find the'from_fieldname' => 'locked1'inKunena1.phpand update that with the correct field mapping'from_fieldname' => 'locked',.Another way you can go about this is to jump directly into phpMyAdmin and test each of the following SQL queries, there are primarily four queries are as follows:
Again I used prefix
jos_for my database and you will need to change this to match your own database table prefix.Forums
SELECT kunena_categories.id AS id, kunena_categories.parent AS parent, kunena_categories.numTopics AS numTopics, kunena_categories.numPosts AS numPosts, kunena_categories.name AS name, kunena_categories.description AS description, kunena_categories.ordering AS ordering, kunena_categories.locked AS locked FROM jos_kunena_categories AS kunena_categoriesTopics
SELECT kunena_messages.thread AS thread, kunena_messages.catid AS catid, kunena_messages.userid AS userid, kunena_messages.ip AS ip, kunena_messages_text.message AS message, kunena_messages.subject AS subject, kunena_messages.time AS time, kunena_messages.locked AS locked FROM jos_kunena_messages AS kunena_messages INNER JOIN jos_kunena_messages_text AS kunena_messages_text ON kunena_messages_text.mesid = kunena_messages.id WHERE kunena_messages.parent = 0Replies
SELECT kunena_messages.id AS id, kunena_messages.catid AS catid, kunena_messages.thread AS thread, kunena_messages.ip AS ip, kunena_messages.userid AS userid, kunena_messages.subject AS subject, kunena_messages_text.message AS message, kunena_messages.time AS time FROM jos_kunena_messages AS kunena_messages INNER JOIN jos_kunena_messages_text AS kunena_messages_text ON kunena_messages.id = kunena_messages_text.mesid WHERE kunena_messages.parent != 0Users
SELECT users.id AS id, users.password AS password, users.username AS username, users.email AS email, users.registerDate AS registerDate FROM jos_users AS usersThat’s a bit to digest so I’ll leave it at that for now and it is probably as clear as mud unless you are a seasoned SQL junkie.
If anything I wrote above doesn’t make sense just ask away and remember 🙂
https://en.wikipedia.org/wiki/No_such_thing_as_a_stupid_questionDecember 17, 2013 at 4:20 pm #140430Topic: Change font color or background on bbpress
in forum Troubleshootingfishfanatix
ParticipantI’m having issues with the font or background color on my bbpress forums page. The font is to light I cant read anything. Can someone please explain to me how to change the color. I’m a beginner at all this so I don’t know any css but I can look it up. I tried to do it under the stylesheet under editor but I cant find the code. my website is fishfanatixblog.com and click the buy/sale/trade tab and see it.
December 17, 2013 at 1:33 pm #140422In reply to: Exclude specific forums in Recent Topics widget
Lynqoid
ParticipantYou could copy out the widget code and rename it to create your own widget and then include it in your functions.php
December 17, 2013 at 1:18 pm #140418Topic: Show Sidebar in default bbp pages
in forum Installationdiggeridoo
ParticipantHi all,
I’m searching about this topic here but I can’t solve this.
I want to put a sidebar in all the pages generated by bbpress: forums, topics, search… etc.
This works in the main page I’ve created for forum with[bbp-forum-index]shortcode and assigning a sidebar within my theme.
But, for the auto-generated pages (mentioned above) it uses full width by default.
¿How can I change this?Thanks!
I’m on WP 3.7.1 and bbPress 2.5.1-5217
December 17, 2013 at 5:48 am #140398In reply to: Global variables not accessible from theme files
Lynqoid
ParticipantCould you create a class then initalize it inside the bbPress code and use a getter to grab the values you need?
December 17, 2013 at 5:44 am #140397In reply to: Forum Size
Lynqoid
ParticipantHi!
You can achieve this with a relatively small amount of css:
.bbpress #sidebar { display:none; } .bbpress #left-div { width: 100%; }You will need to create a new image for your background though as it is currently not long enough, then you can add a little more CSS for that too.
Good luck!
December 17, 2013 at 4:41 am #140396In reply to: Website input default value is "Array"
Stephen Edgar
KeymasterArghhhhhh….. I still can’t reproduce this error using “Luminescence LiteVersion: 1.1.9”
Do you have any custom templates in your themes folder?
eg.
\wp-content\themes\luminescence-lite\bbpressDecember 16, 2013 at 7:19 pm #140386In reply to: Sidebars in BBpress profile
Stephen Edgar
KeymasterThe classes are set by the following:
<body class="topic bbpress single single-topic...<-bbp_is_single_topic
<body class="forum-archive bbpress archive...<-bbp_is_forum_archive
<body class="bbp-user-page single singular bbpress...<-bbp_is_single_user
<body class="bbp-view bbpress...<-bbp_is_single_viewTake a look at the source for any others here
December 16, 2013 at 6:49 pm #140381sixf00t4
Participantit seems it was semi addressed – https://bbpress.org/forums/topic/subscribe-to-new-forum-topics/
Subscriptions
Forum participants can elect to subscribe to a topic. They will be notified when a new reply is posted and subscribed forum topics will appear on their forum profile.December 16, 2013 at 6:38 pm #140378In reply to: Duplicated admin nick after import from phpBB
Stephen Edgar
Keymaster– Open up the WordPress admin users section
– Click delete onimported_LinDan94
– Check the box “Attribute all posts to:”
– Select the usernameLinDan94from the dropdown
– Click ‘Confirm Deletion’December 16, 2013 at 5:53 pm #140377Stephen Edgar
KeymasterYes, they work really well together, actually developed side by side most of the time.
To get an idea of what is in BuddyPress check this out:
December 16, 2013 at 3:18 pm #140373Remco Beugels
ParticipantI want want to remove the permission that moderators can delete topics and posts from the trash. But how can I change the standard permissions from bbPress?
I made this code but it doesn’t work because bbPress roles are separated from WordPress roles:
function changePermissions() { $role = get_role('moderater'); $role->remove_cap('delete_others_topics'); $role->remove_cap('delete_others_replies'); } add_action('init', 'changePermissions');December 16, 2013 at 6:48 am #140355In reply to: Can't remove "Topic Status:" and "type"
Stephen Edgar
KeymasterYou can I think… Add the translation “Topic Status” as I linked to above.
Then at the bottom of that screen you can select ‘Export’, though the dropdowns to the right you want to select “only matching the filter” then to right select “Portable Object Message Catalog (.po)” and then click the ‘export’ link on the left, save this file as
bbpress-he.pothen select “Machine Object Message Catalog (.mo)” and click ‘export’ again and save this file asbbpress-he.moand then using FTP upload both these files to/wp-content/languages/bbpress/and you evertyhting should be perfect. 🙂December 16, 2013 at 6:37 am #140354In reply to: Can't remove "Topic Status:" and "type"
ronthai
ParticipantIt might be in form-forum.php (bbpress/templates/default/bbpress)
It has these lines, have not tried it and be sure to have a backup:
<p> <label for="bbp_forum_type"><?php _e( 'Forum Type:', 'bbpress' ); ?></label><br /> <?php bbp_form_forum_type_dropdown(); ?> </p> <?php do_action( 'bbp_theme_after_forum_form_type' ); ?> <?php do_action( 'bbp_theme_before_forum_form_status' ); ?> <p> <label for="bbp_forum_status"><?php _e( 'Status:', 'bbpress' ); ?></label><br /> <?php bbp_form_forum_status_dropdown(); ?> </p>December 16, 2013 at 6:24 am #140353In reply to: Can't remove "Topic Status:" and "type"
eitayz
ParticipantThank you 🙂
Of course,I will help to translate the strings.
But I would like to remove those two strings that I have marked.
I can’t use “display:none” since it’ll remove all the “label” or “p” in the page.
So I have to remove it from the PHP code. But I can’t find the code spot to do so.December 16, 2013 at 12:20 am #140347In reply to: Sidebars in BBpress profile
Sloppy Buns
ParticipantOk i think I have found where the problem is, take a look at the Body Class snippets from different pages on bbpress, paying particular attention to the sections after the word bbpress in each snippet.
The top two are from pages I am able to get sidebars to appear on and the bottom two I can not.
In the top two notice after the word bbpress you see a description of the type of page it is “single single-topic” and “archive” respectively.
In the bottom two this does not happen so my theme “Hueman” doesn’t know what sort of pages they are and therefore is unable to place the sidebars on these pages, now all I need to know is how to rectify this?
<body class="topic bbpress single single-topic postid-976 logged-in admin-bar no-customize-support topbar-enabled full-width gecko"> <body class="forum-archive bbpress archive post-type-archive post-type-archive-forum logged-in admin-bar no-customize-support topbar-enabled full-width gecko"> <body class="bbp-user-page single singular bbpress logged-in admin-bar no-customize-support topbar-enabled full-width gecko"> <body class="bbp-view bbpress logged-in admin-bar no-customize-support topbar-enabled full-width gecko">December 15, 2013 at 9:26 pm #140342In reply to: List user post total
ronthai
ParticipantI got it working and also Guests Posts (Topics and Replies) don’t return and empty value.
Might not be the best way, but all I got:<?php if ( bbp_is_topic_anonymous() ) { echo "<br>Guest Post"; } elseif ( bbp_is_reply_anonymous() ) { echo "<br>Guest Post"; } else { $post_count = ( bbp_get_user_topic_count_raw ( bbp_get_reply_author_id ( bbp_get_reply_id() ) ) ); echo "<br>Total Topics: " . $post_count; $post_count = ( bbp_get_user_reply_count_raw ( bbp_get_reply_author_id ( bbp_get_reply_id() ) ) ); echo "<br>Total Replies: " . $post_count; } ?> -
AuthorSearch Results