Search Results for 'wordpress'
-
AuthorSearch Results
-
September 18, 2011 at 3:32 pm #120244
In reply to: Fatal error installing BuddyPress 1.5
Paul Wong-Gibbs
Keymaster> 2) I unzip and move the folder /1.5-beta-3/ to /wp-content/plugins/
BuddyPress must be wp-content/plugins/buddypress. Rename the folder (the error’s because WordPress is trying to load two copies of BuddyPress!).
September 18, 2011 at 2:15 pm #120242In reply to: Buddypress 1.5 RC1 – Default Template Header Graphic
Paul Wong-Gibbs
KeymasterSeptember 17, 2011 at 9:26 pm #120229In reply to: Can I limit members to a predetermined list?
Paul Wong-Gibbs
KeymasterSurely you could just add the user accounts into WordPress as usual (via wp-admin, if you want)? When those people log in to the site, they’ll then have the option of completing their BuddyPress profile.
September 17, 2011 at 4:47 am #120211Walid
Participant@r-a-y
Thank you, I posted it here:
https://buddypress.trac.wordpress.org/ticket/3587September 17, 2011 at 12:05 am #120203r-a-y
Keymaster@walid3 – This is a valid concern. Please post a ticket – https://buddypress.trac.wordpress.org/newticket/
BuddyPress currently checks if alphanumeric characters are inputted for the username during registration validation.
Unless there’s a valid reason for the alphanumeric check, it might be wise to just piggyback off of WP’s username validation functions.
September 16, 2011 at 8:29 pm #120199In reply to: Add Profile link to WP Custom Nav Menu
modemlooper
ModeratorGoogle programmatically adding link to WordPress nav it’s not a BuddyPress issue. However, it’s a needed request and I’ll post a code how to over the weekend
September 16, 2011 at 7:54 pm #120197@mercime
ParticipantSeptember 16, 2011 at 3:42 am #120168In reply to: Looking to see if this exists.
September 15, 2011 at 2:59 pm #120123In reply to: Sidebar is under content on Buddypress pages.
@mercime
ParticipantNo, you should not be editing files at plugins/bp-template-pack/. During the BP Compatibility process, 6 folders with BP template files were transferred to your active WP theme folder in server – activity, blogs, forums, groups, members, and registration folders.
– Download above-mentioned folders from your WP theme folder in server into your computer.
– Make the revisions in the files specified in Step Three https://codex.buddypress.org/theme-development/wordpress-to-buddypress-theme/
– Upload revised files to server.
– Done.September 15, 2011 at 3:23 am #120103In reply to: Is this possible to do? (on a multisite)
Adam
MemberI am suppose to be looking for something called “networks” to create multiple networks with the plugin “WP Multi network” but I dont see this link any where under network admin….Ideas?
for refrence: wp multi network
What I have is network settings and network set up. But no “network” option
September 15, 2011 at 2:09 am #120099In reply to: Sidebar is under content on Buddypress pages.
@mercime
ParticipantOpen up activity/index.php and replace at the top:
``with
``at the bottom of activity/index.php, replace the bottom part
``
with
`
`Note: You would also want to change header tag in activity/index.php from
``
with your theme’s header tag for seamless look
``
Save activity/index.php and upload to server. Then do this for the remaining 12 files as indicated in Step Three of this codex page https://codex.buddypress.org/theme-development/wordpress-to-buddypress-theme/
September 14, 2011 at 7:48 pm #120079In reply to: [resolved] Issue with navigation – buddybar
valuser
ParticipantCopied from https://plugins.svn.wordpress.org/buddybar-widget/trunk/buddybar-widget.php
`<a href="”>Messages`
or
`<a href="”>Inbox``<a href="/sentbox”>Sent`
and so on
September 14, 2011 at 5:33 pm #120071In reply to: Adding Post & Comment Counts to the Blogs Loop
Paul Wong-Gibbs
KeymasterThe blogs loop (best called the “site” loop nowadays) just iterates through your sites. You need to do regular WordPress post loops or functions to get those sites’ data. This is of course going to be awfully slow on page load, so I’d cache it somewhere, too.
September 14, 2011 at 2:08 pm #120060In reply to: bp-messages Compose Message autocomplete issue
rahul.dev
MemberYes there is a better solution to this problem i am code savvy and i have myself invented this solution
Step:1:
The solution is copy the content all content of file wp-load.php which you will find in the root of wordpress installation directory root directory. Then create a new file rahuldev.php paste all the code in wp-load.php to rahuldev.php file plus at the end of that rahuldev.php file add this small code as below
?php
$resultrah = mysql_query(“select user_login, user_nicename from wb_users where user_login like ‘%”.$_POST.”%’ or user_nicename like ‘%”.$_POST.”%'”);
while($row = mysql_fetch_array($resultrah))
{
?>
?php echo $row;?>?php
}
?>
replace ?php with <? php
make sure the name of the table if it is not default set during installation then that should be the name of the table as the name is in your installation
once the above code is added to the bottom of the new file then save the new file to the root of your wordpress application ie where there is wp-load.php there along with it should be our new file rahuldev.phpStep:2:
Open wp-content/plugins/buddypress/bp-messages/bp-messages-cssjs.php filereplace
var acfb =
jQuery(“ul.first”).autoCompletefb({urlLookup:’root_domain . str_replace( ‘index.php’, ‘/wp-load.php’, $_SERVER ) ?>’});
with
var acfb =
jQuery(“ul.first”).autoCompletefb({urlLookup:’root_domain . ‘/rahuldev.php’ ?>’});And now enjoy my magic
Thanks
Take careSeptember 14, 2011 at 2:05 pm #120059In reply to: bp-messages Compose Message autocomplete issue
rahul.dev
MemberYes there is a better solution to this problem i am code savvy and i have myself invented this solution
Step:1:
The solution is copy the content all content of file wp-load.php which you will find in the root of wordpress installation directory root directory. Then create a new file rahuldev.php paste all the code in wp-load.php to rahuldev.php file plus at the end of that rahuldev.php file add this small code as below
<?php
$resultrah = mysql_query(“select user_login, user_nicename from wb_users where user_login like ‘%”.$_POST.”%’ or user_nicename like ‘%”.$_POST.”%'”);
while($row = mysql_fetch_array($resultrah))
{
?><?php
}
?>make sure the name of the table if it is not default set during installation then that should be the name of the table as the name is in your installation
once the above code is added to the bottom of the new file then save the new file to the root of your wordpress application ie where there is wp-load.php there along with it should be our new file rahuldev.phpStep:2:
Open wp-content/plugins/buddypress/bp-messages/bp-messages-cssjs.php filereplace
var acfb =
jQuery(“ul.first”).autoCompletefb({urlLookup:’root_domain . str_replace( ‘index.php’, ‘/wp-load.php’, $_SERVER ) ?>’});
with
var acfb =
jQuery(“ul.first”).autoCompletefb({urlLookup:’root_domain . ‘/rahuldev.php’ ?>’});And now enjoy my magic
Take care
September 14, 2011 at 10:44 am #120048expressionsinweb
MemberI should have looked at the error log before! Errors were (lots of them, all for the same bp core file):
With BP 1.2.10 – PHP Fatal error: Cannot access empty property in /var/www/wordpress/wp-content/plugins/buddypress/bp-core/bp-core-notifications.php on line 63, referer: some web page etc.
Seems to me that when bp-core-notifications.php queried the db for notification data it somehow broke and stopped outputting. The last word of the HTML output of the page was ‘Notifications’.
BTW: Can’t edit post here, have to delete and add another!
September 14, 2011 at 10:36 am #120045expressionsinweb
MemberAfter I updated to BP 1.5 RC1 error were from ” /var/www/wordpress/wp-content/plugins/buddypress/bp-members/bp-members-notifications.php”
September 14, 2011 at 8:54 am #120041In reply to: How to manage users & their extended profiles?
Jenny Beaumont
Participant@Meini, just tried to download your files, link is not working.
Anyone else made progess on this? Seems like such a fundamental idea, can’t believe it doesn’t exist already! Am hoping future version of Buddypress work to add a more seamless interface btwn WordPress and Buddypress.
cheers!
-jennybSeptember 14, 2011 at 6:20 am #120037In reply to: Plugin to add content to my friends member pages
ewebber
Participant@leethompson does this plugin help? https://wordpress.org/extend/plugins/bp-profile-privacy/
September 14, 2011 at 1:17 am #120017In reply to: Not receiving registration confirmation email
aces
ParticipantIf you have never received an email (and it’s not stuck in a spam or junk folder) then your web host may need an extra plugin to use email with WordPress.
https://wordpress.org/extend/plugins/wp-mail-smtp/ ( http://www.callum-macdonald.com/code/wp-mail-smtp/ ) adds extra email settings to wordpress and has a tool to debug smtp / php mail. This plugin has previously been discussed: https://buddypress.org/?s=wp-mail-smtp ….
Alternatively the codex has another suggestion.
September 13, 2011 at 9:44 pm #120007In reply to: Theme out of line
Mike84
MemberIf you can copy and paste your wordpress themes page.php file here, ill see if I can help.
September 13, 2011 at 8:32 pm #120002expressionsinweb
MemberFigured this out. The admin bar was broken at “Notifications”, this stopped the page from loading fully and some JS for wordpress was not loaded. The data in the database looked ok, but there was a lot of notifications in the table as I deleted a lot of content/posts recently. Anyway I emptied the wp_bp_notifications table and it’s working now. Great!
September 13, 2011 at 7:15 pm #119990In reply to: Theme out of line
September 13, 2011 at 3:07 pm #119978In reply to: BuddyPress Integration with theme
@mercime
ParticipantSeptember 13, 2011 at 3:00 pm #119976@mercime
Participant== if BuddyPress can be easily integrated into an existing membership site community of over 100 people ==
Curious since you mentioned Joomla, is your current installation a Joomla site with WordPress integrated for the blogging portion? Or are you referring to a WordPress install with 100 users? If it’s a WP install, then BP addition is not going to be a problem. The WP user would be recognized when he/she next logs in. -
AuthorSearch Results