Search Results for 'wordpress'
-
AuthorSearch Results
-
March 29, 2014 at 7:32 pm #180487
In reply to: notifications showing as blank.
r-a-y
KeymasterYou could be using an older theme, which needs the new notification templates.
Contact the theme developer and tell them to look at the following change:
https://buddypress.trac.wordpress.org/changeset/7688/Take note of the five additional files that need to be created and the change to
/members/single/home.phpMarch 29, 2014 at 1:10 am #180459In reply to: BP search box
Henry Wright
ModeratorHi @loufernando
Have you thought about using BP Profile Search?
March 28, 2014 at 8:11 am #180435In reply to: View Topic Post prior to posting
Hugo Ashmore
ParticipantPlease ask specific questions on the appropriate forum:
https://wordpress.org/support/plugin/live-comment-previewIt’s not BP related, a third party plugin, and we’re not necessarily going to be familiar with it’s setup and configuration, also we have no knowledge of what theme you are using or how that’s setup or where they may have put the comments form code.
March 28, 2014 at 6:00 am #180434In reply to: View Topic Post prior to posting
batmanfan
ParticipantThanks Renato. Strange though, I’ve installed the plugin ok but the preview is not showing 🙁 I read in https://wordpress.org/plugins/live-comment-preview/faq/ and still can’t seem to get it working! help.
theme’s comments.php file. It must contain the code<?php comment_form(); ?>
or <?php do_action(‘comment_form’, $post->ID); ?>.
I checked and didn’t see the code therefore I added… and still didn’t work.
1. WHICH LINE SHOULD I ADD THE ABOVE CODE?
Can I make the preview display in another location?
Yes, you can add the code <?php live_preview(); ?> in comments.php where you want the preview to be show.
2. WHERE SHOULD I ADD THE ABOVE CODE?
Thank you so much
March 28, 2014 at 5:09 am #180431In reply to: How to make a network of multiple domain names
Renato Alves
ModeratorI don’t think this is the one, as this is related to a WordPress Multisite and it seems not your intent.
But test it out and see if it suits your needs. =)
March 28, 2014 at 5:07 am #180430In reply to: BP search box
Renato Alves
ModeratorAll right, I understand your point and agree. The problem I see is that the search function is related to the searchable information in her profile, not in her profile description, or Bio as you call in your website.
Some examples to clarify:
If you search “creative”, it brings her as a possible result.
If you search “counselling” (not counsellor), it brings her as a possible result.
And if you search “creative counselling” (what’s actually searchable) you can find it.What she is trying to search, creative counsellor, is not searchable and possibly, nobody had used it before. So no match is available.
Also, if you click in her “Job Title”, you will see exactly what I mean.
My reason is that you want to add not only the searchable areas but also any text. I’m not sure how to do that, but maybe there is a plugin around WordPress to help.
March 28, 2014 at 1:58 am #180423In reply to: View Topic Post prior to posting
Renato Alves
ModeratorIt is not a BuddyPress related question, but here it goes. At CSS-Tricks, Chris Coyer is using this plugin (https://wordpress.org/plugins/live-comment-preview/) to allow the user to preview their answer in the bbPress.
It is not the topic, but I think you can make it work.
March 28, 2014 at 1:15 am #180419In reply to: How to make a network of multiple domain names
Renato Alves
ModeratorHi @iwishiknew,
what you trying to achieve can be accomplished with WordPress Multisite (WPMU), except for the shared forum part (maybe it is possible, if it is, I don’t know how).
In a WPMU, you can have, through sub-directories or sub-domains, several high level domain using the Domain Mapping plugin. I use it in my personal blog and it works fine.
It is also possible to make one user to access the other websites in the network, without having him/her to register again.
With the foruns, I would create different bbPress instalations in each website. In this way, although the users base could be shared, the forums would be related to each particular domain in the network.
In a nutshell, I’d assume that what you want is possible, except for the shared forum part. If it possible, please, let me know.
Plugins you’d use:
Domain Mapping – https://wordpress.org/plugins/wordpress-mu-domain-mapping/
MU User Management – https://wordpress.org/plugins/multisite-user-management/March 27, 2014 at 1:23 pm #180395In reply to: Registration Page not displaying in menu
tevil
ParticipantHi Im using the twenty thriteen theme and I have set up the BP plugin according to the tuts and created the register and activation pages but they WILL NOT show up on my main page. I saw them there for literally 3 second once but then they disappeared and I can not get them back.
Anyone have any ideas on this?
Thanksactually just found this
March 27, 2014 at 1:10 pm #180394In reply to: Disable admin bar
Splendorito
ParticipantI did find a plugin now that correct this easy.
Global admin bar hide or removeThank you anyway
Best Regards
March 27, 2014 at 11:51 am #180392In reply to: [Resolved] Add activity meta
b a
ParticipantInteresting
The idea came when I was searching for solution and found this
I was implementing
find_in_setmeta query and read the comment below by Willy. Since I don’t want new table for something simple, this sound like a good ideaWordpress allows same key for multiple metas.
Now when I look at that function I think this should allow too, but I want some confirmation before I continue.* @param bool $unique. Optional. Whether to enforce a single metadata value * for the given key. If true, and the object already has a value for * the key, no change will be made. Default: false.March 27, 2014 at 5:46 am #180376In reply to: [Resolved] Add activity meta
modemlooper
ModeratorBP 2.0 adds bp_activity_add_meta()
https://buddypress.trac.wordpress.org/browser/trunk/bp-activity/bp-activity-functions.php#L658
But I’m not sure you can have same key. There is $unique which seems to imply you may have multiple values.
// cc @boonebgorges
March 27, 2014 at 5:26 am #180375In reply to: Disable admin bar
modemlooper
Moderatorget a plugin from wordpress.org instead theme functions.php should bd code for the theme only
March 26, 2014 at 8:46 pm #180354In reply to: Login Redirect to "My Groups" page
shanebp
ModeratorIf your groups are at url/groups/
then try pasting the code below into your theme / functions.phpIt should redirect non-admins to the groups page.
based on https://codex.wordpress.org/Plugin_API/Filter_Reference/login_redirect
function shug_login_redirect( $redirect_to, $request, $user ) { //is there a user to check? global $user; if ( isset( $user->roles ) && is_array( $user->roles ) ) { //check for admins if ( in_array( 'administrator', $user->roles ) ) { // redirect them to the default place return $redirect_to; } else { return home_url('/groups/'); } } else { return $redirect_to; } } add_filter( 'login_redirect', 'shug_login_redirect', 10, 3 );March 26, 2014 at 7:27 pm #180349In reply to: Buddypress tradução pt_BR 1.9.2
danbp
ParticipantPlease write in english on this forum ! 😉
Normally you can download pt_br.po/mo files from
https://translate.wordpress.org/projects/buddypress/1.9.xHave also look here:
https://make.wordpress.org/polyglots/Maybe read here too:
https://codex.wordpress.org/L10n:Localization_Teams#Portuguese_.28Portugal.29_-_Portugu.C3.AAs_.28Portugal.29Or see what you can find here
http://wp-translations.org/March 26, 2014 at 1:33 pm #180328In reply to: Widgets Dissapear
simonwillan
ParticipantMany apologies, When I set the “Activity Streams” Page in BP settings to “None” (deactivate, should have been clearer on that), then I get my sidebar back. When I set “Activity Streams” to one of my existing pages, I can see the Activity Stream just fine, but the widgets in the sidebar no longer display, and is_active_sidebar() is returning FALSE.
I use BP theme compatibility because I am not using an existing WordPress template. It is completely bespoke. I don’t override the default behaviour as I am happy with it using page.php for now.
However I may have just seen my problem. I am using a plugin called “WordPress Page Widgets” which lets me specify a different set of widgets on a per page basis. If I apply the sidebar widgets to every page the default way it works fine. However it is incredibly important that each page has a different set of widgets, and WordPress doesn’t appear to have a way of doing this without the need for a plugin.
Any thoughts?
March 25, 2014 at 4:31 pm #180290In reply to: How does buddypress rewrite urls?
Henry Wright
ModeratorThey’re currently slated for BP version 2.1. See here:
https://buddypress.trac.wordpress.org/ticket/4954March 25, 2014 at 9:00 am #180281In reply to: User can't edit profile page
jslom
ParticipantNo problem! Here’s another update. I kept downgrading versions to figure out which one this originally occurred after and got it. Install Version 2.0.40 https://downloads.wordpress.org/plugin/nextgen-gallery.2.0.40.zip to have it work without interfering with BP. It is running good again for me. I will update once they have confirmed it to be fixed, and will also post back here.
March 25, 2014 at 4:17 am #180273In reply to: [Resolved] missing the style.css stylesheet.
aces
ParticipantBuddypress is a plugin not a theme. It is still bundled with a theme but that isn’t necessary any more and is hidden on new installs – it can be activated with a snippet.
Most normal themes ( that follow official wordpress guidelines ) should be compatible now. For more info see theme compatibility articles in the bp documentation.
March 25, 2014 at 4:07 am #180270In reply to: Redirecting after login/reg
@mercime
ParticipantMarch 25, 2014 at 1:09 am #180257In reply to: Featured Post Pinned to Top of Category Page
@mercime
Participantmake a post featured on the category page list so that it always appears on top
@redf150flames Google is your friend
https://codex.wordpress.org/Sticky_Posts
http://www.wpbeginner.com/plugins/how-to-add-sticky-posts-for-categories-in-wordpress/March 24, 2014 at 9:51 pm #180251In reply to: Plugin for adding books to a profile
March 24, 2014 at 7:56 pm #180248In reply to: Stop BuddyPress SPAM
contrasupport
ParticipantUp to now – Yes – NinjaFirewall combine with Stop Spammers, Akismet, Captcha and other plugins of your choice as long they work together and do not slowing down your website.
The draw back of NinjaFirewall is that you have to know how to set it properly otherwise Editor/Author will have problem updating.
Other things you can do:
If under attack — You still need to scan and look for continuous IP/username and manually add them to the Stop Spammers AND Report them to Stop Forum Spam/Project Honey Pot
If you do not have time to read/check your Themes line by line install Theme Authenticity Checker
https://wordpress.org/plugins/tac/March 24, 2014 at 9:25 am #180229In reply to: activation email for the second time
Henry Wright
ModeratorHi @rita84
Can you try deleting the user via the front-end to see if the problem occurs? For example, sign up as a new user, then go to
members/username/settings/delete-account– ensure you have the delete-account feature enabled in BuddyPress settings under the WordPress admin area.March 24, 2014 at 12:20 am #180219In reply to: Display Profile
Paul Wong-Gibbs
KeymasterAre these two sites two separate WordPress installs, or is it one install and you’re using multisite?
-
AuthorSearch Results