Search Results for 'theme'
-
AuthorSearch Results
-
April 25, 2012 at 1:31 pm #133557
In reply to: Activity Favorite Button Leads to Not Found
@mercime
Participant@tungdo Just saw your post. This is in relation to your theme submitted to WP Theme Review, right? Have you resolved this already? Will be out today but can look into this tonight so let me know.
April 25, 2012 at 1:23 pm #133554@mercime
Participant@kozmica check if your theme has been “template-packed” already. If not, then follow the steps on that page at the top. If you need assistance, post back here.
April 25, 2012 at 12:46 am #133523@mercime
ParticipantMore of the outdated plugin issue and possibly a theme issue, not sure. The best thing is to set up BuddyPress and check everything out using bp-default theme without other plugins activated. When everything’s doing as expected, only then do you change to custom theme and add on plugins (only those which have been upgraded to current WP/BP versions). That way, you’ll know when anything goes wonky and can fix it asap. Only my 2 cents.
April 25, 2012 at 12:42 am #133522@mercime
Participant@markyeoj what I see are some custom modifications on your end that went awry. Change to bp-default theme and deactivate plugins, I believe issues will be corrected.
P.S. after I log in, I get redirected to this same topic and I have to go to dev.freelanceu.net/zim/fitnessdiary/ not good.April 25, 2012 at 12:34 am #133520@ChrisClayton
ParticipantThe secondary avatars are registered within the functions.php
https://buddypress.trac.wordpress.org/browser/trunk/bp-themes/bp-default/functions.php#L554To remove it for groups, add this to your child theme’s functions and it will override the parent themes version.
function bp_dtheme_activity_secondary_avatars( $action, $activity ) { switch ( $activity->component ) { case 'friends' : // Only insert avatar if one exists if ( $secondary_avatar = bp_get_activity_secondary_avatar() ) { $reverse_content = strrev( $action ); $position = strpos( $reverse_content, 'a<' ); $action = substr_replace( $action, $secondary_avatar, -$position - 2, 0 ); } break; } return $action; } add_filter( 'bp_get_activity_action_pre_meta', 'bp_dtheme_activity_secondary_avatars', 10, 2 );April 24, 2012 at 11:41 pm #133519In reply to: How to post code in Group Forum?
@mercime
Participant@katharinentheke I use SyntaxHighlighter Evolved and it’s working well in my bp-default child theme – https://wordpress.org/extend/plugins/syntaxhighlighter/ and how to post code at http://en.support.wordpress.com/code/posting-source-code/
April 24, 2012 at 11:16 pm #133517fmeroney
Member@mercime now i understand what you meant, i did try the BP default theme, no luck. I may need to revert to my backup. I have a developer working on the fix now. Any ideas, could this be a BP & WP issue?
April 24, 2012 at 9:27 pm #133513In reply to: HELP. Double Posting Updates NEED FIX
@mercime
ParticipantWP/BP versions? When this double-posting happen – since the beginning of a new install or when you updated BP or WP? What theme are you using? Have you to changed over to bp-default to check if issue is corrected there? Did you check if all the plugins you installed are compatible with latest WP and BP 1.5++?
April 24, 2012 at 9:04 pm #133510Paul Wong-Gibbs
KeymasterThose buttons are added in the functions.php in the bp_dtheme_setup() of the BP-Default theme. You could unregister those actions, depending on what you want to do.
April 24, 2012 at 5:20 pm #133498In reply to: Child theme + jQuery + Placeholders
Paul Wong-Gibbs
Keymaster1. If you’re building a child theme, you don’t need to do anything extra to load jQuery.
2. No. IE just sucks.April 24, 2012 at 4:24 pm #133488In reply to: How to limit the characters of the profile bio.
shanebp
ModeratorYou mean the description field ?
That’s tougher. How good are you at php ?
afaik – you need to modify the
/themes/your-theme/members/single/profile/edit.phpYou won’t see a form field for ‘description’
BP uses bp_get_the_profile_field_type() to show fields.
So you need to do an ‘if’ on the bp_the_profile_field_input_name()
And then use javascript to limit the number of chars allowed – lots of examples of this online.April 24, 2012 at 3:24 pm #133483In reply to: “This group does not have a forum setup yet.”
abbas667
Memberhi @mercime ,thanks for you’r response.yes, i tryed all this way’s and other way’s
but the problem still not fixed.
i changed my site theme by bp.defult theme and other theme.
i drop the bodypress database tables for many times and instaled buudypress again and again.
i drop the plugins database tables for many times.
i deactivated the all plugins.
please search this words in google and you see the results . ” This group does not have a forum setup yet ” .April 23, 2012 at 11:52 pm #133462In reply to: [Resolved] A Simple Link To The Users Profile Page
@mercime
Participant@mrguythornton Another way to add profile link to add to what @chrisclayton posted above.
You can filter
wp_nav_menuto include the profile link in custom menu (unless your theme author created his own custom menu for the theme). We add in the requirement for the link to show up only if the user is logged in. The following is added to theme’s functions.php file:// Filter wp_nav_menu() to add profile link add_filter( 'wp_nav_menu_items', 'my_nav_menu_profile_link' ); function my_nav_menu_profile_link($items) { if (!is_user_logged_in()) return $items; else $profilelink = '<li><a href="' . bp_loggedin_user_domain( '/' ) . '">' . __('Visit your Awesome Profile') . '</a></li>'; $items = $items . $profilelink; return $items; }April 23, 2012 at 10:03 pm #133459In reply to: How do I remove the excerpt in activity?
@ChrisClayton
ParticipantEither a custom functions plugin or your themes functions.php file.
Resources:
Custom plugin file: http://justintadlock.com/archives/2011/02/02/creating-a-custom-functions-plugin-for-end-users
What is a filter? https://codex.wordpress.org/Plugin_API/Filter_ReferenceApril 23, 2012 at 9:59 pm #133458zillabuggs
ParticipantI am using 2011 theme. I don’t think the 3 groups on the page are of particular relevance. It’s just the fact that the posts show on the activity and group home pages, but if it is a long post you can’t read it all. One post that I put on from my admin account has [read more] as a link to see the rest of the post. All the others have […] including another one from my admin account posted today. I just wondered if anyone else has had this problem. You can see at http://justcatchat.com if that helps.
April 23, 2012 at 9:41 pm #133456@mercime
Participant@zillabuggs have never installed any WP/BP on Windows because of many possible issues. Adding “Windows server” to title of this topic even it’s possible that it’s not a server issue.
== My users are putting posts on, but you cannot view all of the post. . I am referring to a groups page with 3 groups set up on it.==
To clarify, do the members actually get to publish that group forum topic in the first place? As in, do they see a message that the forum post was successfully published after they post similar to what you see happen when you post here – “Your reply was posted successfully”?
Sorry, not getting this -> “groups page with 3 groups set up on it”
What specific relevance does the Groups Directory (?) page have to do with your issue?What theme are you using?
April 23, 2012 at 6:38 pm #133446In reply to: New Install Issues
@mercime
Participant== I just went ahead and picked a theme that had BuddyPress built in. I’m having other issues, ==
@xenoflare There are many “BuddyPress-ready” themes which have not been updated for a while.
I suggest that you install Theme Check plugin and the Log Deprecated Notices plugin. The first plugin tests your theme and make sure it’s up to spec with the latest WP theme review standards. The second plugin identifies if there are deprecated functions being used in the theme and if so, offers the alternative if available.
The two plugins above will help prevent headaches if things go awry in your installation.
April 23, 2012 at 5:58 pm #133443In reply to: New Install Issues
Xenoflare
ParticipantHI mercime,
Thank you for the suggestion. I just went ahead and picked a theme that had BuddyPress built in. I’m having other issues, but the BuddyPress aspect is working great! Anyways, thanks again. BuddyPress is really awesome, but my WordPress skills are limited at this point.
-Xenoflare
April 22, 2012 at 10:38 pm #133420In reply to: SNIPPET: Intelligent post page templates
@ChrisClayton
ParticipantYou’re right! Thanks, edited the original post.
And Yes. It uses get_template_part which using the BP Albums example again, will search for the following templates and php require() the first it finds. In this priority.
child-theme/entry-bp-album-picture.php
child-theme/entry.php
parent-theme/entry-bp-album-picture.php
parent-theme/entry.phpApril 22, 2012 at 10:32 pm #133418In reply to: “This group does not have a forum setup yet.”
@mercime
Participant== why the report bug page is not working in site ==
You need to log-in again in trac with same username and password== our forums problem still not fix. please help ==
@abbas667 start your own topic.When asking for support, include WP/BP versions, theme used, plugins installed, single WP or multisite, Linux/Windows hosting, WP installed in domain root or subdirectory,
Did you go through the Installation Wizard after activating BuddyPress?
Did you change to bp-default and deactivate other plugins?
If you deleted bbPress forum tables in database, did you also delete bb-config.php file in root so you can re-start installation of the Group Forums?April 22, 2012 at 9:34 pm #133414@mercime
Participant@1337h4nd WP/BP versions? What theme are you using? Linux/Windows hosting? Single WP or Multisitie? If changing to bp-default theme didn’t work, have you tried deactivating plugins except BuddyPress and resetting permalinks? I’ve seen two instances where that happened and both were due to themes which have not been updated to latest BP versions.
April 22, 2012 at 8:12 pm #133409zillabuggs
ParticipantI do apologise. I am referring to a groups page with 3 groups set up on it.
WP 3.3.1, BP 1.5.5, Theme is 2011, other plugins activated are:bbPress, BP gallery, BP template pack. System is windows.April 22, 2012 at 7:44 pm #133408@mercime
ParticipantWhich forum are you referring to – Group Forums (internal bbPress for BP) or Sitewide Forums (bbPress plugin)?
WP/BP versions? What theme are you using? What other plugins are activated? Windows/Linux hosting? More info about your installation is welcome
April 22, 2012 at 5:27 am #133383In reply to: [Resolved] 500 error after activating
@mercime
ParticipantAre you still at ixwebhosting? I just set up a new BP install there. Edit – Deactivate plugins via FTP by renaming plugin folder and change automatically to Twenty Eleven by renaming the folder of the theme you were using when you activated BuddyPress.
April 22, 2012 at 1:48 am #133378In reply to: [RESOLVED] Programmatically creating a group
genotype
MemberI figured it out by going through a plugin that creates groups. The bottom part of the above code can be replaced with:
$saved = $new_group -> save(); if ( $saved ) { $id = $new_group->id; groups_update_groupmeta( $id, 'total_member_count', 1 ); groups_update_groupmeta( $id, 'last_activity', time() ); groups_update_groupmeta( $id, 'theme’, ‘buddypress' ); groups_update_groupmeta( $id, 'stylesheet’, ‘buddypress' ); } else { return false; } -
AuthorSearch Results