Skip to:
Content
Pages
Categories
Search
Top
Bottom

Search Results for 'theme'

Viewing 25 results - 15,101 through 15,125 (of 31,073 total)
  • Author
    Search Results
  • #133557
    @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.

    @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.

    @mercime
    Participant

    More 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.

    @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.

    @ChrisClayton
    Participant

    The secondary avatars are registered within the functions.php
    https://buddypress.trac.wordpress.org/browser/trunk/bp-themes/bp-default/functions.php#L554

    To 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 );
    #133519
    @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/

    fmeroney
    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?

    #133513
    @mercime
    Participant

    WP/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++?

    #133510
    Paul Wong-Gibbs
    Keymaster

    Those 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.

    #133498
    Paul Wong-Gibbs
    Keymaster

    1. If you’re building a child theme, you don’t need to do anything extra to load jQuery.
    2. No. IE just sucks.

    #133488
    shanebp
    Moderator

    You 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.php

    You 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.

    #133483
    abbas667
    Member

    hi @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 ” .

    #133462
    @mercime
    Participant

    @mrguythornton Another way to add profile link to add to what @chrisclayton posted above.

    You can filter wp_nav_menu to 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;
    }
    #133459
    @ChrisClayton
    Participant

    Either 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_Reference

    #133458
    zillabuggs
    Participant

    I 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.

    #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?

    #133446

    In 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.

    #133443

    In reply to: New Install Issues

    Xenoflare
    Participant

    HI 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

    #133420
    @ChrisClayton
    Participant

    You’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.php

    #133418
    @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?

    @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.

    #133409
    zillabuggs
    Participant

    I 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.

    #133408
    @mercime
    Participant

    Which 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

    #133383
    @mercime
    Participant

    Are 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.

    #133378
    genotype
    Member

    I 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;
    }
    
Viewing 25 results - 15,101 through 15,125 (of 31,073 total)
Skip to toolbar