Search Results for 'wordpress'
-
AuthorSearch Results
-
October 13, 2010 at 10:52 pm #95105
In reply to: Image quality or compression of user avatars
rich! @ etiviti
Participantwordpresss but this filter can override the jpeg default (which is 90) `apply_filters( ‘jpeg_quality’, $jpeg_quality, ‘image_resize’ )`
October 13, 2010 at 7:54 pm #95091In reply to: New Buddypress Theme: Custom Community – 1.0
cryptidresearch
MemberAlright, concrete feedback now that I’ve played with your features.
1) Header image is too small. I would like options to have a larger image. I like 275 px
2) Remove the search from the header. I’d like options to remove that. It’s unneeded for my site.
3) Title. It’s currently behind the gray bar for the buddypress. Move it down?Now, I’m just learning PHP, been using HTML for years. New to WordPress in last year. Can I make the above changes somehow in the style.php? I hate to make changes and break it.
I like that it uses the custom menus, so much of my information needs to be accessed in it’s categories.
Thanx for the hard work!
October 13, 2010 at 5:39 pm #95071In reply to: Post rating/karma for BuddyPress group forums
Dwenaus
ParticipantI eventually built a plugin that allow people to rate forum posts: https://wordpress.org/extend/plugins/buddypress-rate-forum-posts/
October 13, 2010 at 3:53 pm #95069In reply to: Database Export
blinovitch
ParticipantI used WP-DB-Backup (https://wordpress.org/extend/plugins/wp-db-backup/), which can export all the tables specified, to successfully export — and re-import via the phpMyAdmin panel — the whole megillah, including BP-specific data.
October 13, 2010 at 3:52 pm #95068In reply to: How to manually approve a new registration?
@mercime
ParticipantOctober 13, 2010 at 3:38 pm #95065James
Participantok, with thanks to http://cleverness.org/2010/08/08/add-user-types-to-wordpress-and-buddypress/ found another starting point:
Put this in you BuddyPress theme /registration/register.php file:
`
User Type A
User Type B
User Type C`
Put the following code in your theme’s functions.php:
`<?php
/* Add sign-up field to BuddyPress sign-up array*/
function bp_custom_user_signup_field( $usermeta ) {
$usermeta = $_POST;return $usermeta;
}
add_filter( ‘bp_signup_usermeta’, ‘bp_custom_user_signup_field’ );/* Add field_name from sign-up to usermeta on activation */
function bp_user_activate_field( $signup ) {update_usermeta( $signup, ‘signup_type’, $signup );
return $signup;
}
add_filter( ‘bp_core_activate_account’, ‘bp_user_activate_field’ );function synchro_wp_usermeta($user_id, $password, $meta) {
global $bp, $wpdb;$type = $meta[signup_type];
update_usermeta( $user_id, ‘signup_type’, $type );
}
add_action( ‘wpmu_activate_user’, ‘synchro_wp_usermeta’, 10, 3);
`This should create selection of account types on the signup page.
If anyone knows how to update profile-loop.php, so that every account type would have different profile group, please share your opinion.thanks.
October 13, 2010 at 3:16 pm #95062In reply to: How to manually approve a new registration?
paulhastings0
ParticipantIt means the plugin will only work for regular WordPress installs but not for WordPress MU or WordPress Multisite.
October 13, 2010 at 2:33 pm #95051In reply to: How to manually approve a new registration?
rich! @ etiviti
Participantjust wrote a plugin but for single wordpress only
https://wordpress.org/extend/plugins/buddypress-pending-activations/October 13, 2010 at 8:38 am #95029JohnnyScience
MemberThese are my active plugins, which one do you think would affect something like this?
Adrotate
After the Deadline – Adds a contextual spell, style, and grammar checker to WordPress. Write better and spend less time editing.
Akismet – checks comments against akismet web sercvice to see if they look like spam
Autochimp – mailchimp plugin
Automatic WordPress backup
BP Disable Activation
BP Group Managment
Buddypress – this does have an upgrade to 1.2.5.2 – would this affect things perhaps?
Buddypress Like
Buddypress Admin Bar Mods
Buddypress Rate Forum Posts
Buddypress Templete Pack
Configure SMTP
Google analytics for wordpress
Invite anyone
Lab Photobooth
Lab Photo
Lap Protect Plugin
Mailchimp
Microkids Related Posts
OEMBED FOR BUDDYPRESS
Cinocopa viewer
Theme my Login – which I dont even know if its working
TinyMCE advanced
Users to CSV
Welcome Pack – which I dont even have setup or use yet
WP-Useronline – works with my CometChat chat bar
WPtouch iphone theme
Any ideas which one it could be?
October 13, 2010 at 6:28 am #95020In reply to: BP advertises “WordPress Blogging” .. but how?
Hugo Ashmore
ParticipantYou’ve sort of taken two slightly different responses and tried to meld them into one, you originally asked about users being allowed to contribute/provide content ; I pointed out that you can allow selected users to write content on the main blog that BP runs on, it was also mentioned that MS blogs could be enabled, if you have enabled MS you now have two options to allowing users to contribute content on the site.
You do not create user blogs yourself the user creates the blog themselves and in doing so is automatically the admin for that blog, bear in mind that these blogs are full standalone WP blogs, I doubt you want to be creating them manually on behalf of your users, you could do though.
The other option is as I mentioned originally and to which you allude to in asking “and grant them the author level manually?” you would be doing this if you wanted to add authors to the main blog.
You might need to clarify for yourself the distinction between user blogs and what is often referred to as the ‘Main Blog’
October 13, 2010 at 3:32 am #95015In reply to: BP advertises “WordPress Blogging” .. but how?
Webbasica
ParticipantThanks people. Here is an update:
I’ve added the MU feature, but now I’m kinda wondering if I have to create every new user blog myself, and grant them the author level manually?October 12, 2010 at 7:59 pm #94980In reply to: New Buddypress Theme: Custom Community – 1.0
konradS
Participanthere’s the link to custom community theme in the WP repository:
https://wordpress.org/extend/themes/custom-communitydemo site is now here:
http://www.custom-community.themekraft.com/October 12, 2010 at 5:31 pm #94973Hugo Ashmore
Participant@nuprn1
fwiw – the wordpress backend checks if the same user_nicename AND user_login exist. if it does, it will attach a suffix (this is part of wp-includes/registration.php – wp_insert_user)So does that imply it’s not strictly a BP issue/ in which case the ticket really needs directing to WP if it’s to be dealt with.
October 12, 2010 at 5:22 pm #94968rich! @ etiviti
Participantfwiw – the wordpress backend checks if the same user_nicename AND user_login exist. if it does, it will attach a suffix (this is part of wp-includes/registration.php – wp_insert_user)
October 12, 2010 at 1:58 pm #94935In reply to: BuddyPress and WP Custom Post Types?
kunalb
ParticipantAlso, try out EventPress https://wordpress.org/extend/plugins/eventpress/ . That is the only plugin right now using BPCP (BPCP was developed as an offshoot of EP, to be honest) and can give you an idea of the kind of functionality provided by EventPress.
October 11, 2010 at 10:53 pm #94887In reply to: URGENT: I NEED YOUR ASSISTANCE, PLEASE
Roger Coathup
ParticipantThis page tells you how to create widgets for WordPress / BuddyPress:
October 11, 2010 at 10:18 pm #94884In reply to: I can create a blog but not access it
Active Citizenship
ParticipantOK. Thanks to both of you. I was actually already using a WP theme and even after BP and all plugins were deactivated, I still was not able to enter a blog (even on the backend).
So I contacted my site provider and they fixed by re-applying my account’s wildcard settings. I however needed to clear my browser’s cache and cookies before I could reach my subdomains (blogs) properly.Now back to the prob I was originally trying to address, getting all the posts on the subdomain blogs to appear on my main site page. It is unclear to me if Sitewide tags can actually do this
( see discussion https://wordpress.org/support/topic/one-blog-streaming-multiple-smaller-ones). All posts do appear on the Activity page. The problem would be resolved if I could just get my Activity page to appear as my main page
Thoughts?
October 11, 2010 at 6:57 pm #94858rich! @ etiviti
Participanttry ftp’ing and renaming/removing all the other plugins (probably a bp plugin causing the issue)
October 11, 2010 at 6:22 pm #94856urlwilliams
MemberI am only getting 404 errors and am able to see login screen, but no site access and no wp-admin access
October 11, 2010 at 5:56 pm #94855islandcastaway
ParticipantFigured it out .
global $bp;
echo get_usermeta( $bp->displayed_user->id, ‘aim’);October 11, 2010 at 11:38 am #94827In reply to: If Buddypress, then sidebar and css rules
Roger Coathup
ParticipantTake a look at this page: https://codex.buddypress.org/developer-docs/conditional-template-tags/
Essentially, something like !bp_is_blog_page() will return TRUE when you are on any page that isn’t a WordPress blog page – i.e. when you are on any of the Social Network (BuddyPress) pages.
Alternatively, the default theme already embeds some class information in the body tag – although there is no single one for a BuddyPress page, so you’d have to catch all the different classes.
October 11, 2010 at 7:11 am #94811modemlooper
ModeratorWe cant get to your group forum because it’s private.
You groups forum link should be
http://gwspacesociety.org/wordpress/groups/students/forum/
If you can’t get to that link then you have a problem.
October 11, 2010 at 3:36 am #94800Kirk
ParticipantNo I’m the admin. So that is not the problem. Maybe I dont understand WP permalinks or BuddyPress permalinks.
1. In WP to make a menu link, you create a page
2. In my experience WP autopopulates the permalink
3. When you preview the site in a new window/tab the menu link is there and it works. end of story.How do I do the same with a forum in a BuddyPress group, so that users don’t have to drill down into the site? I get complaints from users they cant find the forum I’m trying to setup. So I assume the most straightforward solution is to make a WP menu link directly to the group forum (understanding they wont see it or get to it if they are not already a member of the BuddyPress group).
Any thoughts appreciated!October 10, 2010 at 5:01 pm #94770In reply to: Topic marking – solved/not solved
LPH2005
ParticipantMost likely after the release of bbpress as a plugin then people will start looking into ways to enhance the forums. This is probably first quarter 2011.
October 10, 2010 at 1:17 pm #94752Toby Cryns (@themightymo)
ParticipantPJ – Check out Heavy Analytics – http://heavyanalytics.com. It is a plugin that we are developing for this purpose. The purpose of the plugin is to give you actionable information about your WordPress/BuddyPress users. For example, it will help you figure out who the leaders in your community are, who the most active members of your community are, etc.
We will be releasing the public Alpha soon and would love to have you test it out and provide some feedback when it is ready! Just enter your email address into the sidebar of the Heavy Analytics site.
Toby
-
AuthorSearch Results