Search Results for 'buddypress'
-
AuthorSearch Results
-
June 7, 2013 at 9:47 am #165532
Topic: after update to Version 1.7.2 problem
in forum How-to & Troubleshootingfatjay
Participantafter the update to Version 1.7.2 my buddypress is in english agian
it was in german… what can i do to fix this ?June 7, 2013 at 9:13 am #165531In reply to: Complete list of all BuddyPress pages
Hugo Ashmore
ParticipantThe file directories give you a good idea or are as good a ref as any, ones that can catch you out are /members/single/ where you need to remember that there are two nuisance files 🙂 plugins.php & settings.php which have their own full structure (are not template_parts) or that need to be considered.
June 7, 2013 at 8:53 am #165530Topic: Complete list of all BuddyPress pages
in forum How-to & TroubleshootingHenry
MemberI am looking for a list of all BuddyPress pages as i’m developing a custom theme and need to check i’ve covered every possible page.
Anyone know if a list is available?
June 7, 2013 at 8:08 am #165528In reply to: Buddypress a bit plain looking
@mercime
ParticipantBefore the change I had the grey around the navigation of friends forums etc but that disappeared with the templates being disabled.
Not quite sure what you mean. You lost all BP styles? What do you mean by “templates disabled”? BP components are rendered automagically via theme’s page.php file.
June 7, 2013 at 8:05 am #165527In reply to: BP-Default fonts
@mercime
ParticipantJune 7, 2013 at 6:40 am #165525In reply to: Custom Permalink and Rewrite Rules for Buddypress?
alishoja
Participanti have the same problem, please share your solution!
thanksJune 7, 2013 at 5:52 am #165524In reply to: Can't edit group forum topics.
unknownterritory20
ParticipantOk. I played around with it until I found out the issue, but I don’t know how to solve it.
In groups > forum > topics > My New Topic … when I inspect the element for the href for the modify link (and others) are as follows…
href=”http://mysite.com/groups/Sailing/forum/topic/edit?_wpnonce=xxx”. This gives me a blank page, or bbpress edit form.
If I slightly modify the url to href=”http://mysite.com/groups/Sailing/forum/topic/my-new topic/edit?_wpnonce=xxx” then I see things exactly how they are supposed to be. So the modify link was taking me to the wrong page.
I have no idea how to modify the url to insert the topic title. This would completely resolve my issue
The modify link is embedded in the bp_the_topic_admin_links function.
function bp_the_topic_admin_links( $args = '' ) { echo bp_get_the_topic_admin_links( $args ); } function bp_get_the_topic_admin_links( $args = '' ) { global $forum_template; $defaults = array( 'seperator' => '|' ); $r = wp_parse_args( $args, $defaults ); extract( $r, EXTR_SKIP ); $links[] = '<a href="' . wp_nonce_url( bp_get_the_topic_permalink() . 'edit', 'bp_forums_edit_topic' ) . '">' . __( 'Edit Topic', 'buddypress' ) . '</a>'; if ( bp_is_item_admin() || bp_is_item_mod() || bp_current_user_can( 'bp_moderate' ) ) { if ( 0 == (int) $forum_template->topic->topic_sticky ) $links[] = '<a href="' . wp_nonce_url( bp_get_the_topic_permalink() . 'stick', 'bp_forums_stick_topic' ) . '">' . __( 'Sticky Topic', 'buddypress' ) . '</a>'; else $links[] = '<a href="' . wp_nonce_url( bp_get_the_topic_permalink() . 'unstick', 'bp_forums_unstick_topic' ) . '">' . __( 'Un-stick Topic', 'buddypress' ) . '</a>'; if ( 0 == (int) $forum_template->topic->topic_open ) $links[] = '<a href="' . wp_nonce_url( bp_get_the_topic_permalink() . 'open', 'bp_forums_open_topic' ) . '">' . __( 'Open Topic', 'buddypress' ) . '</a>'; else $links[] = '<a href="' . wp_nonce_url( bp_get_the_topic_permalink() . 'close', 'bp_forums_close_topic' ) . '">' . __( 'Close Topic', 'buddypress' ) . '</a>'; $links[] = '<a class="confirm" id="topic-delete-link" href="' . wp_nonce_url( bp_get_the_topic_permalink() . 'delete', 'bp_forums_delete_topic' ) . '">' . __( 'Delete Topic', 'buddypress' ) . '</a>'; } return implode( ' ' . $seperator . ' ', (array) $links ); }ALSO, is there a way to disable bbpress user profiles, completely? I only want bp profiles active.
June 7, 2013 at 5:43 am #165523In reply to: Registration Emails Not Received
@mercime
Participant@thecrow72 basically, BuddyPress uses the WP email functions for its registration process. Deactivate BuddyPress, bbPress and other plugins then check your WP registration/activation emails, etc. If it’s not working, then please resolve your issue at https://wordpress.org/support/forum/how-to-and-troubleshooting
Before activating BuddyPress, read https://codex.buddypress.org/user/before-installing/
Good luck!
June 7, 2013 at 5:14 am #165522In reply to: Post Link appears thrice
@mercime
Participant@sarathbabu_k can’t even guess what’s up with your installation. Need more information like WP/BP versions? Theme used? Plugins installed? New installation or upgraded from previous BP/WP version? Did you check if links in posts (blog posts or status updates or forum posts?) were working before BuddyPress was installed or not?
June 7, 2013 at 4:54 am #165519In reply to: Header and footer widget problems
@mercime
Participant@junithorn BP 1.7 theme compatibility -> https://codex.buddypress.org/developer/theme-development/a-quick-look-at-1-7-theme-compatibility/ see “Overloading Template Compatibility theme files”
June 7, 2013 at 4:41 am #165518In reply to: Display Issues
@mercime
Participant@bkypes starting from scratch – might I suggest that before installing pagelines theme and other plugins, test BuddyPress with Twenty Twelve theme – registration, group creation, etc.? That way, you can ID issues to be resolved if something goes wrong when pagelines theme/plugin are activated and you’ll be able to report specifics to pagelines theme developers.
June 7, 2013 at 4:37 am #165517In reply to: problem sidebars theme Nebraska
@mercime
Participantthe plugin is “breaking” the layout because its using different content tags
@millo it’s more like your theme is using proprietary templating system. BuddyPress is compatible with nearly all of the WordPress themes in the market.
BuddyPress uses the page.php file to render BP components. Open up your theme’s page.php file and Save As > buddypress.php and ask your theme developer to change the respective proprietary tags to show the_title and the_content in source.
After that’s done, upload buddypress.php file into your theme folder in server.
June 7, 2013 at 3:49 am #165514In reply to: SignUp Error
@mercime
Participant@galavrah deactivate plugins batch by batch except BuddyPress to check which plugin is causing the issue.
June 7, 2013 at 3:47 am #165513In reply to: Display Issues
bkypes
Participant@mercime, I did download and install the integration but that didn’t seem to make any difference with the issues that I’ve been having. I just deleted the files from my site and I’m going to have a guy who helps us with our coding remove any traces of bbPress or BuddyPress from the myPHPadmin file and the reinstall everything.
June 7, 2013 at 3:40 am #165512In reply to: Display Issues
@mercime
Participant@bkypes I see that you’re using the pagelines theme. http://www.pagelines.com/store/plugins/pagelines-buddypress/
June 7, 2013 at 3:36 am #165511In reply to: [Resolved] Registration Spam
@mercime
Participant@mamun669 check out http://wpmu.org/buddypress-spam/
June 7, 2013 at 3:15 am #165509In reply to: Big Upgrade (1.1.1 to 1.7.2)
@mercime
ParticipantAfter the upgrade to 1.7.2, it is broken. It gives me a “page not found” error. I have everything else about BuddyPress working.
@mbagnall since you did not mention having a multisite installation, I will assume that you created a static front page named “home” or whatever, created a new blank Page named “Blog” for your blog posts and went to Settings > Reading to designate the “home” page for you home page and “Blog” for your blog pages. That’s the scenario where I can see you have /blog/ in the url of your blog posts. Check your Settings > Reading to make sure that the pages selected in Static Front page and blog posts are still the same.
June 7, 2013 at 2:55 am #165506In reply to: [Resolved] Buddypress and BBPress, same avatar?
@mercime
Participant@adamfratino Thank you for posting back about the cause of the bbPress avatar issue. Please post at plugin’s support forums about the bbPress avatars issue when BuddyPress and Social Login are activated. https://wordpress.org/support/plugin/oa-social-login
June 7, 2013 at 2:30 am #165505In reply to: Buddypress a bit plain looking
bedhead1971
ParticipantYes followed instructions from the link..
I created a buddypress.php with the code above as the width of Buddypress was a bit narrow and I didn’t need sidebars. I used bp.php in laziness on here. Apologies..
Before the change I had the grey around the navigation of friends forums etc but that disappeared with the templates being disabled.
I have no compatibility issue, just wish to try and pretty it up again.
June 7, 2013 at 2:11 am #165501In reply to: Buddypress a bit plain looking
@mercime
Participant@bedhead1971 Please clarify. The image you posted is that of sven with the BP Default theme while the issue is theme compat with Colorway theme. So let’s take it from the top.
I just upgraded to 1.7 and did the templates plugin disable and removal of the 6 files in theme.
So you followed instructions at https://codex.buddypress.org/bp-17-upgrading-template-packed-themes/ ? It should show a two column layout for BP pages as your theme’s page.php has sidebar in template.
This is my bp.php I created from the themes fullwidth template as it suggested.
First, you must name the file buddypress.php or community.php (not bp.php), remove ” Template Name: Fullwidth Template” and upload the buddypress.php file into wp-content/themes/colorway folder in server.
@mercime
ParticipantJune 7, 2013 at 1:55 am #165499In reply to: ie8 and ie9 big problem
@mercime
ParticipantBuddyPress does not block any styles hardcoded or enqueued by your theme. I don’t know why you cannot post in yootheme’s support forums for assistance if you’ve purchased your theme from them.
June 7, 2013 at 1:09 am #165498In reply to: [Resolved] Buddypress and BBPress, same avatar?
adamfratino
ParticipantWordpress 3.5.1, Buddypress 1.7.2, using Bonpress free theme from WPZOOM. I just realized there might be a conflict with WordPress Social Login, which is pulling avatar data from Facebook/Twitter when registering new members, or just when logging them back in with the social options.
When I shut off WordPress Social Login, the Buddypress avatars show up in BBPress. When I turn social login back on, the original avatars from when the user signed up take over the BBPress avatars.
June 7, 2013 at 12:35 am #165497@mercime
Participant@unknownterritory20 you already have posted about the same issue at https://buddypress.org/support/topic/cant-edit-group-forum-topics/
Closing this topic
June 7, 2013 at 12:33 am #165496In reply to: Can't edit group forum topics.
@mercime
Participant -
AuthorSearch Results