Search Results for 'wordpress'
-
AuthorSearch Results
-
August 26, 2012 at 3:30 am #140236
Devilish Concept
ParticipantSimpler way is to install wordpress access control, this adds a option to every page to make it avalible to be viewable by only vistitors, logged in users and even has a age control on it, you can all set a redirect page incase somone types in the url as this will also remove any page which is hidden from the viewer type from the menu, check it out its awesome
August 26, 2012 at 1:01 am #140231In reply to: How to extend user profiles
modemlooper
ModeratorThat is a core feature in the WordPress admin. Go to settings > BuddyPress
August 25, 2012 at 6:57 pm #140205radiusj
ParticipantNot a single reply yet. Can someone point me in the right direction?
Here’s a little more info that further clarifies:
I’m hoping to use the S2 Member and Buddypress plugins for WordPress to manage volunteers and members at our arts cooperative and website. S2 Member seems well suited for registering both paid members and volunteers (free users) while Buddypress adds the social features needed to help our people work together.
S2 Member had me convinced of easy integration with Buddypress, but this has not exactly been the case. S2 Member Registration fields appear in the Buddypress registration form, but I’m having the following issues
1. Buddypress profile fields allow users to choose if fields should be visible in their profile, or allow admins to set a default visibility for each field. Can I implement this for fields created in S2?
2. Buddypress profile fields are linked to a search for other users that share the value of that field. I had originally thought this would be perfect for a membership directory that categorizes member and volunteer skills, but not sure how to implement a search that works with both types of fields.
3. S2 does not come with it’s own Member Directory, a feature that should be essential. It is a known issue and common complaint, for which the developers have provided some pointers in the right direction, but no comprehensive code that would integrate options into Buddypress. A membership directory is the most essential aspect to our site, but I’m confused as to how proceed, given the limitations of both plugins.
August 25, 2012 at 12:11 pm #140193In reply to: [Resolved] Group Forum Topic Widget?
Austin Nichols
MemberThis is what I was looking for. It could lose the css, but other than it seem to work great.

https://wordpress.org/extend/plugins/bp-recent-groups-topics/screenshots/
August 25, 2012 at 8:45 am #140184In reply to: how to change the link for logout menu
modemlooper
ModeratorAugust 25, 2012 at 12:27 am #140172In reply to: BP Capability
@mercime
Participant@peppermintmochapatty if you are using this theme, https://wordpress.org/extend/themes/first-lego-league-official , you cannot use the second method (creating xxx-buddypress.php) for Step 3 of the BP Compatibility process. Because of the HTML structure of your theme, you’d need to revise 16 template files from the 6 BP folders transferred to your theme’s folder in server.
If you still want to proceed with the instruction, let me know.
August 24, 2012 at 10:51 pm #140167In reply to: [Resolved] Group Forum Topic Widget?
danbpfr
Participanti’m using this plugin on wp 3.4.1/bp 1.6.1
https://wordpress.org/extend/plugins/bbpress-latest-discussion/August 24, 2012 at 4:38 pm #140146danbpfr
ParticipantHi,
try this in bp-custom.php
remove_filter( 'wpmu_signup_blog_notification', 'bp_core_activation_signup_blog_notification', 1, 7 );source infos buddypress /bp-core/bp-core-filters.php
The concerned filter do this
/***
* bp_core_filter_blog_welcome_email()
*
* Replace the generated password in the welcome email.
* This will not filter when the site admin registers a user.
*
* @uses locate_template To see if custom registration files exist
* @param string $welcome_email Complete email passed through WordPress
* @param integer $blog_id ID of the blog user is joining
* @param integer $user_id ID of the user joining
* @param string $password Password of user
* @return string Filtered $welcome_email with $password replaced by [User Set]
*/August 24, 2012 at 4:15 pm #140144In reply to: BP 1.6.1, Error in Activity and Group Page
danbpfr
ParticipantHi,
did you read the warning at the top of the official plugin page ?
https://wordpress.org/extend/plugins/buddypress-usernames-only/The problem is perhaps the plugin ?
August 24, 2012 at 3:08 pm #140137Alexander
ParticipantCool, thanks – admittedly, I’m a little intimidated modifying the theme code, or adding new plugins. But, I have been itching to get my hands dirty under the hood and learn how to do wordpress specifici coding, so this will be a good chance and resource to dive in. I might have to poke you later once I get this rolling. Thanks for your input Aces.
August 24, 2012 at 1:09 pm #140134In reply to: [Resolved] Editing New WordPress Toolbar
iamdhunt
ParticipantWow I made things a lot harder than they should’ve been lol. All I had to do was replace ”!is_super_admin()” with ”!is_user_logged_in()”. Thanks for pointing me in the right direction.
August 24, 2012 at 10:54 am #140125In reply to: [Resolved] Editing New WordPress Toolbar
danbpfr
Participanti’m not a programmer at all, but better try this:
`function add_sumtips_admin_bar_link() {
global $wp_admin_bar;
if ( !is_super_admin() || !is_admin_bar_showing() || is_user_logged_in() )
$wp_admin_bar->add_menu( array(
‘id’ => ‘sumtips_link’,
‘title’ => __( ‘SumTips Menu’),
‘href’ => __(‘http://sumtips.com’),
) );
endif
}
add_action(‘admin_bar_menu’, ‘add_sumtips_admin_bar_link’,25);”`August 24, 2012 at 10:17 am #140123In reply to: [Resolved] Editing New WordPress Toolbar
iamdhunt
ParticipantOk sorry but I’m not the best programmer. Using their menu as an example, do you mean something like this:
”function add_sumtips_admin_bar_link() {
global $wp_admin_bar;
if ( !is_super_admin() || !is_admin_bar_showing() )
return;
if ( is_user_logged_in() )
$wp_admin_bar->add_menu( array(
‘id’ => ‘sumtips_link’,
‘title’ => __( ‘SumTips Menu’),
‘href’ => __(‘http://sumtips.com’),
) );
else
false;
endif
}
add_action(‘admin_bar_menu’, ‘add_sumtips_admin_bar_link’,25);”August 24, 2012 at 10:08 am #140120In reply to: Change redirect link on Toolbar
iamdhunt
ParticipantThanks I got the redirect logout to work by using the function from here: http://projectivemotion.com/2011/07/27/wordpress-always-redirect-to-homepage-after-logout/
Still looking to change the link on the toolbar’s My Account from “Edit Profile” to “Activity”
August 24, 2012 at 9:43 am #140116In reply to: [Resolved] Editing New WordPress Toolbar
danbpfr
ParticipantYou can use a template conditionnal tag.
if ( is_user_logged_in() ) :
your custom menu stuff
else
something for non logged user
endifAugust 24, 2012 at 9:30 am #140113In reply to: Multisite Installation Problem
danbpfr
ParticipantHello,
what is your mother language ?If you use define(‘DOMAIN_CURRENT_SITE’, ‘buddypress.seyte.com’); it means that “buddypres”s is a subdomain of seyte.com !
This suppose also that wordpress is installed at the root of seyte.com.
But you declare define(‘SUBDOMAIN_INSTALL’, false);
Pass this to true instead of false and see what you get.Subdomain install needs also the usage of a wildcard declaration on your host settings.
https://codex.wordpress.org/Create_A_Network
https://codex.wordpress.org/Before_You_Create_A_NetworkIf this is too complicated for you, i suggest that you deactivate all your plugins and custom theme.
Erase the wp-config file and restart your WP install. Be sure that wp is at the root of seyte.com
After this install, go to wp-admin and activate the network install.
When done, activate the buddypress plugin.
Make the setting of BP specially “blogs” creation.
Activate bp-default theme and test your install.
If everithing is working, create a new blog and test again.
Now if you want you can change the themes of the main site and/or the newly created blog.
And finally reactivate your other plugins (if you use some)August 24, 2012 at 9:18 am #140112In reply to: [Resolved] Editing New WordPress Toolbar
iamdhunt
ParticipantThanks but I already understand how to add items to the menu, I’ve already done that. What code do I need to add to hide those menu items from non-logged in users?
August 23, 2012 at 8:55 pm #140095In reply to: BuddyPress ecommerce plugins
thirstcard
MemberHi karmatosed
I am looking for a deeper integration with BuddyPress. For example, a lot of the ecommerce plugins available let your customers buy something. They even let them create a ‘shopper’ account. BUT – this ‘shopper’ account isn’t a wordpress or buddypress account.
I have my eye on WooCommerce at the moment. Perhaps there are some more good ones available?
August 23, 2012 at 7:37 pm #140091In reply to: BuddyPress ecommerce plugins
Tammie Lister
ModeratorWhen you say ‘BuddyPress’ the logins that people use are WordPress so if that’s all you want them to be able to do you are fairly open to solutions that work on WordPress. However, are you looking for more deeper integration with BuddyPress and your shop?
August 23, 2012 at 6:54 pm #140087In reply to: How to Optimize and Maximize BuddyPress Performance
frank tredici
MemberThanks @FIQ
NextGen was only installed last week because we wanted to publish a photo gallery. The install and activation of NextGen really had little to no impact on the site — it was already trudging along prior to NextGen.
But I’ll see if I can have it load only on the photo galley page.
Images are optimized using “WP Smush.it”
Not sure what the “slider” is.
As for the widgets, we eliminated a number of them during initial setup. We need the 3-4 widgets we are currently using.
As for the theme, we developed it our self. We have on staff, a pro designer/theme-developer that develops themes for all our WordPress sites. The theme for our BP site is identical to the theme for our complementary public facing site. The public facing site runs a WP blog and it is lightning fast (on the same sever as well)
August 23, 2012 at 6:44 pm #140085In reply to: How to Optimize and Maximize BuddyPress Performance
Austin Nichols
MemberThat’s a ton of scripts. My bet just by looking at it is the Nexgen is slowing things. Check these out….
Only loads Nextgen on pages where it is used:
http://www.markstechnologynews.com/2012/02/nextgen-gallery-optimizer-wordpress-plugin-helps-boost-your-sites-page-load-speed.htmlOptimizes images:
http://shanebishop.net/ewww-image-optimizer/I would limit the number of images in your slider and other basic steps. You should also limit the number of widgets you use. It’s hard to tell just by looking at what you posted. Not sure what type of theme you are using, but unless you built it yourself or are using the default theme I would bet it extremely bloated like almost all premium themes sold today.
August 23, 2012 at 4:06 pm #140081tbhozie
MemberWell I looked through both of those, couldn’t quite figure it out, I believe I am on the right track though with this website I found : http://www.peterrknight.com/get-wordpress-user-role-by-id/
Only problem is I am not getting errors, but when I try to set it as my role I also get no result, but I am going to keep hacking at it.
August 23, 2012 at 4:03 pm #140080danbpfr
Participant@travel-junkie It’s a myth yeah, but it’s not a myth that at each page load, the page is recontructed with all the plugins, filters, filters of filters, and all the rest. The amount count or better said the server settings of many details such as php memory, max_exec etc
You’re right, good coding practice is the primar condition, but who knows that when installing a plugin ? A quality plugin coded under the 4.x area isn’t really quality satisfying today. Awfull plugins writen with the feet, but doing the job (even if penibly) are(where) legion.
Most of the plugin’s user are not php guru’s to see what changed, what is good or not in the code.
Even pro developper’s are not all qualified to be quality dev’s. Go, go, go, allways faster und hektische arbeit zum schluss. You’ll probably know that.
And what is “quality” in the wpsphere ? 5 minutes install, download a theme, a plugin by one click and bum, done ? In the best case, user will shout “it work’s !”

It’s not quality, it’s just an easy craftwork.
Aber sonst alles klar. Tchuss
EDIT: a funny conclusion to this just posted here few minutes ago in this tread:
https://buddypress.org/community/groups/creating-extending/forum/topic/bp-better-directories-abandoned/
that mentionned this (very explicit in my mind)
https://wordpress.org/support/topic/plugin-bp-better-directories-ready-or-notAugust 23, 2012 at 12:59 pm #140055miguelcortereal
ParticipantThe current version of SeoPress conflicts with group forums, you can’t edit or delete topics and shows wrong count for each forum topics list, So its unusable in my case.
Totally agree with regular posting and all that stuff. The problem is on a regular wordpress blog, you need to adjust seo settings otherwise you will be producing duplicated content and getting penalties from google on your rank.
Depending on the theme you use meta titles and meta description change, You may want to control that too to adjust it to your site specifics.As far as I know target keywords is the primary criteria search engines use to map sites and build their listings to output in search queries, why shouldn’t one exploit that to be found by the keywords he wants to and not by some random keywords that he never knows what they are?
Totaly agree with G+ circles and add Facebook, Twitter, and the rest of social networks.
When you have a site you must have a strategy for capture visitors, You have plenty that influence how your site is build. Search engines, social networks, advrtisement, you name it.Returning to my inicial question, What’s the best way to handle SEO optimization with BP?
August 23, 2012 at 10:42 am #140043In reply to: [Resolved] Editing New WordPress Toolbar
-
AuthorSearch Results