Here is single.php…
Here is Page.php
<?php
/**
* @package WordPress
* @subpackage Constructor
*/
wp_enqueue_script( 'comment-reply' );
// load header.php
get_header();
// load one of layout pages (layouts/*.php) based on settings
get_constructor_layout('page');
// load footer.php
get_footer();
Here is index.php…
Where should I look next and what should I change?
Thanks for your help.
Cheers
Roy
Good Day All,
I have been reading through these forums with regards to the BuddyPress Registration form issue.
I am not too sure if I understand the requirements properly from reading so many threads on here. I think I just ended up confusing myself further.
We setup a BuddyPress website here http://www.weetie.com/. The website has a customised registration form. The “Allow anyone to register” option is set in the admin panel.
This is the BuddyPress registration form.
Currently in most browsers desktop and mobile the registration form does not work. It is however erratic as some can register and others can’t.
It does that reloading of the form with contents still loaded for many users. It was not working in any browsers until Friday last week. Then we rolled back to an older version and it started working on certain devices it had stopped working on until then.
We have even setup a test installation of the platform with only WordPress and BuddyPres (manual installs) with the default BuddyPress theme activated. The same problem persists there.
These are the 2 latest threads we have gone through to try to resolve the issue:
http://buddypress.org/support/topic/sign-up-redirects-to-registration-which-goes-nowhere/
http://buddypress.org/support/topic/disabling-bp-registration/
Neither of which helped.
What I was wanting to know is the following.
1) Do we need to completely disable BuddyPress registration?
2) Use the default WordPress registration?
3) Is there a step-by-step guide to assist one with this process?
4) Is there perhaps a compatibility issue with the system and certain browsers?
We have currently lost large chunks of time trying to solve this issue and styling it to work on mobile devices so we are on the tightest of deadlines to complete and any assistance would be highly appreciated.
The WordPress version currently used is: 3.5.1
The BuddyPress version currently used is: 1.6.2
The previous BuddyPress version used: 1.6.4
Hopefully I have enough detail for assistance.
Kind Regards
hi, how do I use the registration page wordpress rather than that of BuddyPress?
thank you very much
Gianluca
Hi everyone! Yeah, I’m new so pardon me and my new guy question.
I’ve got Multiste running, BuddPress running etc…
I used the “Commons In A box” plugin to upload BP and a few relevant plugins.
I have set up a a few test users and made blog posts with them.
The way the blog is configured(?) with this “commons in a box theme” is sending all my traffic to the member sites. You find a post snippet you like, click on the title to read more and you’re sent to the members site to read the full post.
So, my question is; how do I make it so that when they click the title to read more that they go to the blog on my site NOT the members site?
I searched for this answer till I was blue in the face, nothing. I asked the Author of the theme I am going to buy, he gave me an answer that made no sense to me “if your using your WordPress Blog then it will work”. It doesn’t take me an hour and a half to watch the TV show 60 minutes, but I didn’t get that answer?
Everything about WPMU & BP seem pretty straight forward so far but just not this one issue. I Googled “powered by BuddyPress” to see if I could reverse engineer what they had done. I found sites with the traffic remaining on their site and the traffic going to the members sites but no clues as to why.
Any help to get me to understand this would be greatly appreciated.
Patrick
I’ve never used zenthemes.
But their Buddies theme page says:
“WordPress 3.3.1 & BuddyPress 1.5.3.1, bbPress 2 compatible”
So it’s out of date – should be at least WP 3.5 and BP 1.6
Has anyone had any experience with themes purchased from zenthemes? I am considering buying the buddies theme, but I’m reluctant to send payment without any input about the theme or company.
I am looking for a theme that looks like zentheme’s buddies theme.
http://zenthemes.net/portfolio/buddies-wordpress-buddypress-community-theme/
http://zenthemes.net/how-to-purchase-my-themes/
I would suggest that the best way forward is to contact the theme author – Parallelus
In the DynamiX theme I had to edit out a line in dynamix/functions.php
wp_enqueue_script( ‘dtheme-ajax-js’, BP_PLUGIN_URL . ‘/bp-themes/bp-default/_inc/global.js’, array( ‘jquery’ ), $version );
Unfortunately adding add_theme_support( ‘buddypress’ ); is not the answer, though it is certainly something theme authors need to look at for their future updates.
I also own the Salutation theme and after a quick peek I can not find the same or similar string as I posted above.
No point in both of us contacting the author so if you get any joy from them, please let me know how you got on. It will come in very handy, as I plan to use the theme at some point in the future.
In your enquiry to theme author, I would suggest linking them to the top post here: http://bpdevel.wordpress.com/author/boonebgorges/
It will help them in their investigation.
Again, please do let me know your outcome.
Thanks
Using buddypress 1.7
Wordpress 3.5.1
Theme “Direcory 2.1” from AIT
I’ve installed 1.7 to see if I could get the pages to show. I may have done something wrong, but I’m thinking the theme may be interfering. I can’t see any of the buddpress layouts, just a title and blank.
Homepage is :http://www.sozocial.com
I’ve put all the buddpress pages under the “social” menu.
I did modify a 1.6 version of buddypress to try and work with this theme, but delted it to wait for 1.7 because I never could get it to display properly.
I have assigned pages to the pages installed by buddypress.
Did I do something wrong? Am I just out of luck to run buddypress? The author of the theme said they haven’t tried using it with Buddypress and I think they are working on other issues right now as it’s a pretty new theme.
I did switch the theme to the buddypress default and the layouts display, makes me think the theme has been custom coded and is interfering… do I have the only theme that won’t work with buddypress, hah!
Any help would be appreciated!
@dasped @dasped @companyjuice To avoid duplication of posts for themes which are already compatible with BuddyPress i.e, BuddyPress-ready themes, add the following line in your theme’s functions.php file
add_theme_support( ‘buddypress’ );
see https://bpdevel.wordpress.com/2013/02/25/bp-theme-authors-make-sure-your-theme-registers-buddypress-support/
Hello,
I am currently using:
BP 1.7
Wordpress MU 3.5.1
I am trying to use buddypress.css to customize some css on one of my themes. Everything works fine if I dont copy the file to my theme, but once I add the buddypress.css file from /bp-legacy/css/ to /mytheme/css/ it breaks buddypress styles completely.
If I go to View Source of a Buddypress page on my site is shows:
So it looks like it is loading but it is breaking all BP related css.
Any ideas?
Thanks.
function restrict_admin(){
//if Subscriber or low, kill WordPress execution and provide a message
if ( ! current_user_can( 'edit_posts' ) ) {
wp_die( __('You are not allowed to access this part of the site') );
}
}
add_action( 'admin_init', 'restrict_admin', 1 );
Is this ok for you?
I found a snippet from wordpress codex to restrict user’s from dash board. This block access to the admin panel for users that do not have the Administrator Role. Is there any way that we may tweak the snippet to block access for the users that are subscribers only?
Because the above snippet restricted the access to all the users(Author, Editor, etc) but i want to restrict this for the subscribers only.
@ubernaut I completely agree with you in that you must research the host to find out all you can about them. Believe it or not, there are amazing hosts out there at very reasonable prices. I found this out personally because a friend pointed me to webhostingtalk where they all congregate (and compete). I don’t want to mention my host because it will sound like I’m advertising but they are a reseller of liquidweb and I am a fanatical fan because they are out of this world for technical support above and beyond what a normal host would provide as well as the quality of their servers and the price is incredibly reasonable.
So I think on the whole we agree, do your research. Don’t go in with a preset bias or prejudice and you’ll find that most people’s preconceptions (as shown here in this thread) are wrong. Again, I’m speaking from experience here.
@bowromir hi Ben, if you’ll note I wrote that my assumption was that you used an affiliate link because you truly believed in wpengine. I hoped that was the case and I’m glad to be proven correct.
As for the rest, we’ll have to agree to disagree. I’ve helped friends set up their wordpress blogs on shared hosting and they are getting better performance than some others on vps! go figure. and for a huge saving to boot!
My two cents here are for people to not be scared about doing things the right way, instead of paying for overpriced and overhyped service. If you are absolutely not technical, know that you can combine a great host with a couple of plugins (installed and tweaked by a freelancer) and then set it and forget it for a couple of years for great performance. Again, this is simply a fact from experience. Of course, if you want to pay out the wazoo for the same or inferior service, be my guest!
googling around you’ll find a lot of glowing recommendations for wpengine, with the not surprising affiliate link. but you’ll also find experiences like this one:
My experience with WPEngine (tl;dr, they sucked)
Still not right, although I format the code as code, it does not quite post correctly.
See here for the correct code: https://wordpress.org/support/topic/adding-biographical-info-and-other-info-to-the-buddypress-profile-page
You can start to use Firmasite 1.1.3 directly:
https://themes.trac.wordpress.org/ticket/11605
I split some theme’s functionalities to plugin which i will release today or tomorrow.
Hey guys,
I recently upgraded to the latest version of WordPress and Buddypress and I’m now getting PHP errors in both the frontend and admin panel of WordPress.
I am receiving the following errors:
Warning: Creating default object from empty value in /home/user/public_html/wp-content/plugins/buddypress/bp-members/bp-members-loader.php on line 100
Warning: Creating default object from empty value in /home/user/public_html/wp-content/plugins/buddypress/bp-core/bp-core-loader.php on line 206
I have found a few support threads on here for this issue but I’ve had no luck with a solution. Any help would be greatly appreciated.
Thanks,
Chris
I had this working and upgraded wordpress and this seems to have broken this functionality – perhaps there is a bug to be investigated?
I can’t for the life of me figure out why this is happening, but when the “What’s New” text box is in focus on the activity page, a dynamically applied style is appended to the element that shoots the textbox off the screen:
`
element.style {
display: inline-block;
height: 50px;
}
`
This style is only appended if the buddypress template is fitted into the content div of my template. If I remove my theme’s main content div, the style is not appended but the alignment and whatnot is all jacked up.
I’m using the BP compatibility pack (latest version), and if I disable the javascript, the style is not appended. It’s driving me nuts because I’ve tried to recreate the situation on another test server using the same theme and plugins (all latest versions), but it works fine there.
Does anyone have any idea on how to figure out what is appending this dynamic style? It is only appended when it’s contained within this one particular div.
I’m using the latest versions of buddypress and wordpress. Thanks in advance for your help!
@synaptic as said before i would certainly agree that visitors is not the best way to gauge usage but it is the industry standard for this kind of hosting. These hosts are not simply slapping a few plugins on and calling it “wordpress hosting” at least not wp engine’s case. i know that people love to hate on dreamhost but their vps was fairly decent.
one thing i would say also is that you almost never know with the smaller hosting companies who you are actually buying your hosting from a lot of ‘hosts’ are simply reselling others’ services under their own brand. Oversell is common throughout the hosting world, always has been and just because your host maybe under capacity today doesn’t mean a thing if you outgrow them or they outgrow you. Fact of the matter is if you run buddypress then you are in the top 1% of sites in terms of server resources required to run your site, managed scalable wp hosting is a good solution for many situations, imo.
@bphelp it depends on who the host is, find a good one and you’ll be just fine (webhostingtalk forum is the best place to start looking for a quality host that is affordable). you can find shared hosting that is *better* quality than some VPS out there, you have to do your homework! shared, reseller, VPS, etc. these are all labels and you have to scratch to get at the real stuff underneath as well as the host’s reputation and service history
@ubernaut I reject completely the notion that counting visits is acceptable. This is hosting we are talking about! just because a few hosts have started calling themselves by a new tag ‘wordpress’ does not mean they are doing anything different or special. It is still just plain old hosting. And as I said, you don’t need ‘staff’, you can get a freelancer to set up your site and plugins for $50 or so depending on the complexity. And once it is set, it is set. Instead of paying monthly, you pay once for that as it should be. And then you pay a reasonable fee for hosting monthly or annually.
ps dreamhost? seriously?!? c’mon! do yourself a favor and drop by the forum I mentioned. You’ll thank me for it. There are smaller and medium size hosting co. you’ve never heard of but they are the BEST and they have the rep to prove it (as well as great prices).
well his article is not really on this site he was just promoting the article here and i’ve seen some be far more blatantly self promoting in their posts. Anyway i would say that putting an affiliate link attached to a review/comparison certainly calls into question the objectivity of the author, generally speaking.
Regarding WP Engine i think you over simplifying you analysis of the situation, @synaptic. First off it is standard practice amongst the managed wordpress specialty hosts to charge by visitor count. I would be the first to agree that its probably not he bet way to count usage and lends itself to discrepancy but so far at least they have been more then reasonable with me at least about not holding my customers to the inflated numbers. Also they offer way more then just an optimized platform, all they do is wordpress granted if you are extremely experienced or well staffed you can achieve what they offer for probably less money but if you cannot devote that level of time or resources to your own infrastructure wp engine (as well as the other wp specialty hosts I’m sure) provides a real value. Our site runs quite bit faster and more securely on their platform then it did with a basically whole vps (2 in fact) on dreamhost.
back to @cannedbear ‘s question @ 25K per month you are really talking about 1000 per day or on average about 5 or 10 at any given time during a week day. Even at that level i would not personally recommend any shared hosting for buddypress and in fact i’d say at that level you probably wouldn’t want shared hosting for any wordpress site, remember site/page load time is one of the top factors now in determining your page rank in google search results (at least according to google).
Hey BuddyPress crew, I have a simple suggestion. With the pending release of BP 1.7 why don’t you just link the Themes navigation button above to http://wordpress.org/extend/themes/ after all with the compatibility layer it seems appropriate and if there is issues then they can contact that themes author there instead of here. Anyway, it is just a suggestion. Thank you guys for all your hard work. Cheers!
I don’t mean to take the discussion on a tangent but am curious, what is buddypress.org’s policy regarding affiliate links? The article’s conclusion is an affiliate link which for now I’ll accept is because Ben truly does like WPE and that is why he’s recommending them, not the commissions. So I’d like this clarified by a moderator so we know where the board stands officially (@mercime ?)
Getting back into the discussion, WPengine is unnecessarily expensive. Buddypress users can get the same (and more) functionality with a few free and very low priced plugins at a fraction of the cost.
For example, using proper speed optimization methods (minify, cache, etc.) as well as free backup plugins and CDNs (1 TB of transfer for $40/year) – I won’t mention names here but you can easily find out the most popular CDN for wordpress and that is its price.
Even if you are a novice, setting up a few plugins is easy. If it isn’t, you can get someone to set it up for you at fiverrr or similar freelancer sites (freelancer, elancer, odesk, etc.) for very cheap.
The net result is a rock solid buddypress+wordpress install that runs blazingly fast and has daily backup. And the price? a very small fraction of WPengine’s price. I have this on a shared hosting plan with a great quality host found at webhostingtalk and my cost is $14/month at 200 GB bandwidth/month.
PS I just noticed that WPengine prices their plans according to ‘visits’ instead of the hosting industry standard of GB or TB of data transferred per month. This is disingenuous at best and downright sleazy at worst. Yet another reason to stay awaaaay!