Search Results for 'code'
-
AuthorSearch Results
-
June 19, 2016 at 9:37 am #175850
In reply to: My new social forum | please review
peter-hamilton
ParticipantWill look at that plugin, sounds good if it does not create conflicts with my custom theme.
Had to google Bootstrap
I am almost ready with mobile version of my theme, actually not too bad to do with minimal css coding.
Will have a look at that bootstrap thingy, perhaps I can copy and paste my way to integration, give me a few years and it will be done…lolI guess Php and Java should become easier over time for most, I get how some hooks work and understand the logic of a certain line of code, but do not know to write a line of Php or Java if my live depended on it, start to panic when databases are mentioned..lol
More like a blind guy trying to finish a puzzle, keep banging pieces together until they stuck.But I must say that peoples reaction give me a warm gooey feeling inside, and should show everyone here that BBPress can be whatever you want it to be, if I can do it so can you…
P.H.
June 19, 2016 at 8:49 am #175847In reply to: My new social forum | please review
peter-hamilton
ParticipantAnd the WordPress/BBPress combo is actually quite easy to play with, took me a while (2 years almost) to understand the code but now like a puzzle that is relatively easy to manipulate.
Only big issue I always find is the massive amounts of javascript and css queries, trying soon to combine a bit more.
June 19, 2016 at 3:02 am #175840In reply to: logout page issue
ajising84
ParticipantHi,
Thanks for your reply, the short code was used for one “logout” plugin and it was later removed due to compatibility issue with my theme.
Can you please tell me, where I get this “bbPress profile widget ” ?
Await your reply.
Regards,
AjitJune 19, 2016 at 1:36 am #175838In reply to: Keymaster has no permissions
Blaze Miskulin
ParticipantI’m working with the WP SpamShield team, but I’ll also post the error here just in case it helps.
[19-Jun-2016 05:28:41 UTC] PHP Notice: bbp_setup_current_user was called <strong>incorrectly</strong>. The current user is being initialized without using $wp->init(). Please see <a href="https://codex.wordpress.org/Debugging_in_WordPress">Debugging in WordPress</a> for more information. (This message was added in version 2.3.) in /home/XXX/public_html/wp-includes/functions.php on line 3897June 18, 2016 at 10:03 pm #175836In reply to: Allowing inline images uploads in posts?
Jon Fergus
ParticipantFor those who have added the code from palmdoc’s instructions here, you’ll also likely need to change user role permissions so that they can upload inline images to all topics. Solution is here: https://bbpress.org/forums/topic/cant-upload-media-in-bbpress/#post-175834
June 18, 2016 at 4:10 pm #175831In reply to: My new social forum | please review
Robin W
Moderatorwhy don’t you have a test site?
https://codex.bbpress.org/getting-started/testing-your-bbpress-installation/creating-a-test-site/
June 18, 2016 at 2:09 pm #175829In reply to: My new social forum | please review
peter-hamilton
ParticipantSo after updates with BBPress and Buddypress my site is currently broken but will have it up and running soon again with a much improved code.
June 18, 2016 at 2:56 am #175817jhayghost
ParticipantHello,
I implemented a basic BBPress to our secured site. all members are registered and automatically assign them to participants. But after a week when I visited some topics went to trash, spam and closed. I checked bbpress code and I can not find any cron task and I`m not using Akismet at all.
I hope you can help me.
Many Thanks 🙂
June 17, 2016 at 6:26 pm #175812Topic: Pagination beside the topic
in forum Themesquikfixed
ParticipantHi there,
In my list of the topics, there isn’t any pagination link beside each topic even if I’ve set to display only 15 post per page. The pagination within the individual topic is shown but not beside the topics for those with more than 15 post in the main page listing. Any ideas?
Is this a setting or must I change anything?
I’m assuming I need to change the content-single-forum.php ?
<div class="td-topics-title"> <a href="<?php bbp_topic_permalink(); ?>"><?php bbp_topic_title();?></a> </div>June 17, 2016 at 5:56 pm #175809In reply to: Forum where only admin can post, but users can reply
Robin W
Moderatoryou can achieve this with forum roles eg
https://codex.bbpress.org/custom-capabilities/
if you want it across all forums
or if you just want one of several to be restricted, then I’ve recently added this to my private groups plugin
https://wordpress.org/plugins/bbp-private-groups/
see topic permissions tab
June 17, 2016 at 4:39 pm #175807In reply to: Recent Topics Widget to Display based on BP Group
Robkk
ModeratorOr how would I go about adding the reference lookup to obtain the user’s bp group(s), the forum tied to that bp group(s), and then display the recent 5-10 topics?
If you are really not that good with code, try to hire a developer to create this for you.
Here is a couple of links that might be helpful though.
http://hookr.io/plugins/buddypress/#index=g&search=bp_get_group
http://hookr.io/plugins/buddypress/#index=i&search=bp_is
https://developer.wordpress.org/reference/functions/is_user_logged_in/
https://github.com/ntwb/bbPress/blob/master/src/includes/common/widgets.php#L674
June 17, 2016 at 4:25 pm #175804In reply to: logout page issue
Robkk
ModeratorLynqs suggestion in the topic you linked to will not work if you just put his code into a text widget, because the text widget does not output PHP just HTML.
I see you just placed the bbPress login form shortcode into a text widget, why not just use the bbPress profile widget which includes a login form and register, lost password, and logout links.
June 17, 2016 at 3:54 pm #175803In reply to: Do older conservative users like emoticons?
Robkk
ModeratorAs I state in this post, you may not need to even add an emoticons plugin, older conservatives may not even use it, but they might every now and then use the simple smilies like
:) :( >:( :Phttps://bbpress.org/forums/topic/smiley-emoticons/#post-175672
June 17, 2016 at 3:51 pm #175802In reply to: Create new column for topic posts
Robkk
ModeratorYes you would need to adjust some CSS styles from the forum.
The styles specifically are these, although these will change when you reach a specific device width. You will need to adjust the width taking some out of the title section most likely. You might want to also look into adding another column heading for views, by copying the loop-topics.php template into your child theme.
li.bbp-forum-info, li.bbp-topic-title { float: left; text-align: left; width: 55%; } li.bbp-forum-topic-count, li.bbp-topic-voice-count, li.bbp-forum-reply-count, li.bbp-topic-reply-count { float: left; text-align: center; width: 10%; } li.bbp-forum-freshness, li.bbp-topic-freshness { text-align: center; float: left; width: 22%; }June 17, 2016 at 3:02 pm #175800In reply to: Forum template styles forum rules best practice
Robkk
Moderator1. Robins plugin uses the same file that has been tossed around these forums for the past 2 or so years.
https://github.com/robkk/bbPress-Hierarchical-Forum-and-Category-Layout
4. You should probably just keep them, as they help with moderation on the frontend. There is a link in the description to show all posts including ones that may be pending moderation. The yellow ones just help notify users whats up, so if they cannot post for soem reason and there is no notice, they would not know what the issue is.
Here is a link to the code though.
5. If you are minifying your CSS, then I say do not worry about this feature.
I don’t really think there is a best practice for forum rules/admin content, it is whatever works for you and makes most sense in the end.
June 17, 2016 at 11:00 am #175796In reply to: ERROR: Are you sure you wanted to do that?
r083r7
Participantcopy and pasted into my child-theme function.php file
add_filter( 'bbp_verify_nonce_request_url', 'my_bbp_verify_nonce_request_url', 999, 1 ); function my_bbp_verify_nonce_request_url( $requested_url ) { return 'http://localhost:8888' . $_SERVER['REQUEST_URI']; }ERROR: Are you sure you wanted to do that? is still there.
Any other ideas?
June 17, 2016 at 8:56 am #175795In reply to: Freshness Link
Fuskeduske
ParticipantI know see i missed some code
<div class=”bbp-forum-last-topic-name”>” title=”<?php bbp_forum_last_topic_title(); ?>”>
<?php bbp_forum_last_topic_title(); ?></div>
<p></p><?php bbp_forum_last_active_time(); ?>
June 17, 2016 at 2:37 am #175792fpradmin
ParticipantThank you both for the help. I installed the “Simple Custom CSS” Plugin and fixed both issues by adding the following code there, after removing the code to “get sidebars” in bbpress.php
/* Change Post Font Color to Black */ .post-inner .entry{ color: #000; } /* Increase Forums to Full-Width of Page - after removing get sidebar code from bbpressphp */ .bbpress .main-inner, .bbpress .main, .page-template-full-width .main-inner, .page-template-full-width .main { background: none !important; padding-right: 0 !important; padding-left: 0 !important; } /* Increase Font Size on various items in bbPress */ #bbpress-forums, #bbpress-forums ul.bbp-lead-topic, #bbpress-forums ul.bbp-topics, #bbpress-forums ul.bbp-forums, #bbpress-forums ul.bbp-replies, #bbpress-forums ul.bbp-search-results, #bbpress-forums .bbp-forum-info .bbp-forum-content, #bbpress-forums p.bbp-topic-meta, div.bbp-breadcrumb, div.bbp-topic-tags, span.bbp-admin-links a, #bbpress-forums div.bbp-forum-author .bbp-author-role, #bbpress-forums div.bbp-topic-author .bbp-author-role, #bbpress-forums div.bbp-reply-author .bbp-author-role, span.bbp-author-ip, div.bbp-template-notice p, #bbpress-forums #bbp-your-profile fieldset span.description { font-size: 16px !important; } #bbpress-forums .bbp-forums-list a { font-size: 18px; } li.bbp-forum-info a.bbp-forum-title, li.bbp-topic-title a.bbp-topic-permalink, #bbpress-forums div.bbp-topic-content p, #bbpress-forums div.bbp-topic-content p, #bbpress-forums div.bbp-reply-content p { font-size: 20px; }June 16, 2016 at 10:46 pm #175791Robkk
ModeratorThese are all the files and code I had in my custom child theme I created from Hueman. I also added some font-size CSS styles too.
https://gist.github.com/robkk/8b323aa0994e87a476054a4f115d1141
June 16, 2016 at 8:47 pm #175789Robkk
ModeratorYeah you can’t do what you want now using that specific plugin, you can using widget logic, or creating a bbpress specific sidebar for all the widgets you want/not want to display on bbPress pages.
Contact the display widgets plugin author to possibly add this feature to hide/show widgets on bbPress user profiles, and maybe specifically the edit profile page. All they would need is just use these supplied bbPress conditionals.
bbp_is_single_user_edit() bbp_is_single_user()June 16, 2016 at 9:26 am #175779In reply to: switching roles on different forums
Robin W
Moderatorok, I think this is now all working for older php versions.
I have also fixed a small bug, so the code is more robust.
once the new version appears in your updates, can you upgrade, and just confirm that it all still works for you.
Regards
Robin
June 15, 2016 at 8:04 am #175762In reply to: switching roles on different forums
Robin W
Moderatorok, Ive taken a further look, and the issue is that you are using a php version below php5.5.
Given that others may do so, I’ve recoded to avoid the error, so can you delete the version you have, and try this one
Robin W
Moderatorfor bbpress start with
https://codex.bbpress.org/step-by-step-guide-to-setting-up-a-bbpress-forum/June 15, 2016 at 12:17 am #175758fpradmin
ParticipantWell, I definitely appreciate the help, but most likely I’m doing something wrong or not placing the code in the right location. I replaced my bbpress.php with yours(although there wasn’t a lot of difference). Then I tried placing the .css code in my custom css file, at the top, then in the middle, then at the bottom.. none of which had any effect. I then tried to edit my styles.css, which is actually my Main.css(because of the way the Hueman Theme moves and hides it for minification). I put the css code there, at the bottom, and it still had no effect, so eventually I took it back out and returned things to the way I had them. If it shouldn’t be just placed at the bottom, where should it go? Again, I’m not a developer so I’m a bit nervous playing around with the code too much.
Any idea how to increase the Font Size? If I could increase the Font size, I might even consider leaving the sidebars in place, just for the sake of leaving things well enough alone, before I break something.
June 14, 2016 at 3:09 pm #175756Robkk
ModeratorOr another possible pinch point is the Tool’s kits option to remove css from non bbpress pages
the bbp toolkit plugin just dequeues the bbPress default stylesheet if the page is not a bbPress one. Here is the function for that feature.
function bbptoolkit_unqueue_bbp_scripts() { if( ! is_bbpress() ) { $bbptoolkit_rem_defstyle = get_option('bbptoolkit-rem-defstyle', false); if ($bbptoolkit_rem_defstyle) { wp_dequeue_style('bbp-default'); wp_dequeue_style('bbp-default-rtl'); } } } add_action( 'bbp_enqueue_scripts', 'bbptoolkit_unqueue_bbp_scripts', 15 );This may not be the conflict as I think robins plugin doesn’t mess with the default stylesheet in bbPress. So it might be something else.
-
AuthorSearch Results