Save file.
Search Results for 'wordpress'
-
AuthorSearch Results
-
May 1, 2012 at 5:30 am #133790
In reply to: Gaming Ladder and Tournament
@mercime
ParticipantThere are no plugins that does what you need at this time. You can post the job offer at
https://buddypress.org/community/groups/bp-jobs-board/ or at http://jobs.wordpress.net/May 1, 2012 at 5:23 am #133789In reply to: do not have associated WordPress Pages
@mercime
Participant@starprintbrokers Salutation is supposed to be a BuddyPress-ready theme, therefore you do not need to install and activate the BP Template Pack plugin nor go through Appearance > BP Compatibility process. If you did, deactivate Salutation and delete the theme, then re-upload a clean copy of the Salutation theme but do not activate it yet.
Change to bp-default theme, then go to BuddyPress > Pages. For each component that does not have a Page yet, e.g. Activity Streams does not have “Activity” page across, click on “New Page” button and the Page will be created. Do the same for the remaining components in the section. You associate each page to each component and click “Save All” button at the bottom of the section.
Check that each BP component page is working. Then and only then do you change to Salutation theme. Btw, do confirm with theme author if Salutation has been upgraded to work with current BuddyPress version.
May 1, 2012 at 4:58 am #133788In reply to: do not have associated WordPress Pages
starprintbrokers
MemberActually, I already had BuddyPress Template pack installed. I just activated it again, and tired again. I clicked repair on that message, and still, there are no pages by those names in teh pull down menus.
May 1, 2012 at 4:49 am #133787In reply to: do not have associated WordPress Pages
yadigit
Participantgo to your /wp-admin -> plugins -> add new.
search Buddypress Template Pack.
Install it, and run it.
Follow the simple steps…
All should work well.April 30, 2012 at 11:51 pm #133781@mercime
Participant== Buddypress seems to have written over my wordpress database ==
@roclimb BuddyPress creates tables in database and does not overwrite WP DB tables..
Just deactivate BuddyPress and BP plugins from wp-admin. If you cannot access your wp-admin, rename buddypress plugin folder via FTP/sFTP or control panel in server. See also https://codex.buddypress.org/troubleshooting/
April 30, 2012 at 11:26 pm #133780In reply to: Seeking Buddypress/PHP developer
@mercime
Participant@stealthology post also at http://jobs.wordpress.net/
April 30, 2012 at 9:04 pm #130273@mercime
Participant@jakeyboy1989 from your WP forums post as well – If you just want to make your WordPress theme compatible with BuddyPress, you don’t need to create a multisite installation.
Install and activate the BP Template Pack Plugin and go through Appearance > BP Compatibility process. Then post back here if you require further assistance.
April 30, 2012 at 8:14 pm #133774@mercime
Participant@strek-break you’re welcome. Marking this as resolved.
April 30, 2012 at 8:04 pm #133773jakeyboy1989
MemberThanks for the tips @Paul Gibbs
The reason I want the two sites to be connected is so that my authors can network and get points, rankings, etc, for the posts they make (this was a feature requested by my users).
The key thing for me is that my users want the social features that I can provide through buddypress, but it is difficult to integrate with more extensive framework based wordpress templates (at least it seems that way for me) so I would love to be able to have buddypress on the same site, or a connected site, that has its own template and is hidden from users.
Also when I say authors it might sound misleading because this could be potentially 500-1000 different users so they need group and discussion forum features..
April 30, 2012 at 7:00 pm #133770In reply to: “Read More” in Activity Stream not there
storyaday
ParticipantApril 30, 2012 at 5:18 pm #133762Strek
Participantthe template was perfect! Thank you for helping me!
April 30, 2012 at 3:05 pm #133753In reply to: Change title of forum Directory
Toby Cryns (@themightymo)
ParticipantYou can add this to wp-config.php:
`define( ‘BP_FORUMS_SLUG’, ‘conversations’ );`
That will change the slug. To change the actual text that is rendered on the page, check out the “Custom Groups Name” plugin at http://hardlyneutral.com/wordpress-plugins/
…and if you are feeling adventurous, go ahead and start editing your translation files!
April 30, 2012 at 11:47 am #133742In reply to: Using BuddyPress Avatars with wp_list_comments()
Paul Wong-Gibbs
KeymasterYour wp_list_comments() call specifies the callback as a function called “mytheme_comment”, which is probably in your theme’s functions.php file. You’ll need to use these functions in there, or modify what you have already.
For an example, look at the code block just below the phrase “You will need to define your custom callback function in your theme’s” on https://codex.wordpress.org/Function_Reference/wp_list_comments (get_avatar is used six lines from the top)
April 30, 2012 at 7:17 am #133732Paul Wong-Gibbs
KeymasterThere are some ways to get content copied from one site onto another, but I think they are all pretty clunky. Your content should be written and published on your user-facing site, and that’s where you’d be best to track things like blog posts.
I’d have a careful think about if tracking your authors’ activity gives much value to the other users; after all, anyone can read the posts that are published in the actual website. You can create a second site
(or multisite site), and have that site as the discussion area for your authors. Specifically, consider using the ‘P2 Theme’ on it, which you can find for download on WordPress.org.April 30, 2012 at 7:08 am #133731In reply to: BP 404 subdirectory install
Paul Wong-Gibbs
KeymasterIf you’ve gotten the top-level pages to work and access BuddyPress content, I can’t understand why it wouldn’t also work everywhere else.
Your original post says “second BuddyPress install”; are you trying to run two separate BuddyPress sites under one installation of WordPress (multisite)?
April 30, 2012 at 6:23 am #133729In reply to: Using BuddyPress Avatars with wp_list_comments()
Paul Wong-Gibbs
KeymasterWordPress’ get_avatar() should work fine. For post/page comments, I would actually suggest using get_avatar() instead of bp_core_fetch_avatar() so that your site doesn’t break if you decide to turn off or stop using BuddyPress.
April 30, 2012 at 1:57 am #133727@mercime
ParticipantB. COPY your theme’s sidebar.php and Save As > sidebar-buddypress.php
Open up sidebar-buddypress.php and at the TOP, above all code contained within, add this
``Then at the BOTTOM of sidebar-buddypress.php, below all other code, add this:
`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 file.
C. Upload header-buddypress.php and sidebar-buddypress.php to your theme folder in server wp-content/themes/envision/ at the same directory where your regular header.php and sidebar.php files are in
D. Final note: Copy the style modifications for some BP elements https://codex.buddypress.org/theme-development/theme-dev-bp-template-pack-walkthrough-twenty-ten-bp-1-5/3/ and paste those at the bottom of your theme’s stylesheet, then adjust to taste.
April 30, 2012 at 1:56 am #133726@mercime
ParticipantYou will only need to create two new files, header-buddypress.php and sidebar-buddypress.php
If you’ve revised any of the BP template files transferred to your peekaboo theme folder in server during the BP Compatibility process, please delete the 6 BP folders transferred to your envision theme folder in server – activity, blogs, forums, members, groups, register – then re-run Appearance > BP Compatibility again to make sure that you have clean template files.
A. COPY your theme’s header.php and Save As > header-buddypress.php
Open up header-buddypress.php and at the BOTTOM of the file, below other code contained within, add this:
`<div class="middle” id=”ID, PREFIX.’_page_sidebar_position’, true)==1 ) echo ‘sidebar_right’;
elseif ( get_post_meta($post->ID, PREFIX.’_page_sidebar_position’, true)==2 ) echo ‘sidebar_left’;
elseif ( get_option(PREFIX.’_sidebar_position’)==1 ) echo ‘sidebar_left’;
else echo ‘sidebar_right’; ?>”>`April 29, 2012 at 10:36 pm #133724@mercime
Participant@hnla thank you

@strek-break will post in a little while.
April 29, 2012 at 8:19 pm #133720Hugo Ashmore
ParticipantWould have helped to have posted that link in the first place then

The third step does require some manual modifications did you try that or are you not familiar with basic html /code?
I’m sure mercime will help shortly – but I do stress again that the help forums are not to be regarded as a service.
April 29, 2012 at 7:49 pm #133719Strek
ParticipantHello, I tried using the plugin Template Pack BP, but the third step, the template is unformatted and can not finish. With this @ mercime asked me to send the links: header, footer, index, page and sidebar.
https://wordpress.org/support/topic/who-can-adapt-the-template-wordpress-for-buddypress
April 29, 2012 at 7:24 pm #133718Hugo Ashmore
ParticipantPlease bear in mind that this is a support forum to help with BP issues and problems, it is not a coding service. People here are volunteers giving their free time to help.
You really should make an attempt to begin this process – using the template pack plugin if required – or post to the jobs board with the request and pay someone to help you with this requirement.
If you make an attempt to get started I’m sure @mercime or someone will guide you along with the process and help where you get stuck.
Also do check out the codex pages as – apart from the template pack walk throughs – Mercime has done a lot of work converting themes to BP and has an extensive list of themes that have been converted or threads where the process for a given theme exist.
April 29, 2012 at 8:00 am #133706denzuke76
MemberThanks Paul. I read the article briefly last week and will read it again.
Meanwhile here are some findings:
1) It seems apparently the hackers are using some auto-login scripts – cos after setting achievements for tracking/awarding 1 point per login, some accounts clocked in over 20K points in a single day (twenty thousand times of login in to the site?!)
2) Another research method which was accidental – i setup Feedjit to see traffic and potential users coming in. Apparently the hacker use this search phrase – “powered by WordPress and Buddypress” so they must have and actively seeking sites powered by Buddypress knowing they can come in to create spam easily.Anyway the above observations is for those who are working on their sites as reference.
April 28, 2012 at 7:19 pm #133697In reply to: Getting Started…
@mercime
Participant== Getting Started’-type issues ==
@tilley46 check out BuddyPress Codex – https://codex.buddypress.org/getting-started/== How do I create a standard Home Page for my BP site ==
What’s a standard home page for you? The list of blog posts like it is with bp-default theme, Twenty Ten and Twenty Eleven themes? If you want a static front page, do the same thing as you would do for a regular WordPress theme.== I don’t see anywhere for new users to register new profiles’, etc ==
Basic WordPress, go to Settings > General and allow registration.April 28, 2012 at 5:22 pm #133695In reply to: Mobile for BP.and multisite
modemlooper
ModeratorDo you need it to work with each MU site? Next version is in dev and will be a plugin you can activate on each sub site. You could use it for WordPress alone.
-
AuthorSearch Results