Search Results for 'wordpress'
-
AuthorSearch Results
-
November 28, 2011 at 8:45 am #125125
In reply to: Buddypress Default theme frontpage modifications.
4ella
Participantresolved , for those who are interested: http://www.famousbloggers.net/3-wordpress-tricks.html
November 28, 2011 at 1:42 am #125117In reply to: Can’t leave a reply on activity feed
r-a-y
KeymasterBuddyPress activity replies only work when javascript is enabled. This is a known issue:
https://buddypress.trac.wordpress.org/ticket/3705The problem is your theme (and/or plugins) is conflicting with BuddyPress’ javascript. If you check your browser’s debug console, you should see some javascript errors.
Try to nail down where the issue originally came from. It should be a plugin or your theme’s JS that is the culprit.
November 28, 2011 at 1:34 am #125116In reply to: BuddyPress robots.txt
r-a-y
KeymasterThis isn’t really a BP-related question, but a robots.txt file is usually not necessary; it’s only needed if you want to block certain bots from your site.
More info here:
http://www.google.com/support/webmasters/bin/answer.py?answer=156449Also make sure you’re not already using a robots.txt plugin like:
https://wordpress.org/extend/plugins/irobotstxt-seo/November 28, 2011 at 1:26 am #125115In reply to: Getting the BP post author avatar outside of loop.
r-a-y
KeymasterYou shouldn’t use the members loop if you don’t need it.
A more efficient call is using bp_core_fetch_avatar() and setting the parameters there. (Make sure you use a function_exists() call if you use this approach.)
You can alternatively filter get_avatar() as well using bp_core_fetch_avatar() as well.
November 27, 2011 at 9:50 pm #125098In reply to: Converting a WP Theme
@mercime
Participanthttps://codex.buddypress.org/theme-development/wordpress-to-buddypress-theme/
There’s a second method in above link which you can use for your theme. If you need further assistance, open up your WP theme’s header.php in text editor and copy all code, then go to pastebin.com and paste the code and click submit. Post the generated pastebin.com URL here. Do the same for your WP theme’s index.php, page.php, and footer.phpNovember 27, 2011 at 5:05 pm #125083In reply to: Buddypress Activities-Status Update in Front Page
@mercime
ParticipantIf you’re using BP 1.5, it’s done the same way as you would do in regular WP installation.
https://codex.wordpress.org/Creating_a_Static_Front_Page– Create a blank new Page titled e.g. Blog, News, etc. and publish it
– Go to admin dashboard Settings > Reading >Front Page Displays > A static page. Select “Activity” for Front page and then select “Blog” or whatever you named the new Page, for your Posts page.November 27, 2011 at 2:00 pm #125079In reply to: Fatal Error: Class “BP_Group_Extension” not found
aces
ParticipantTo log into your admin area, delete or rename the plugin directory ( /wp-content/plugins/buddypress-kaltura-media-component/ ) using ftp or cpanel. WordPress will deactivate it….
That plugin is shown as incompatible with bp 1.5 in august. The error is the same – https://codex.buddypress.org/releases/1-5-plugin-compatibility/
Further info about that particular error is on: http://code.google.com/p/buddypress-media/wiki/DOCS_BP_FixingPlugins_phpError
November 27, 2011 at 1:15 am #125057In reply to: Buddypress Default theme frontpage modifications.
@mercime
Participant#1.
a) Copy over index.php file from bp-default theme to your child theme folder.
b) Open up index.php in child theme folder and make the following change. On line # 37 of that file, replace:
“
with
`<?php
if ( is_home() ) {
the_excerpt();
} else {
the_content( __( ‘Read the rest of this entry ?’, ‘buddypress’ ) );
}
?>`
c) If you don’t have one yet, create a blank functions.php file in your bp-default child theme folder, then add the solutions to excerpt length and “Read more” are at https://codex.wordpress.org/Function_Reference/the_excerpt#2. The avatar with username is wrapped in div.author-box lines 22 – 29 in the same index.php file you copied over
EDIT – took too long to answer. Didn’t see Xevo’s post
November 27, 2011 at 12:46 am #125055In reply to: Buddypress Default theme frontpage modifications.
Xevo
Participant1. https://codex.wordpress.org/Function_Reference/the_excerpt Since the default buddypress theme uses the_content.
2. http://www.wpbeginner.com/wp-themes/how-to-add-post-thumbnails-in-wordpress/ Should get you going.
November 26, 2011 at 4:55 pm #125035In reply to: Re-install buddpress from the ground up
@mercime
Participanthttps://codex.buddypress.org/buddypress-site-administration/deleting-buddypress/
https://codex.buddypress.org/getting-started/setting-up-a-new-installation/buddypress-1-5-installation-wizard/
If you’re reinstalling BP from ground up, make sure you installed WordPress manually instead of using webhost script to install WP otherwise there’ll still be problems in your BP.November 26, 2011 at 5:56 am #125027In reply to: Changing menu items for Mobile BuddyPress
modemlooper
ModeratorCreate a new menu in the WordPress admin then set it to the mobile menu and add items.
November 25, 2011 at 7:37 pm #125016In reply to: Re-install buddpress from the ground up
AdamBalan10wordpress
MemberExcellent. WordPress is fine, I just need to reinstall buddypress from the ground up. and deleting the plugin doesnt do it….
November 25, 2011 at 7:05 pm #125012In reply to: Re-install buddpress from the ground up
Xevo
ParticipantJust re-install buddypress and not wordpress? Then yes, just remove those.
November 25, 2011 at 11:34 am #124999In reply to: Bad login redirect URL
papaenapuros
MemberHi Ray. No more info needed. They’re just 2 single WordPress installs.
By the way, I’ve checked that in Buddypress.org there is a similar problem. I’ve received an email after a user has followed me with the following link to change the notifications settings:
https://buddypress.org/community/members/papaenapuros/settings/notifications/i’ve logged out and clicked the link. Then, after entering my logging data, I’ve been redirected to:
https://buddypress.org/?redirect_to=https://buddypress.org/community/members/papaenapuros/settings/notificationsAs you can see, the URL is not working. This is the same problem.
Bye.November 25, 2011 at 7:21 am #124991In reply to: 5 wordpress subscribers, but no members.
ChaloGonzalez
MemberAh, never mind, I got a list of members by clicking the members tab. It is the members WIDGET in the sidebar that insists there are no members. So, this is a widget issue. I still don’t see a registration form anywhere for new members. I will keep looking.
November 24, 2011 at 10:39 pm #124976pcwriter
ParticipantYou can simply replace the WordPress search form code in your theme template with the following (it will give you the standard BP search form for Members, Groups, Blogs, Forums, Posts). Plus, the “Search anything…” default text will disappear when the user clicks in it.
`<form action="” method=”post” id=”search-form”>
<input type="text" id="search-terms" name="search-terms" value="” onfocus=”if (this.value == ” ) { this.value = ”; }” onblur=”if (this.value == ”) { this.value = ”;}” /> in<input type="submit" name="search-submit" id="search-submit" value="” />
`
November 24, 2011 at 8:14 pm #124974bimstop
MemberMy apologies, yes it used to be call WPMU they have now made it part of the main WordPress install and call it Multisite.
So yes I have an install of WordPress with Multisite activated. I have not seen anything that says the latest version of Buddypress is not compatible with WordPress Multisite.
UPDATE
I have tried a fresh install of WordPress with Buddypress installed. I now have the following happening…The settings page still stays the same on a save but if you refresh the page your changes are now visible (This was not happening before). So it seems that the save is now happening it just still shows you the old data first after you press the save button. This seems to make it confusing as you think the save did not complete.
Further to this, if you use the default buddypress theme the save works first time everytime correctly. The above only seems to happen if I am using a different theme with the buddypress template pack to make the theme compatible.
So does this mean there is a bug in the template pack? If so any suggestions on how I can make the form display your newly saved data right after the save.
Thanks
November 24, 2011 at 6:33 pm #124963In reply to: Bad login redirect URL
Paul Wong-Gibbs
KeymasterSounds like a bug. Can you report it on http://buddypress.trac.WordPress.org please? You can use your username and password from here.
November 24, 2011 at 4:41 pm #124956In reply to: [resolved] Thanks for the help Mercime and Xevo!
@mercime
ParticipantThe problem IS the parent theme Detox. With all the warnings and deprecated notices generated, if that theme was submitted to the WordPress Theme Repository, it would not be approved with all those errors. That theme is listed with issues on this page https://codex.buddypress.org/releases/1-5-theme-compatibility/
You have to fix the theme, or drop it and get a WordPress Theme. Then install BP Template Pack plugin. Go through the BP compatibility process and if you need help with that, post here.
November 24, 2011 at 4:21 pm #124954In reply to: Comment (Reply) button problem: Page not found!
4ella
ParticipantI have exactly the same problem
. After replying on some activity post I get Page not found. I have latest Buddypress and wordpress with default theme and have never had Buddystream installed.November 24, 2011 at 12:32 pm #124944wiking
Memberif you want to modify that behavior you can edit the theme files which i did for my community. users browsing the page don’t see anything unless they register. i used the wordpress-function is_user_logged_in()
files to consider:
/wp-content/plugins/buddypress/bp-themes/bp-default/activity/activity-loop.php
and to hide the rss-button (private groups still in rss if you know the link or browse the source code – but users not logged using the site don’t see anything):
/wp-content/plugins/buddypress/bp-themes/bp-default/activity/index.phpNovember 24, 2011 at 11:27 am #124942In reply to: fyi: WP-reCAPTCHA works fine with BuddyPress
Flocktome
MemberThis seems to be a nice plugin that works on buddypress:
https://wordpress.org/extend/plugins/buddypress-recaptcha/Some slight manual additions (just add your recaptcha keys into the actual php file), but apart from that, clean, simple it seems.
November 24, 2011 at 3:54 am #124932In reply to: Add friend links to page not found.
Xevo
ParticipantSo only BuddyPress pages dont work, but your normal WordPress pages work with pretty permalinks?
Not sure if this is still something to be worrying about, but you had to “re-save” your pretty permalinks after installing BuddyPress, if you havent, try that.
November 24, 2011 at 1:45 am #124927In reply to: [resolved] Thanks for the help Mercime and Xevo!
@mercime
ParticipantYou’re right not to take it personally. Know that 99.9% of those who help out here are volunteers who live in different time zones. If your post has not been answered within 24 hours, feel free to bump your topic here.
First off, what versions of BP and WP are you on right now? What premium theme/child theme are you using? Doesn’t premium theme author give support?
== in which the Parent has supposedly been updated for the latest version of BP. ==
“Supposedly” is the operative word. Install the Theme Check plugin and the Log Deprecated Notices plugin to see what’s going on with the parent theme. Run these as well on the child theme (in case it copied outdated template files from parent theme and were not updated).== I’ve switched to BP-default theme, ran the plugin BP template pack ==
If you’re using the bp-default theme, you do not need the BP Template Pack plugin — this is only used for and with regular WordPress themes to make those compatible with BuddyPress.November 24, 2011 at 12:33 am #124922niaconcepts
MemberI am using wordpress with the buddy press login and when I go to look for the default BP theme I don’t see it. I see all of the other themes however.
-
AuthorSearch Results