Search Results for 'wordpress'
-
AuthorSearch Results
-
September 27, 2013 at 6:21 pm #171911
In reply to: Removing Buddypress sidebars
@mercime
Participant@squaredindex If you’re using a WordPress theme, not a BP Default child theme, check out BP Theme Compatibility information at
a. https://codex.buddypress.org/theme-development/theme-compatibility-1-7/a-quick-look-at-1-7-theme-compatibility/
b. https://codex.buddypress.org/theme-development/theme-compatibility-1-7/template-hierarchy/Basically if you want to change ALL the BP pages to have a sidebar or not, then create a new file named buddypress.php and paste in the code of your theme’s file which has a sidebar or a full width layout. Then upload buddypress.php to the root of your theme’s folder in server. For theme compatibility to work, your theme should have the_title and the_content within the WP loop. Read a) above.
If you want to mix-and-match BP pages with full-width and two-column (with sidebar) layouts, read b).
September 27, 2013 at 12:10 pm #171895In reply to: Removing Buddypress sidebars
squaredindex
ParticipantNot a child theme, just a normal wordpress theme that uses buddypress. I don’t know if I have to do a child theme for it to work.
September 27, 2013 at 9:58 am #171888Davidollerton
ParticipantHi @mercime thanks for feedback – I have tried deactivating all plugins and switched to twenty thirteen, still the same issue, “There was a problem cropping your avatar”
The site is hosted on zippykid – I will check with them. Uploading regular media to a post or page is also no issue, thumbnails work fine, this is the only time I’ve had any media related issues.
I’ve also installed “WP User Avatar” and weirdly that works no problem, but I don’t want users to have to go to the wordpress control panel to change their avatar.
September 27, 2013 at 6:09 am #171886In reply to: 1.7 can't see buddy press layouts in my theme
bp-help
Participant@philmay
If you had checked the link @carlh1 had provided you would see when you click on community that the issue is unresolved. An experienced developer may be able to help but if the theme is over-bloated and doesn’t follow standard WordPress template structures then I am afraid you are in for a hefty price-tag even if you hire one. If you have not already checked it out review:
https://codex.buddypress.org/theme-development/theme-compatibility-1-7/a-quick-look-at-1-7-theme-compatibility/
See if that helps. Based on your previous topics when you mentioned Non Disclosure Agreements your probably going to have a rough time finding anyone that would be willing to sign that. After all BP, Themes, and all plugins that require WordPress to work fall under GNU/GPL because they are derivative works that uses WordPress’s hooks, actions, filters etc. in order to work with WordPress it has to be. Realistically I doubt your site will be any more groundbreaking than anyone else who has created a WP/BP powered community site so it is right silly to require a NDA! I have seen some very amazing sites created with WP & BP but most of them come from top notch experienced web developers and web designers. Please don’t take this as discouraging or negative just set a realistic goal. Either way good luck!September 27, 2013 at 1:09 am #171878In reply to: Buddypress and Twenty Twelve compatibility
@mercime
Participant@craftersuniversity At this moment, I see that you’re using a Twenty Eleven as parent theme and not Twenty Twelve.
Twenty Eleven has a one-column layout for its default page.php. Check out this tutorial for getting a sidebar into the BP pages: http://bpsocialnetwork.wordpress.com/2013/06/02/twenty-eleven-theme-compatibility/
September 26, 2013 at 4:02 pm #171855Davidollerton
ParticipantUpdate: It isn’t a theme or plugin issue, as I switched to Twenty Thirteen and found the same problem. After that I switched off plugins 1 by 1 and still nothing.
Im running WordPress 3.6.1 Buddypress 1.7 and am hosted by zippykid
Thanks
September 26, 2013 at 9:24 am #171836In reply to: The Best Cache'ing solution for BP?
Paul Wong-Gibbs
KeymasterIf you’re not already using one, set up an object cache. It’s relatively simple and will be a big improvement for all WordPress things, not just BuddyPress.
September 26, 2013 at 5:06 am #171831In reply to: LInk to inbox / sent messages
Arial Burnz
ParticipantI’m having a problem that I’m hoping the above situation will fix, but I need more information on how to utilize what’s above.
Problem: WordPress toolbar is NOT showing up in MSIE, Firefox or Safari browsers. It IS showing in the Google Chrome browser. I’ve tried logging in with different accounts to see if it’s related to the login, but it’s the same – admin or member account – no toolbar. ALSO it’s the same with my other WordPress site – both are on two different servers. However, if I go to a WordPress.com site (versus a WordPress installation on a server/private site), the WordPress toolbar IS available.
Since the WordPress toolbar is not available, I was hoping I could create menu tabs/options to get members easily to their BuddyPress inbox. The above information about building links from the sample structure is Greek to me. Where do I put that code? I’m using the Mantra Theme, so would I put it in the Custom CSS area? In the Appearance > Menu > Enter URL option? I’m thoroughly confused and I’m such a newb. Sorry!
Here’s the website I’m building: http://ilovevampirenovels.com/ravenousbooktours
Thank you!
Arial Burnz
Tour Host CoordinatorSeptember 26, 2013 at 1:42 am #171828In reply to: Edit Buddypress Registration Page Template
cpagan2000
ParticipantHere you go
<?php // hacks and mods will go here /** * Disables BuddyPress' registration process and fallsback to WordPress' one. */ function my_disable_bp_registration() { remove_action( 'bp_init', 'bp_core_wpsignup_redirect' ); remove_action( 'bp_screens', 'bp_core_screen_signup' ); } add_action( 'bp_loaded', 'my_disable_bp_registration' ); add_filter( 'bp_get_signup_page', "firmasite_redirect_bp_signup_page"); function firmasite_redirect_bp_signup_page($page ){ return bp_get_root_domain() . '/wp-signup.php'; } ?>September 26, 2013 at 1:40 am #171827In reply to: remove registration page
cpagan2000
ParticipantThis has worked for me
<?php // hacks and mods will go here /** * Disables BuddyPress' registration process and fallsback to WordPress' one. */ function my_disable_bp_registration() { remove_action( 'bp_init', 'bp_core_wpsignup_redirect' ); remove_action( 'bp_screens', 'bp_core_screen_signup' ); } add_action( 'bp_loaded', 'my_disable_bp_registration' ); add_filter( 'bp_get_signup_page', "firmasite_redirect_bp_signup_page"); function firmasite_redirect_bp_signup_page($page ){ return bp_get_root_domain() . '/wp-signup.php'; } ?>September 26, 2013 at 1:39 am #171826In reply to: [Resolved] WordPress Login and Registration Page
cpagan2000
ParticipantWell this worked lets hope no issues.
<?php // hacks and mods will go here /** * Disables BuddyPress' registration process and fallsback to WordPress' one. */ function my_disable_bp_registration() { remove_action( 'bp_init', 'bp_core_wpsignup_redirect' ); remove_action( 'bp_screens', 'bp_core_screen_signup' ); } add_action( 'bp_loaded', 'my_disable_bp_registration' ); add_filter( 'bp_get_signup_page', "firmasite_redirect_bp_signup_page"); function firmasite_redirect_bp_signup_page($page ){ return bp_get_root_domain() . '/wp-signup.php'; } ?>September 26, 2013 at 1:36 am #171825In reply to: [Resolved] WordPress Login and Registration Page
cpagan2000
ParticipantWell Thank You sir gees
September 26, 2013 at 1:34 am #171824In reply to: [Resolved] WordPress Login and Registration Page
bp-help
Participant@cpagan2000
Please do some self help and refer to the codex. That is what it is there for!
https://codex.buddypress.org/developer/customizing/bp-custom-php/September 26, 2013 at 1:30 am #171823In reply to: [Resolved] WordPress Login and Registration Page
cpagan2000
ParticipantIt makes no sense do I have to create this file and then paste the code. Because there is no such file. Below is what it says on the link
Disable BuddyPress’ registration and use WP’s instead. Paste this in /wp-content/plugins/bp-custom.php
September 26, 2013 at 1:25 am #171822In reply to: Group Management (feature request)
xKroniK13x
ParticipantThis does it. I have it running on my site, but I modified the code to use a select box instead of check boxes. But this is what you’re looking for, I think.
https://wordpress.org/plugins/buddypress-registration-groups-1/
Or this one if you don’t want them to have a choice.
September 26, 2013 at 1:00 am #171819bp-help
Participant@cpagan2000
Please do not reply on topics almost 3 years old. I replied here:
https://buddypress.org/support/topic/wordpress-login-and-registration-page/September 26, 2013 at 12:56 am #171817In reply to: [Resolved] WordPress Login and Registration Page
September 26, 2013 at 12:24 am #171815In reply to: [Resolved] WordPress Login and Registration Page
cpagan2000
ParticipantNo they don’t have to create 2 accounts. What I want is for the god awful registration page to go away and get bacl my normal wordpress login and registration page back. I have social sign ins and want to be able to use those and also a captcha for spam.
September 26, 2013 at 12:08 am #171813In reply to: [Resolved] WordPress Login and Registration Page
wickedmellow
ParticipantI have the same question, about to install wordpress and buddypress, but saw this and also only want one login and user account for people to sign up with. I’m right in that it sounds like new users would have to create one account for each right now or not? TY 🙂
September 25, 2013 at 11:55 pm #171811cpagan2000
ParticipantI want to use the wp-login.php login and registration page instead of buddypress. How can I do that
September 25, 2013 at 2:25 pm #171780In reply to: Delete post comments via front end
@mercime
ParticipantSeptember 25, 2013 at 1:47 am #171763bp-help
Participant@scottlush
The only thing I see that does some of those things is:
https://wordpress.org/plugins/buddymenu-buddylinks/
However I have never tried it myself, and it has not been updated in a while so its hard to say whether it will work with the most current versions of WP & BP. The only other alternative is to code it yourself or hire a developer to do it for you.September 24, 2013 at 7:36 pm #171759In reply to: Installing Buddypress on an existing website
bvirkus
ParticipantThe reason I ask is the install instructions are very specific that I need to “manually” install WordPress. When I originally set the site up I did so via a “1 click install” app via the hosting company. They indicated Buddypress will not work properly unless you manually install. Am I ok to just install the plugin or am I setting myself up for problems.
September 23, 2013 at 9:46 pm #171732In reply to: 1 Click Installations
bvirkus
ParticipantWhat if we have an existing website we are looking to incorporate Buddypress? Hence, WordPress was already loaded via the 1 Click App when we initially set the site up. The url we are referencing is http://findthecapital.com.
September 23, 2013 at 8:26 pm #171731Vova Feldman
ParticipantGuys, we are proud to announce that the new Rating-Widget plugin release supports BuddyPress & bbPress ratings. And the Premium version even support aggregated user ratings which is calculated based on all user’s activities.
-
AuthorSearch Results