Search Results for 'wordpress'
-
AuthorSearch Results
-
July 16, 2010 at 4:20 am #85853
Carlos Perez
ParticipantCheck this out, maybe it helps
http://wpmu.org/using-jquery-with-wordpress-a-quick-crash-course-and-performance-tips/July 16, 2010 at 3:40 am #85852PeD
ParticipantHi @Burkie .. Do you have any idea when EventPress will be released? Looking at the site, development seems to have stopped.. http://gsocevents.wordpress.com/
Also, I’m not able to see the “Create Event” page anywhere! I can see the /events/ page but that’s it.
Has anyone come across this problem?
July 16, 2010 at 2:19 am #85849@mercime
ParticipantWhat did you install before you had that problem? If plugin, rename the folder of the plugin you installed in plugins folder via FTP or cpanel. If that doesn’t work, access your database and check if you’re still admin.
July 16, 2010 at 1:17 am #85844In reply to: Password controlled signup?
intimez
ParticipantMaybe this work for you:
https://buddypress.org/community/groups/wordpress-mu-secure-invites/July 15, 2010 at 9:39 pm #85829In reply to: [Resolved] Sort by Role
Lance Willett
ParticipantWhy not just use a group for this?
There isn’t a way to do this in BuddyPress without writing your own code to do it. You could use WP_User_Search to look up users, it is defined in
/wp-admin/includes/user.phpstarting near line 637.Here’s an example from http://www.clarksonenergyhomes.com/wordpress/2009/03/16/wp-get-users-by-role-function/ (found via Google).
function get_users_with_role ( $role ) {
// gets all users with specified role
$wp_user_search = new WP_User_Search( '', '', $role );
return $wp_user_search->get_results();
}
This type of user search is intended for use in Administration Panels, not on public-facing pages. So be sure you know why you’re exposing that information before you do it. I’d urge against ever showing a member’s user role publicly. It’d probably be much better to use a Group for those users and display them that way — based on their membership in a certain group instead of their user role.
July 15, 2010 at 8:52 pm #85827In reply to: New buddypress install
Ema
ParticipantHi there,
The same problem!
Tried to change permalink to all others options, but with no success. What exactly should I write down in permalink, and what options to chose? (Url – http://localhost/wbook/…?…/)
Anyway, I am testing Buddypress in localhost on WampServer2.0f for Windows;
Using WordPress 3.0 and the last version of Buddypress.If not, tell me what to change in .htaccess file which looks like this:
# BEGIN WordPress
RewriteEngine On
RewriteBase /wbook/
RewriteRule ^index.php$ – [L]
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule . /wbook/index.php [L]# END WordPress
Please keep in mind, I am not an expert in WordPress and English language.
Thanks, Ema
July 15, 2010 at 8:24 pm #85824Paul Wong-Gibbs
KeymasterFor any future additions to core, I think we’ll make an effort to update on http://bpdevel.wordpress.com/.
July 15, 2010 at 7:20 pm #85801In reply to: How does WordPress/Buddypress work?
Hugo Ashmore
ParticipantI posted a ticket on this and a quick and dirty solution, which I can pastebin if required
Needs to go in a bp-custom.php file in the plugins folder
It’s basic but got a bit fed up having to manually get to dashboard.
July 15, 2010 at 7:11 pm #85798In reply to: bp-group-calendar – not updating group activity
r-a-y
KeymasterWould be interested to see this code, as well as Derek’s changes to it.
I hate what WPMU-Dev did to the free plugins section on their site. Luckily, most of all the good WPMU plugins are now hosted on wordpress.org!
July 15, 2010 at 6:42 pm #85791In reply to: Sending Mass PM as admin possible?
David Lewis
ParticipantI use this plugin http://www.vincentprat.info/dev/wordpress-plugins/email-users/
July 15, 2010 at 6:31 pm #85785In reply to: How does WordPress/Buddypress work?
r-a-y
KeymasterOops… sorry the “My Blogs” menu only shows up if you’re using network mode in WP 3.0! This isn’t necessary unless you want to allow your users to create independent blogs on your site. Sorry for the crummy advice there!
You can always visit the dashboard manually by going to:
example.com/wp-admin/You can also customize the BuddyBar to include a link to the dashboard manually as well.
July 15, 2010 at 6:28 pm #85784In reply to: How does WordPress/Buddypress work?
roelant
ParticipantI really don’t see this “My blogs”! The only thing I see is the My activity, notifications and Visit menu. But there is no way to enter my dashboard!
July 15, 2010 at 5:14 pm #85766sicksight
ParticipantHi!

Does anyone have a solution for this problem? Is it possible to be allowed in capital letters in usernames? All the Links on Google and buddypress.org doesn´t help…
I have tryed out a few things… For example, I’ve replaced in the bp-core-signup.php on line 321
preg_match( "/[a-z0-9]+/", $user_name, $maybe );
with
preg_match( "/[a-zA-Z0-9öäüÖÄÜß]+/", $user_name, $maybe );In line 327 an error message is generated when the user name does not comply with certain criteria.
if ( !validate_username( $user_name, $strict = false ) || in_array( $user_name, (array)$illegal_names ) || $user_name != $maybe[0] )
$errors->add( 'user_name', __( 'Only lowercase letters and numbers allowed', 'buddypress' ) );
When I comment out followed code in Line 327:
!validate_username( $user_name, $strict = false ) ||
my preg_match rule works with the capital letters and special characters, but I think that will later have an impact on the log on and other things.
Capital letters are now being accepted, but no special characters such as “ßöüÖ” … -.-validate_username() is a WordPress function
https://codex.wordpress.org/Function_Reference/validate_username
and it uses
sanitize_user() which is documented here:
https://codex.wordpress.org/Function_Reference/sanitize_userHas anyone any idea how to do this without an sql injection or incompatible usernames later?

I would have liked that a user can log in as “SteffanieKönig” …When we get together at a solution I would like to summarize the whole issue and as a plugin, but I’m at the end of my knowledge! -.-
SickSight
July 15, 2010 at 2:27 pm #85739In reply to: Basic footer
Andrea Rennick
Participant99% of the wordpress themes out there are gpl. snag away.
July 15, 2010 at 1:55 pm #85733In reply to: Forums page re-directs to home page.
Tosh
ParticipantI have this in my wp-config.php file
define (‘BP_FORUMS_SLUG’,’groupforums’);I’m on WordPress 2.9.2 (single), and the latest BuddyPress.
July 15, 2010 at 11:52 am #85723In reply to: Profanity Filter
rich! @ etiviti
Participant@alanchrishughes – try contacting the plugin dev and see if they can update the content filters for buddypress. the only profanity filter bp-ready i’ve seen is https://wordpress.org/extend/plugins/webpurifytextreplace/ but that is a pay-for-solution
July 15, 2010 at 9:12 am #85715In reply to: followers VS friends
@mercime
Participant@grosbouff There is the BP Followers Plugin by @apeatling for your reference
One difference between Friends and Followers is that Friends is in core while Followers feature needs the plugin to be activated.
https://wordpress.org/extend/plugins/buddypress-followers/
https://wordpress.org/extend/plugins/buddypress-private-messages-for-followers-only/The other difference is Followers is ala Twitter following. The “follower” doesn’t need to be approved by the one he follows. While for “Friends” to connect completely friendship request must be approved by the other party.
July 15, 2010 at 8:45 am #85710In reply to: Allow more than one account per e-mail
@mercime
ParticipantMultiple accounts using one email address is more of a WordPress thing, and it’s not natively supported. There’s a WP plugin that did that https://wordpress.org/extend/plugins/allow-multiple-accounts/ in WP 2.9.2 but reported broken for WP 3.0.
July 15, 2010 at 7:17 am #85702In reply to: Sitemap generator beta – looking for a few testers
More Ivyou
Participantwordpress 3, BP. 1.2.5.2, 7000 members
Submitted URLs
216,024
4,975 URLs in web index
bp-sitemap-activity.xml.gz Sitemap Jul 14, 2010 50,000 172
bp-sitemap-groups-f.xml.gz Sitemap Jul 14, 2010 2 1
bp-sitemap-groups.xml.gz Sitemap Jul 14, 2010 10 8
bp-sitemap-members-a.xml.gz Sitemap Jul 14, 2010 43,362 333
bp-sitemap-members-g.xml.gz Sitemap Jul 10, 2010 3 1
bp-sitemap-members-x.xml.gz Sitemap Jul 14, 2010 6,982 430
bp-sitemap-members.xml.gz Sitemap Jul 13, 2010 7,228 1,394
bp-sitemap.xml Index Jul 14, 2010 107,587 2,339July 15, 2010 at 6:18 am #85699In reply to: Forum create only available to certain members
nit3watch
ParticipantBusy looking into that myself as im newb still
Give me a shout if you find something, but should just be simple if else statement.meh im being stupid, else {
wp_redirect( get_option(‘siteurl’) . ‘/about’);instead of redirecting them ( wp_redirect ) you could just hide it in the same statement.
ignore the above, “being stupid”.. Just woke up.
check this out:
http://wpmu.org/how-to-show-or-hide-content-in-wordpress-wpmu-based-on-user-authentication-roles-and-capabilities/July 15, 2010 at 5:37 am #85693In reply to: Forum create only available to certain members
@mercime
Participant@Anton
https://wordpress.org/extend/plugins/buddypress-restrict-group-creation/ requires PHP 5.2
https://buddypress.org/community/groups/bp-group-management/ for extra controlsJuly 15, 2010 at 4:58 am #85692Pisanojm
ParticipantOk, so I changed it around little bit…re-added the header after taking out the search box and am pretty happy with this now. For anybody looking for a starter I’ve included it here below. Couple that with this WordPress Codex article and you should be good to go.
Codex: Styling for Print:
https://codex.wordpress.org/Styling_for_PrintMy final PRINT CSS for Buddypress THANKs to @mercime !!!:
/* > Print Styles MusicPLN.org BP
*/@media print {
body {
background: #ffffff;
font-size: 9pt;
font-family: Arial, Tahoma, Verdana, sans-serif;
color: black;
width: 100%;
margin: 0 auto;
}#search-bar {display:none !important;}
#sidebar { display:none !important;}
#wp-admin-bar {display:none !important;}
#nav { display: none !important;}
#omit { display:none !important;}
#whats-new-form { display:none !important;}
#whats-new-options { display:none !important;}
#whats-new-submit { display:none !important;}
#sub-nav {display:none !important;}
div.item-list-tabs { display: none !important; }div#content .padder {
margin-right: 0px; border-right: 0px;
}#content{
width:100%;
margin:0;
border-top:2px dashed #628FBD ;
font-size: 7pt;
float:none;
}#content a { font-weight:bold;
color:#000066;
text-decoration:underline; }h1, h2, h3, h4, h5, h6 { page-break-after:avoid;
page-break-inside:avoid; }h3 { margin-left:2px;
margin-bottom:0px;
padding-bottom:0px;
}blockquote, table, pre { page-break-inside:avoid; }
ul, ol, dl { page-break-before:avoid; }
img.centered { display: block;
margin-left: auto;
margin-right: auto; }img.right { padding: 4px;
margin: 0 0 2px 2px;
display: inline; }img.left { padding: 4px;
margin: 0 2px 2px 0;
display: inline; }.right { float: right; }
.left { float: left; }
img { page-break-inside:avoid;
page-break-after:avoid; }
}July 15, 2010 at 3:46 am #85678In reply to: Is Buddy Press right for our project?
@mercime
Participant“Is BuddyPress the right foundation on which to create this site?”
Yes it is. Some features you mentioned are already covered out of the box. Some features would have to be expanded on by your programmer.
– https://buddypress.org/about/story/
– http://en.wikipedia.org/wiki/BuddyPress
– https://wordpress.org/showcase/flavor/buddypress/July 15, 2010 at 1:42 am #85661In reply to: WP DashBoard- Replacement for Blogging!…
@mercime
ParticipantUse Jet QuickPress in main blog – https://wordpress.org/extend/plugins/jet-quickpress/screenshots/
You’ll see that there are areas to input tags, categories and dropdown of which blog/s you want to post to.July 14, 2010 at 10:56 pm #85649In reply to: Uninstalling BP
@mercime
Participant“BP seemed to move it into /blog/ subdir.”
BuddyPress did not move anything in your installation, even If you defined BP elsewhere than main blog,Backup database, deactivate BP and BP-dependent plugins, then go to your database and delete around 15 tables with : yourprefix_bp_componentname
If you need to move WP to root, https://codex.wordpress.org/Moving_WordPress – as always, back up your database before attempting the move
-
AuthorSearch Results