Search Results for 'wordpress'
-
AuthorSearch Results
-
July 22, 2010 at 11:41 am #86615
In reply to: WordPress 3.0 + Buddypress — User Creation Problems?
JustinCA
ParticipantAs I said to Paul… Being “a bit off-putting” is not my normal MO, but the original post was written two weeks ago and the only thing that’s happened since is a whole bunch of people have said “I have the same problem”. It hasn’t been until I was “a bit off-putting” that someone actually replied to the original question/post.
Enough about that.
Sorry, but your questions are a bit over my head. Any and all PHP coding I know is completely self taught and I’m not far enough along to grasp what you’re asking me to look for.
At any rate, thanks for the response.
-Justin
July 22, 2010 at 11:24 am #86613In reply to: WordPress 3.0 + Buddypress — User Creation Problems?
rich! @ etiviti
Participanteveryone here is a volunteer and may not read every single thread or know the answer to every unique issue. probably does not help when being a bit off-putting.
All sign-up steps work until the confirmation message? what is the status in the users table for the failed signup user? does each failed signup user have an activation key in the usermeta table? if so – that at least tells us the
bp_core_signup_userprocess works upbp_core_signup_send_validation_email(which only builds the email message and executes wp_mail() )have a look in buddypress/bp-core/bp-core-signup.php at the functions and steps.
if you are using multisite, then it is a different process
July 22, 2010 at 10:59 am #86610In reply to: WordPress 3.0 + Buddypress — User Creation Problems?
JustinCA
Participant@DJPaul
It’s funny you should say that when it wasn’t until two weeks later (after the original post) that a moderator / support team member (you) chimed in on this, and that was because someone (me) wasn’t very polite (intentionally). So it looks like rudeness, not my normal MO, went a little bit further than politeness (this time), but served its purpose none the less. Thanks for responding.Now, to answer your question / statement…
1.) My hosting environment is linux, not windows.
2.) My install of wordpress does send emails successfully, until I activate Buddypress (then it breaks).
3.) The emails aren’t going to SPAM, lol. That was the first thing I checked (on 5 different email accounts).
Again, thanks for the response.
-Justin
July 22, 2010 at 10:58 am #86609In reply to: WordPress 3.0 + Buddypress — User Creation Problems?
JustinCA
Participant@pisanojm
1.) 4xjunction.com
2.) WP 3.0 and BP 1.2.5.2
3.) PHP 5.x
4.) Yes, they allow PHP mail (it works fine until Buddypress is activated)
5.) Yes, I’ve tried with all plugins off
6.) It works with the default as well as any other theme, except BuddypressThanks for the respnose,
-Justin
July 22, 2010 at 8:13 am #86599In reply to: Hide/Remove dashboard from normal members
Sofian J. Anom
ParticipantTry this plugin: https://wordpress.org/extend/plugins/adminimize/
July 22, 2010 at 6:57 am #86595In reply to: Hide/Remove dashboard from normal members
B.
ParticipantLooks like I spoke to soon. Peters Login Redirect Plugin (https://wordpress.org/extend/plugins/peters-login-redirect/) takes advantage of the filter added in 2.6.2. You can read an article about the plugin here http://www.theblog.ca/wplogin-redirect. If anyone else has other ideas let me know. For now I’m just going to send all subscribers to edit profile page upon login from the wp-admin section.
July 22, 2010 at 6:20 am #86591In reply to: Have buddypress not on the root site
r-a-y
KeymasterCheck your front page settings:
https://codex.wordpress.org/Settings_Reading_SubPanelJuly 22, 2010 at 6:15 am #86588In reply to: Have buddypress not on the root site
Reginald
ParticipantI installed buddypress into my main site. I didn’t like the combination and uninstalled with the intention of reinstalling as a sub domain installation. Now my site is looking for http://www.environmentaide.org/activity. Activity no longer exists and the plugin has been removed. I’ve looked everywhere for the pointer to revert to my WordPress default domain.
How do I remove the activity pointer and move on to reinstall buddypress as a separate site?July 22, 2010 at 6:09 am #86587In reply to: WordPress 3.0 + Buddypress — User Creation Problems?
Paul Wong-Gibbs
Keymaster@justinca
It’s the kind of support forum where politeness goes a long way. The only issue I’m aware of with BuddyPress page links is that some installs running on IIS need some extra stuff added; that’s vague because I’m not an IIS user, I don’t have access to a machine to dev on, and I don’t know about the typical Microsoft hosting environment.If your install of WordPress can send emails successfully, then BuddyPress can too. We can’t be held responsible for what emails are marked as spam by mail servers.
You have also told us no details about your setup; please see https://buddypress.org/community/groups/how-to-and-troubleshooting/forum/topic/when-asking-for-support/
July 22, 2010 at 4:45 am #86575In reply to: WordPress 3.0 + Buddypress — User Creation Problems?
Pisanojm
ParticipantJustin what is your Website address?
What version of BP and WordPress?
What version of PHP?
Does your host allow you to send PHP mail?
Have you tried with all plugins off?
Does it work with the default BuddyPress Theme?
This all works fine for me with BP 1.2.5.2 and WP 3.0 using…July 22, 2010 at 4:29 am #86572In reply to: WordPress 3.0 + Buddypress — User Creation Problems?
JustinCA
ParticipantWhat kind of support forum is this? If you google about this “buddypress activation email problem” it’s all over the !@#&% place, and no one has an answer? I’ve seen forum after forum post, thread, question, whatever and well over a dozen “fixes”, none of which have worked for me.
This is absurd. Registrars not getting their activation emails and, as a result, not being able to log in, basically renders Buddypress USELESS. I wished I’d known about this before I spent the last three !@#&% days customizing my site.
Here’s an idea… Don’t release this crap without being 110% sure that the most important feature (people being able to become members) works.
And at the very least can you guys answer the question… How can we fix the problem?
July 22, 2010 at 2:27 am #86568In reply to: WordPress theme vs BuddyPress theme
thekmen
ParticipantThe only issues you should have with a WP theme is all the BuddyPress CSS, easy enough to fix but can require lots of edits depending on the theme.
To include the required BuddyPress JS & ajax functions in any WP theme, all you need to do is add something like the following to your themes functions.php file
require_once( BP_PLUGIN_DIR . '/bp-themes/bp-default/_inc/ajax.php' );
function theme_loaded_init() {
wp_enqueue_script( 'bp-js', BP_PLUGIN_URL . '/bp-themes/bp-default/_inc/global.js', array( 'jquery' ) );
}add_action('wp_head', 'theme_loaded_init', 5);
You would also need to add the BuddyPress template folders to your theme & add either the default buddypress & admin bar css to your css with edits or include the defaults in the above theme_loaded_init function.
also note, some themes that include custom JS can conflict with BuddyPress JS, if the theme is coded properly it should be easy to remove those conflicts on BuddyPress pages.
July 22, 2010 at 2:11 am #86567In reply to: WordPress theme vs BuddyPress theme
B.
ParticipantThanks everyone, I was going to say after the first two post that I was going to jump into Child Theming something I’ve wanted to do for a while. The second two post sound more like using the theme pack and making a standard theme may be a better option. Ah, I’m back where I started! I think I’m leaning towards child theme for two reasons 1) it’s something I’ve wanted to learn and 2) It has all the BP ajax, CSS, etc.
Thanks for your input thus far and I encourage you to keep it coming.
July 22, 2010 at 1:30 am #86565In reply to: BuddyPress Forums WYSIWYG
modemlooper
Moderatorhttps://wordpress.org/extend/plugins/bp-tinymce/
but it was for the old BP
July 22, 2010 at 12:33 am #86564In reply to: @mention in wordpress post comment
intimez
ParticipantWith some people leaving replies in comments and others replying in activity/updates, this fragments the community discussion. For me, I prefer have discussion in post since relates to topic. Any coders would like to help?
July 22, 2010 at 12:00 am #86562In reply to: WordPress theme vs BuddyPress theme
Andrea Rennick
ParticipantI only start with a child theme off the default BP theme, *if* the markup of the non bp-areas (blog pages, etc) is close to what I want in the end.
July 21, 2010 at 10:37 pm #86550In reply to: WordPress theme vs BuddyPress theme
Paul Wong-Gibbs
KeymasterI disagree. Using the BP Template Pack and building as a child theme of BP-Default have their respective advantages and disadvantages.
An advantage of using the Template Pack which I feel you’re overlooking is that it allows theme designers to quickly get the required template/css/js files into their custom theme. This is a lot quicker for a non-BP-expert than figuring out which files are required. The designer then has two options; add, possibly duplicate, your CSS to style the BuddyPress templates to match the rest of the site, or use the Template Pack files as a skeleton, which the designer can then use to rebuild those templates to their own HTML/CSS specifications (perhaps to use a theme framework).
July 21, 2010 at 9:17 pm #86538In reply to: Goodreads Integration
July 21, 2010 at 9:12 pm #86537In reply to: WordPress theme vs BuddyPress theme
modemlooper
ModeratorDon’t use template pack. That’s a quick fix to get WP users without theming skills using BP. For the long run you are better using a child theme as a start. Upgrades are easy this way too.
July 21, 2010 at 8:54 pm #86535In reply to: WordPress theme vs BuddyPress theme
Roger Coathup
ParticipantHi, we always create a child theme derived from the BuddyPress default theme (we are on our 5th commercial BP project at the moment).
We customise heavily, change an awful lot of the CSS, and tear our hair out at the masses of unnecessary divs and classes. But, on the other hand it does give us a huge head start – BuddyPress needs a lot of template files and loops that aren’t in standard WordPress themes.
If you are happy with the default structures and functionality, you can get a long way quickly with this approach. Styling the layouts to your needs.
If you want to add new functionality, seriously enhance the loops, and so on – you are in for a bigger challenge – it’s not as easy as WordPress theming, you quickly end up in hooks, filters and plugins (which you can usually avoid in standard WP theming), and a fairly restricted API (which is due to get better, and better documented). The joys of building on the sands of a still relatively early stage project.
Good luck – I’m sure you’ll create a great site.
Roger
p.s. setting up a child theme is straightforward – a few lines in your style.css. We typically mimic the folder structure of the default theme, copy over just the files we are specialising (most of them!), and work from there. Only strange thing is functions.php – a functions.php in your child theme doesn’t override the one in the parent theme, both are used.
p.p.s. I can’t comment on the theme pack plugin… I haven’t used it
July 21, 2010 at 6:52 pm #86508In reply to: Interview Matt Mullenweg: WordPress and the GPL
Hugo Ashmore
ParticipantYes it’s a pretty fair post, but note it’s not a conclusive treatise on the subject. It remains a damned awkward subject in many areas, good that he pointed out the possibility of split license to cover CSS / graphics if I create a graphic it remains mine unless I sign over the copyright on it same with photographers you may hire them to take a picture for you but they will retain copyright on that image for all eternity.
July 21, 2010 at 6:22 pm #86499In reply to: All blog posts RSS feed
r-a-y
KeymasterI’d just create a custom page template and create a RSS feed from a filtered, BuddyPress activity loop that only outputs blog posts.
Here’s a guide that will help you create the custom RSS page template:
http://yoast.com/custom-rss-feeds-wordpress/Here’s the activity loop codex page:
https://codex.buddypress.org/developer-docs/custom-buddypress-loops/the-activity-stream-loop/*Set the action to “new_blog_post”
July 21, 2010 at 6:17 pm #86495In reply to: Interview Matt Mullenweg: WordPress and the GPL
techguy
ParticipantI liked this follow up post about the GPL from the WP lead developer: http://markjaquith.wordpress.com/2010/07/17/why-wordpress-themes-are-derivative-of-wordpress/ I learned a lot about the license as well.
July 21, 2010 at 5:15 pm #86490In reply to: All blog posts RSS feed
motomac
Participant@antonrsaopencirclecoza, this plugin doesn’t work with WordPress 3.0 (with network). Does anybody know analogs?
July 21, 2010 at 5:02 pm #86488In reply to: is_admin for group admin, can’t find it?
@mercime
Participant“the function where by if your are member it just displays the group or if you are the admin of the group it displays the group setting and so on”
That’s how it is already set up actually. If I didn’t get what you meant though, you can also use https://wordpress.org/extend/plugins/buddypress-restrict-group-creation/ or check source code for more info.edit – too slow mercime
-
AuthorSearch Results