Search Results for 'wordpress'
-
AuthorSearch Results
-
June 28, 2013 at 7:45 pm #167135
mik.e245
Participant@mercime Sorry, I forgot to mention that I’m already using BP Multi Network and Networks for WordPress! Unfortunately, they’re doing the wrong thing: while each network/site now has Buddypress working, all content and users are mirrored/shared across the networks/sites. Instead I need to have Buddypress working on all networks/sites, with *separate* content but *shared* users. Is there any way to do this?
Thank you!
BillJune 28, 2013 at 7:13 pm #167131In reply to: Create Group
mgrmn
ParticipantOne I am with /groups/ I can go to /groups/create/ and it will show me the form. Thank you.
As far as “Page title is not within the WordPress loop”, where do I look to get fixed, cause all the PB pages have the same thing, just say “Page”
June 28, 2013 at 7:12 pm #167130In reply to: Creating New Plugins
modemlooper
ModeratorIt all depends on how the plugin functions. if you have WP options saved and then use bp_include to load plugin your settings won’t load fast enough for BuddyPress to use options.
bp_include is used for code that accesses BuddyPress code. So you know that BuddyPress is loaded before you execute code. It should not be used to detect if BuddyPress is active.
you can use https://codex.wordpress.org/Function_Reference/is_plugin_active
or check if ( class_exists( ‘BuddyPress’ ) )
June 28, 2013 at 7:09 pm #167129In reply to: Create Group
@mercime
Participant@mgrmn There should be a “Create a Group” button beside the page title in the Groups Directory page. https://codex.buddypress.org/user/buddypress-components-and-features/groups/#groups-directory
If the “Create a Group” button doesn’t show up in your theme, that’s because the_title tag of page template is not within the WordPress loop. To resolve this issue, you can create your own link to the Create Groups page, just append /create to the URL of your groups directory page
e.g.
groups page -> http://example.com/groups
groups create page -> http://example.com/groups/createAlternatively, if you prefer, you can instead add the patch to include the groups/create link in BP MyAccount section of the WP Toolbar https://buddypress.trac.wordpress.org/ticket/1838 – coming out in BP 1.8
June 28, 2013 at 7:06 pm #167128In reply to: Buddypress and S2 member Activity problem
mgrmn
ParticipantNot sure, but I believe you need to add
get_currentuserinfo();for the part getting user info.Try something like this to debug and see if you get any reponse at all.
function debug_userinfo() { global $current_user; get_currentuserinfo(); echo 'Username: ' . $current_user->user_login . "\n"; echo 'User email: ' . $current_user->user_email . "\n"; echo 'User first name: ' . $current_user->user_firstname . "\n"; echo 'User last name: ' . $current_user->user_lastname . "\n"; echo 'User display name: ' . $current_user->display_name . "\n"; echo 'User ID: ' . $current_user->ID . "\n"; }See wp codex https://codex.wordpress.org/Function_Reference/get_currentuserinfo
June 28, 2013 at 6:58 pm #167127@mercime
Participant@mike245 by default, there’s only one instance of BuddyPress per WordPress (single or multisite) installation. What you want – multiple BuddyPress installations in one Multisite install – is not possible without a BP multinetwork plugin. There are two plugins available and of those two, since you want a shared userbase, you would need https://wordpress.org/plugins/bp-multi-network/
June 28, 2013 at 2:12 pm #167106In reply to: Tranfering / Moving Domain Name
Ben Hansen
Participantyeah the hostile trick is a good way to “trick” your computer thinking a domain exists somewhere its doesn’t thus allowing you to not need to change the domain in the first place. that being said as Hugo mentions the codex pages tend to try to address the entire learning curve of any particular process meaning that they are giving you a bunch of options on that page you don’t need to be able to follow the entire thing to employ one of the listed techniques.
Another thing you may want to consider (depending on the amount of content your site will have prior to going public) is to simply build out on a dummy domain then reconstruct on a fresh install as soon as you are able to grab the domain. Regular wordpress content can even be exported from the construction site and then imported into the new site. Unfortunately no such process exists for buddypress data (groups, non post creating users and activity) but generally speaking those things shouldn’t take all that long to recreate unless your community section is going to be gigantic.
June 28, 2013 at 1:05 pm #167102David Cavins
KeymasterShuklaamar- Be aware that if you edit core files as that web page suggests, you’ll have to make that same edit every time you update WordPress.
Honestly, my experience with WordPress on IIS hasn’t been that great. The rewrite/redirects are one thing, but the FastCGI implementation is not very robust, which can cause grief.
Polly- Your problem doesn’t appear to be related to the original question. I think you’re right that the problem is the theme, so contacting the theme author would be a good start.
-David
June 28, 2013 at 9:49 am #167095shuklaamar1509
ParticipantI Solved the Issue. Please follow the link : http://webloggerz.com/how-to-remove-index-php-from-wordpress-url/
June 28, 2013 at 9:48 am #167094In reply to: BuddyPress related page have wrong link
shuklaamar1509
ParticipantI Solved the Issue. Please follow the link : http://webloggerz.com/how-to-remove-index-php-from-wordpress-url/
June 28, 2013 at 8:49 am #167089In reply to: Tranfering / Moving Domain Name
Henry
MemberThere isn’t a button or setting that will move everything for you. You could pay someone to do it if you’re not comfortable with doing it yourself. The cost involved for moving a stand-alone WordPress install (files and db) should be reasonable.
June 28, 2013 at 8:35 am #167085In reply to: Creating New Plugins
Henry
MemberEven though your plugin is BP related, it might be worth also posting the question in:
https://wordpress.org/support/forum/plugins-and-hacks
Your reach will be extended to the WP plugin dev community
June 27, 2013 at 11:26 pm #167066In reply to: Tranfering / Moving Domain Name
shanebp
ModeratorBP also hard-codes urls all over the place instead of making them relative.
Dunno why. Perhaps there is some setting to avoid this?
And what about serialized strings?So use this:
search / replaceJune 27, 2013 at 10:33 pm #167062In reply to: [Resolved] Show member recent post in members loop
Henry
Member$query = new WP_Query( 'post_type=portfolio' );More info on how you can use the WP_Query class:
June 27, 2013 at 10:21 pm #167060In reply to: Tranfering / Moving Domain Name
Henry
MemberThere is a Codex page which will talk you through the steps you need to do when the time comes…
June 27, 2013 at 10:07 pm #167059In reply to: Tranfering / Moving Domain Name
Ben Hansen
Participantall of that is handled by the wordpress side of things, buddypress shouldn’t have any trouble handling a domain change. obviously any permalinks would change however.
June 27, 2013 at 9:27 pm #167052mcpeanut
Participantasynaptic thx for the reply i think i posted this in worng section.
buddypress is installed and works fine…i dont need help from support on any of the matters on that page.
i just need someone to tell me how to remove my website header image and my navigation bar from above anything thats buddypress related on my website.
for instance do i need to create a budypress header php and if i do how do i exclude it from using my header image and navigation bar in wordpress pages? what would i add to the header php to stop these pages calling the header and nav bar.
i dont know how much more clearer i can be on what i need to do, thats what i dont understand? im asking a simple enough question?
showing someone a screenshot of my header wouldnt help its the same as anyone elses header just that it stretches to far down the page …its about 700px down the page by the time users have scrolled to the buddypress menus in the content area of my page, hence why i need to just remove my header and navigation bar from above my main content area on the buddypress pages (thus making it easier for users to navigate)!
i also know nearly every experienced buddypress user will probably know how to do this but no-one will reply or help me out?June 27, 2013 at 4:26 pm #167039Developer ICAN
ParticipantBrilliant answer! Thank you very much for the help!
June 27, 2013 at 4:23 pm #167038Ben Hansen
Participanti’d ask @jjj about it.
June 27, 2013 at 4:19 pm #167036Asynaptic
Participantah, ok so the plot thickens! now why can’t I see my own post then? very strange! I’ve also tried logging out and viewing the thread as well as viewing with another browser with no history of buddypress.com/support
June 27, 2013 at 4:15 pm #167035Ben Hansen
Participant@synaptic I can see your post for what that’s worth also thanks for the link neat tool!
June 27, 2013 at 4:13 pm #167034Asynaptic
Participant@richardicanie your response sounds like you got my original message but I can’t see it on this thread (the forum here stopped it from being published and gave me an error when I tried to resubmit it).
anyway, about the site you mention: http://community.babycentre.co.uk/
it doesn’t look like they are using wordpress at all. my guess after looking at the source code is that it is drupal
in the future you can also check with builtwith.com
June 27, 2013 at 2:13 pm #167030Ben Hansen
Participantas far as why other sites are doing things the way they are we are making a bunch of assumptions right off the bat but from outside appearances the site you mentioned does not appear to be using buddypress. often times the forum/community software is a different platform from wordpress this is not the case with buddypress, that might explain why some other site would be compartmentalizing their community sections.
the only reason to use multisite is to create totally separate blogs/sites under one network setting. if you do not want to create (or let your users create) other sub-sites then chances you want to go multi are not great. You can also switch to that later if you choose (i had buddypress on a site for over two years before i took it multi).
once you go multi, new users are actually added to the network first they may then be added to a particular site either when you as either super admin or one of your sub-site admins manually adds them to a site or automatically based on activity i believe, that part still baffles me a bit honestly.
June 27, 2013 at 10:10 am #167024Developer ICAN
ParticipantJust one last question here. If you did install multi site and network activated BuddyPress then on your first child site community.site.com has all the buddypress activity – would a user signing up on the community be a user on the parent site?
June 27, 2013 at 10:07 am #167023Developer ICAN
ParticipantGuys, thanks you for your responses – very helpful!
See i have a very active web site built in WP (well i will – its just being built). The Community/Forum elements (with BuddyPress and BBPress) will be an integral part of it also. When i done a few test’s on activating BuddyPress and BBPress, i found that this doubled the site queries which i’m just monitoring very closely as i’m trying to keep everything as efficient as possible. The site will be on a dedicated server with the database on a separate dedicated database server so i think we should be OK if we keep queries down as small as possible.
Sorry @synaptic, i was aware that BuddyPress is a plugin for WordPress, it was more the approach i was questioning – ie when you’re starting off with a site, do you think that the site is going to be a community site everything focused on BuddyPress or is safe to say that you could have a large active non community site and simply append a community with BuddyPress as secondary and have the site still run efficiently. I see in some sites that the community element is on a separate sub domain site – for example see http://www.babycentre.co.uk – they community element of this is on a separate install (possibly WP multi site?) at http://community.babycentre.co.uk/. I’m sort of wondering is there any reason why they do this? Is it because its physically easier to manage? Is it because the load of a community may affect the normal running of the website? I’m just wondering what the general convention is?
If the convention is to separate say – then why would it make sense to have a multi site install as the community BuddyPress tables are still in the same database? You get waht i mean? Actually why use multi site at all? (http://www.onextrapixel.com/2011/06/06/how-to-integrate-buddypress-with-wordpress-multi-site-seamlessly/)
Thanks for all your help everyone! Appreciate it!
-
AuthorSearch Results