Search Results for 'buddypress'
-
AuthorSearch Results
-
April 28, 2012 at 6:32 am #133688
kristopherlouie
MemberI have implemented the revisions. For some reason -that- page is not using the source code.
If you look at the other buddypress pages, they reflect the changes…
http://bigassmonsters.com/wp/members/ and http://bigassmonsters.com/wp/activity/
April 28, 2012 at 6:23 am #133687@mercime
Participant@kristopherlouie You didn’t implement the revisions I posted above since I don’t see the following in the source code at all
`<article id="post-” >`
and the corresponding closing divs/article with get_sidebarApril 28, 2012 at 6:12 am #133686In reply to: Enable Copy & Paste For Buddypress Mobile
zjoyce
ParticipantAny updated on this request?
April 28, 2012 at 5:10 am #133684In reply to: Ouch! Help
@ChrisClayton
Participant@helpme2012 Are you referring to the blog comments or the Activity stream Comments?
For Blog comments, just recreate the bp_dtheme_comment_form() function (located inside bp-defaults functions.php) inside your child theme and it should override the default.
If your talking about the Stream Comments, then – i have no idea. Never had a problem with the comments post form appearing to logged out members
April 28, 2012 at 4:36 am #133683@mercime
Participant@djsinternet The adminbar.css is enqueued via wp_head –> “
and the bp-core-buddypress markup is loaded via wp_footer.If you want to remove buddybar.css, add this to `bp-custom.php` or your theme’s `functions.php` file
`// remove admin bar style
add_action( ‘bp_init’, ‘djsinternet_remove_adminbar_css’ );
function djsinternet_remove_adminbar_css() {
wp_dequeue_style ( ‘bp-admin-bar’);
wp_dequeue_style ( ‘bp-admin-bar-rtl’);
}`Note that when you dequeue buddybar.css, all the adminbar links will be unstyled at the bottom of the webpage unless you upload your own adminbar stylesheet
April 28, 2012 at 1:42 am #133682In reply to: Can two sites share buddypress members?
paulv777
MemberWow that great to know it can be done, it seem way over my head but perhaps I could find someone to do it in the future. In the mean time I could leave them as separate and join them later after they start to take off or is this best done from the beginning? Or is it easier that it sounds?
April 28, 2012 at 1:31 am #1336819087877
Inactive@juanmaguerrero Works great until it hits a dead end and there is no more activities. Then if you keep trying to scroll down it repeats over and over “Sorry, there was no activity found. Please try a different filter.” Is there a way you can tweak the code to make it only display that message one time when it reaches the end of activities? It works great, but it would just look cleaner if it did not repeat that message over, and over as a user attempts to scroll when there is no more activities to display. Also, how do you get that neat loader like you have on your site while more activities is loading? What does it involve? Can you share how to accomplish this? Thanks, and great job!
April 27, 2012 at 11:10 pm #133678In reply to: Show avatar on buddypress large by clicking on it
Slava Abakumov
ModeratorSo if I clicked on an avatar in this thread – I would see no 40×40 px but (in a popup) 150×150 px (or other, configurable).
Am I right? If yes, I might add this to my BP Avatar Bubble (https://buddypress.org/community/groups/cd-bp-avatar-bubble/).April 27, 2012 at 11:02 pm #133677In reply to: Can two sites share buddypress members?
Slava Abakumov
ModeratorYes, this can be done.
The easiest way is to create a “bridge” between them.
So in general:
1) sync all users data between sites (wp_(users|usermeta|bp_xprofile_*).
2) create a script on site 1, that after user registering/updating profile data will make a post|get request with encrypted data to site 2
3) site 2 will get this data, check it and saves.
The same script should be placed on site 2 as well. Of course, you will need some kind of securing of all data transfers, also lots of BP hooks will be used.Once I even implemented such solution. Site1 was on PHP (WP+BP), while Site2 – on ASP. That was interesting project
April 27, 2012 at 8:41 pm #133675In reply to: Moved template files around FTP website blank page
@mercime
Participant== I am using the BP default theme ==
You do not need BP Template Pack plugin nor do you need to download/upload any folders if you’re using the bp-default theme. So …
– First, deactivate the BP Template Pack plugin
– Second, deactivate BuddyPress, delete BuddyPress, then install it again. This is to make sure that you have clean installation.April 27, 2012 at 8:15 pm #133673In reply to: Creating forms for bp users to fill out!
@mercime
Participant@bryceburk Actually, if you don’t need social networking, you can do this in WordPress alone. You can use custom post types or categories for countries and states and those are searchable. Users can add posts or custom post types from wp-admin or from front end via
https://wordpress.org/extend/plugins/wp-user-frontend/screenshots/
https://wordpress.org/extend/plugins/quick-post-widget/screenshots/
https://wordpress.org/extend/plugins/post-from-site/screenshots/If you want to use BuddyPress – there’s http://buddydev.com/plugins/bp-simple-front-end-post/ where you can created different forms which you can configure to contain what you need. Needs PHP and HTML/CSS skillsets for this though.
There’s also the premium Gravity Forms plugin which can work for both WP and BP.
April 27, 2012 at 8:05 pm #133672@mercime
ParticipantB. At the bottom of the same 16 files, replace:
`
`
with the following (except for registration/register.php):
``
with the following for registration/register.php:
`jQuery(document).ready( function() {
if ( jQuery(‘div#blog-details’).length && !jQuery(‘div#blog-details’).hasClass(‘show’) )
jQuery(‘div#blog-details’).toggle();
jQuery( ‘input#signup_with_blog’ ).click( function() {
jQuery(‘div#blog-details’).fadeOut().toggle();
});
});`
Save files.
C. Upload the 6 BP folders containing the 16 files you’ve just revised to your server wp-content/themes/yourcustomthemefolder/
D. Check out the style modifications made in BP Twenty Ten for reference especially with removing the bullets and bringing in the extended width of the BP elements – https://codex.buddypress.org/theme-development/theme-dev-bp-template-pack-walkthrough-twenty-ten-bp-1-5/3/ – and copy these over to your theme’s stylesheet and adjust as needed.
April 27, 2012 at 8:05 pm #133671@mercime
Participant@kristopherlouie You’d need to use the first option, i.e., change 16 template files within the 6 BP folders transferred to your custom theme folder in server during the compatibility process.
If you’ve previously changed any of the BP template files in your theme folder, replace all of them for a clean slate by deleting the 6 BP folders in server – /activity, /blogs, /forums, /groups, /members, and /registration – then re-run Appearance > BP Compatibility.
Download the 6 clean BP folders to your computer hard drive.
A. At the top of each of those 16 template files I linked to above, replace
``with
`<article id="post-” >`Then, in each of 16 files, you’d like to change the BP Templates’ page title’s header tag from `
…
` or `
..
` to `
// Titles Of Respective BP Page Templates //
` and move it above `
`, just watch out when you do this in the /activity/index.php page.Save files.
April 27, 2012 at 7:42 pm #133668In reply to: Find friends option?
juanmaguerrero
Participant@naijaping @brainiacwebdesigns
I found the plugin by buddydev is full working and compatible with 1.5+ Doesn’t this suits your needs? Hope it does!
April 27, 2012 at 7:31 pm #133667In reply to: Google not indexing BuddyPress Forum content
cybe001
MemberI am using Group forums.
Thanks
April 27, 2012 at 7:22 pm #133665juanmaguerrero
Participant::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::
IMPORTANT UPDATE: Since a few pals here have tested and found some things to correct, I have addeded this correction (so now it works OK, yay!):Below this:
<div id="message" class="info"> </div>Add this:
jq('.pixelMonitor').remove(); jq(document).unbind('scroll');:::::::::::::::::::::::::::::::::: END OF THE UPDATE ::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::
Hi, all, @naijaping @abysshorror @funmi-omoba
I finally found the time to work on this. I’ll post a detailed explanation on my blog later but here it goes for you to be able to use it right away. I’ll maybe make a plugin of all this, and some code you’ll have to tweak will be overridden if you update your buddypress theme but by that time I hope this will be improved and I’ll post to you back with the updates.
So:
1) Edit the file: /wp-content/plugins/buddypress/bp-themes/bp-default/activity/activity-loop.php (around line 38) This assumes you're using the default theme, if not, do it in your other theme file. // Change: <li class="load-more"> <a href="#more"></a> </li> // For this: jq('.pixelMonitor').remove(); jq(document).unbind('scroll'); // 2) Add this at the bottom of that file: <div class="pixelMonitor" style="width: 1px;height: 1px"> <div id="loadingActivityMessage" style="background-color: white;float: right;height: 16px;padding: 4px 2px 4px 39px;width: 100px">Loading...</div> </div> /* Auto load more updates at the end of the page when reaching the bottom of the page */ jq(document).ready( function() { iterationAllowed = true; function loadActivityOnScroll(){ jq("#loadingActivityMessage").show(); if ( null == jq.cookie('bp-activity-oldestpage') ) jq.cookie('bp-activity-oldestpage', 1, {path: '/'} ); var oldest_page = ( jq.cookie('bp-activity-oldestpage') * 1 ) + 1; jq.post( ajaxurl, { action: 'activity_get_older_updates', 'cookie': encodeURIComponent(document.cookie), 'page': oldest_page }, function(response){ jq("#loadingActivityMessage").hide(); jq.cookie( 'bp-activity-oldestpage', oldest_page, {path: '/'} ); jq("#content ul.activity-list").append(response.contents); }, 'json' ); return false; }; jq(document).scroll(function(){ if ( Math.round(jq('.pixelMonitor').last().offset().top) > ( jq(document).height() -500 ) && iterationAllowed === true ) { loadActivityOnScroll(); iterationAllowed = false; setTimeout('iterationAllowed = true', 3000); }; }); }); /* Auto load more activity block ending here */Hope you enjoy it. In near future I hope I’ll have it as a plugin and I’ll post it here to let you know.
Some demo: http://www.horizontea.com/ (scroll to the bottom to see in action).
PS: I’m not saying this is bug free, but will not affect any data on your db or installation, it just tweaks the interface
Cheers!PS 2: As soon as I check the “WP/BP” way to add this code to the file “automatically” (as a plugin) I’ll update it.
April 27, 2012 at 7:20 pm #133664In reply to: Moved template files around FTP website blank page
JLent.
ParticipantYes it was the installation wizard I was trying to go through I would of remembered that if I could get into my dashboard my apologies. I am using the BP default theme with a WordPress dating plugin from datingsolutions.biz. It was the BuddyPress Template Pack and when it tried to move the files automatically it failed and showed me steps to do it manually, that’s why I used Filezilla.
April 27, 2012 at 5:58 pm #133662@mercime
Participant@kristopherlouie before I do anything, you have a closing “ at the beginning and ending of your footer.php file – not kosher. Please confirm if issue is corrected with the removal of “ at the top of the footer.php file.
April 27, 2012 at 5:49 pm #133661In reply to: Removing groups buttons from template
prwashburn1977@gmail.com
ParticipantSo I was able to remove the button for “leave group”. For those who may want to do the same just remove the following from line 50 of the group-header.php file in your buddypress theme.
``
Will post here if I figure out how to remove the other buttons.
April 27, 2012 at 5:41 pm #133659In reply to: Ouch! Help
@mercime
Participant== I can’t found where can i edit: Log in to Reply ==
@helpme2012 what exactly do you want to do with “Log in to Reply” – revise it or remove it?April 27, 2012 at 5:36 pm #133658In reply to: Set featured image stuck on saving
Slicklips
MemberHey thanks for getting back to me, I tried changing back to Buddypress default and the same problem remains.
April 27, 2012 at 5:35 pm #133657kristopherlouie
Member@mercime here you go…
page.php http://pastebin.com/SMtEKWCJ
header.php http://pastebin.com/7FPEKL2D
index.php http://pastebin.com/P0vx5cta
footer.php http://pastebin.com/suyUEvDf
sidebar.php http://pastebin.com/8Pg4zcc9Thanks for checking this out
April 27, 2012 at 4:59 pm #133655In reply to: Google not indexing BuddyPress Forum content
@mercime
ParticipantWhich forum content – Group Forums (internal bbPress for BP) or the Sitewide Forums (bbPress plugin)?
April 27, 2012 at 4:51 pm #133653In reply to: WordPress/Buddypress specialist needed
@mercime
Participant@wewetho I see organizational structures, slide presentations and the like. You’re missing an online donation page (or did I miss that?). Curious: Where is the main HQ of ESF located? Telephone number/s? Who or what companies sponsor this organization? Good luck.
April 27, 2012 at 4:43 pm #133652In reply to: Number of sites in user profile
@mercime
ParticipantWordPres/BuddyPress versions? I recall that issue was already resolved.
-
AuthorSearch Results