Search Results for 'wordpress'
-
AuthorSearch Results
-
June 6, 2011 at 6:48 pm #114002
r-a-y
KeymasterFor a free alternative, you can try Theme My Login:
https://wordpress.org/extend/plugins/theme-my-login/This will make your login page:
hxxp://example.com/login/And also, I believe buddydev.com offers a plugin for this as well, but it’s a premium plugin.
June 6, 2011 at 6:46 pm #114001In reply to: BuddyPress Template Pack 1.1 upgrade
r-a-y
Keymaster@boonebgorges – Looks like the button hooks are missing in BP Template Pack:
https://buddypress.trac.wordpress.org/browser/tags/1.2.8/bp-themes/bp-default/functions.php#L339This will fix the issue stevieg is experiencing.
June 6, 2011 at 6:00 pm #113984In reply to: Buddyvents 1.2.2
lucaweb
MemberHello Travel-Junkie,
i’m thinking about the purchase of BuddyVents but i’d like tohave some info about this:i’m working on a new project based on WordPress Multisite and Studiopress Genesis Framework, i yet purchased Genesis Connect for run BuddyPress on Studiopress Theme .. what i need is to manage events and locations too, i mean i need to have a page for single location also with all informations (i taked a look at scubavagabonds.com and something like this http://scubavagabonds.com/dive-schools/aquatours-almeria/ wit a tab menu could be good) and have also a list of locations similar at that of events (like this http://test.shabushabu.eu/events/). More i need to have categories (better tags also), global search ecc ecc … so i know maybe i’m asking a lot but just i’d like to undestand if with this plugin i can do something near at my idea …
thank
LucaJune 6, 2011 at 5:41 pm #113980In reply to: Can’t get to BP from WP
@mercime
ParticipantDeactivate BuddyPress. Then re-upload BuddyPress files manually – FTP or cpanel, etc – clear cache, then activat BP again.
Another note, if you installed WordPress via simplescripts or fantastico, then I suggest you start from scratch and install WP manually – upload via FTP/cpanel, create DB, etc.
June 6, 2011 at 9:11 am #113964In reply to: Activity posting does not work …
flemmingbjerke
MemberThank you, it turned out to be the plugin bp-tinymce that made the problems. The activity/post/ issue was a haphazard.
wordpress: 3.1.2
buddypress: 1.2.8June 6, 2011 at 2:20 am #113953In reply to: [New Plugin]External Member Blogs
Sofian J. Anom
Participant@Bowromir – On the last activate this plugin I got some error. I tried to activate it on the WordPress 3.2-beta1 (multisite) and BP 1.2.8.
June 6, 2011 at 2:10 am #113952@mercime
Participant== My new user registrations only appear in Network Admin -> Users. ==
Yeah, that’s how it’s done now since around WP 3.1 multisite, one is listed as user of a network – one login to all sites of multisite install as a subscriber (or role which the Super Admin set in options for new users).
This plugin could help with what you want to do https://wordpress.org/extend/plugins/multisite-user-management/
June 5, 2011 at 8:58 pm #113948Prince Abiola Ogundipe
Participant@hnla, @mercime, I just created multiple sidebar on my test site, i followed tutorial from the following link : http://www.quickonlinetips.com/archives/2007/11/how-to-create-multiple-dynamic-sidebars-for-wordpress-widgets/ and i have the extra sidebar widget, however, they still show as one with no space in between the content so please how can i achieve this.i want the sidebars to have space inbetween one another.
my test site is : http://naijaping.co.cc/
thanks
June 5, 2011 at 5:22 pm #113937@mercime
Participant@Scotty501 I just checked out fishbook theme in test install. The activity lists are not going bonkers like what’s happening in your site. I would backup your current fishbook theme (with your mods) to computer hard drive, then rename/delete fishbook theme folder, and re-upload fresh fishbook theme https://wordpress.org/extend/themes/fishbook-buddypress-buddypack
June 5, 2011 at 2:26 pm #113926In reply to: How to delete my account from here
Andrea Rennick
ParticipantThey are tied in with wordpress.org accounts. Not sure you can.
Just stop posting?
June 5, 2011 at 9:22 am #113913In reply to: Call to arms – Own your task
Paul Wong-Gibbs
KeymasterHere’s another easy one: https://buddypress.trac.wordpress.org/ticket/3266
June 5, 2011 at 4:11 am #113902In reply to: How are group rss feeds generated?
Virtuali
ParticipantCheck this out: https://codex.wordpress.org/Customizing_Feeds
I am pretty sure we wire around wordpress feeds, but I’m not positively sure.
June 4, 2011 at 11:18 pm #113881In reply to: How to see if a user is in a group
Paul Wong-Gibbs
KeymasterThat is neither core WordPress, or core BuddyPress
What other plugins do you have running?June 4, 2011 at 4:04 pm #113855In reply to: Insufficient permissions
Virtuali
ParticipantUnder wordpress MU?
From my understanding your users shouldn’t need to go into the backend to set theme. They should have preset themes.
June 4, 2011 at 3:59 pm #113850In reply to: Insufficient permissions
Virtuali
ParticipantThats just default settings in wordpress.
June 4, 2011 at 3:42 pm #113847In reply to: Activity posting does not work …
Paul Wong-Gibbs
KeymasterWhat versions of WordPress, BuddyPress are you using? What theme and plugins are you using?
June 4, 2011 at 3:41 pm #113846In reply to: problem with custom log-in plugin
Paul Wong-Gibbs
KeymasterWhich plugin exactly? Unless it’s a BuddyPress-specific plugin, you’re best to contact the author via the wordpress.org forums for any support.
June 4, 2011 at 11:08 am #113839In reply to: Bug: BuddyPress to WordPress profile syncing broken
webpagesindiadotnet
Member@paulhastings0 Try this filter, it will sync user name on the fly
just paste this block of code in your template functions.php
`
/////////////////////////
///// To sync user names on the fly, it will show xprofile fullname of user
/////////////////////////
function wpi_sync_member_name($data) {
global $members_template, $bp;#$firstname = xprofile_get_field_data( 1, $members_template->member->id ); // 1 = firstname > wp_bp_xprofile_fields.id
#$lastname = xprofile_get_field_data( 51, $members_template->member->id ); // 51 = lastname > wp_bp_xprofile_fields.id
#$fullname = $firstname .’ ‘.$lastname;
#return $fullname;return bp_core_get_user_displayname( $members_template->member->id );
}
add_filter( ‘bp_get_member_name’, ‘wpi_sync_member_name’ );
`June 4, 2011 at 10:14 am #113836In reply to: “Create group” returns me to home
@mercime
Participant@athimm could be the permalink structure like this ticket https://buddypress.trac.wordpress.org/ticket/1766
June 4, 2011 at 10:06 am #113835In reply to: Sidebar and page layout when clicking View
@mercime
ParticipantThis is the template which handles the page. Copy over bp-default’s permalink.php to your child theme’s folder, and paste inside folders /members/single/activity/ following directory structure of bp-default
June 4, 2011 at 7:22 am #113832In reply to: Avatar Img Alt Tags
covandy
MemberI don’t think this is the solution I am looking for? All I am looking to do is change the
``
I want to find the file within buddypress or wordpress that defines the default alt value and change it.
Unless your method does this and I have overlooked it?June 4, 2011 at 6:50 am #113828wp-vish
MemberUse this plugin: https://wordpress.org/extend/plugins/login-with-ajax/
June 3, 2011 at 4:27 pm #113779In reply to: Need Examples
justbishop
MemberHi, I run RiotCart
Just wanted to pop in and say that I’m no longer using the BP groups component for anything but a private group/forum for my vendors. If you’d like to see the working parts of the site (which is in the midst of an overhaul, so be kind), you can do so here: http://www.riotcart.comI personally think that WordPress is a great platform for running an online shop, and have set up many standalone ecommerce sites for individual crafters using it in conjunction with my personal favorite shopping cart plugin, eShop. This is actually what led to the idea for RiotCart, which is more of a venue for crafters to set up a shop/site in the RC network, rather than a shop in itself. The only thing that RC sells is the monthly shop hosting terms. We use Buddypress more for the shoppers themselves, as it gave me a starting point from which I’ve implimented a p2p feedback system, a “wishlist” feature, and more. I’ve tried offering members the BP groups several different times, and the concept never seems to take off.
June 3, 2011 at 3:11 pm #113771@mikey3d
Participant“Is that a general recommendation?
”
– No! However I have only been using your two codes that works but after awhile when I found the bugs it’s causing of your codes.1. Duplicate Content: Slash and No Slash at the End of URL
2. The page isn’t redirecting properly“I did say it was test code. Looks like you have whitespace issues in your /registration/activate.php. Delete any trailing whitespace from the beginning of that file.”I did put back the
function bp_core_redirect_canonicalin functions.php and deleted redirect trailing slash in .htaccess before process your above posted. It is the same problem I had it before except no warning error show up, only missed a key link in the domain link.I haven’t touch activate.php in bp-default therefore when I looked for trailing space, it looks like this:
`
`If that is what you were talking about I deleted the whole line 1 and I tested it again and result I get when click the activation link in email:
http://www.domain.com/blog/activate/
`Activate your Account
Please provide a valid activation key.
Activation Key:`There is no key link in the domain. e.g.
http://www.domain.com/blog/activate?key=afd7528c3b5664d429f94a2ed59a4c32
The line 1 in activate.php said
“This template is only used on multisite installations.”I have single WordPress. Does it matter? All those error the user still able get in after clicked the activation link in the email. Huh?Is there a fix? What is the solution for Single WP after user completed sign-up?
“Your htaccess rewrite rules look like it will interfere with querystring variables.
eg. example.com/my-page/?variable=my-test”Ha, thanks for noticed.
June 3, 2011 at 1:13 pm #113766 -
AuthorSearch Results