Skip to:
Content
Pages
Categories
Search
Top
Bottom

Search Results for 'theme'

Viewing 25 results - 6,476 through 6,500 (of 32,562 total)
  • Author
    Search Results
  • danbp
    Participant

    Hi,

    try this snippet (add it to bp-custom.php or child theme’s functions.php):

    function garfrey_widget_title( $title ) {
    if ( $title == "Members") {
    $title = __('Members Translation') ; // foreign char. here
    }
    return $title;
    }
    add_filter ( 'widget_title' , 'garfrey_widget_title', 21 );

    Reference:
    https://codex.wordpress.org/Plugin_API/Filter_Reference/widget_title

    #248415
    Paul-tCGs
    Participant

    Well @shanebp, the call to GoDaddy didn’t go so well: they basically wanted to turn on the WP debug log which I’d enabled last two weeks ago.

    In the meantime, with things somewhat stable, we’ve been turning the BuddyPress plugin on and off to add the functionality on the backend or the user profiles on the front end as one need

    Clearly we are having trouble with the Kami theme update, and we’ve emailed the developers for the theme to get them working on that part of the issues we’re having. Yet there are lots of other updates are occurring all the time too, and clearly BuddyPress is the one sticking me in the side.

    When BuddyPress is activated, the WP Dashboard goes white, but functionality of the plugin comes back along with all the data. When BP is deactivated (removed via sftp, actually) the functionality is lost, but the Dashboard comes back to online mode.

    I’m wondering now if there is any better support than these forums.. cuz i can’t see this being more than running blind right now.

    #248413
    Zoggite
    Participant

    I tried one of the standard themes with no change (not really surprising as the login/logout doesn’t use theme pages as far as I can tell).
    I also tried disabling all the other plugins that had changed recently, but the only ones that made a difference were jetpack and buddypress. I’m pretty sure that the only reason disabling jetpack had an effect is that it also seemed to disable buddypress.
    Thanks.

    #248404

    In reply to: Members – Masonry

    Hastig
    Participant

    Is this to a single members full profile page?
    /wp-content/themes/themeName/buddypress/members/single/index.php

    Or to the page that lists multiple members?
    /wp-content/themes/themeName/buddypress/members/index-directory.php

    Wither way, I use masonry on both. If you showed your code I may be able to help.

    With my page layout I’m able to open the masonry div at the page top and close at at page bottom.

    Be sure to have the masonry block divs within that main, masonry div marked with the proper class.

    For starters, wrap the members photo (avatar) and Organization field in a div.

    Make each div display as block.

    Basic example..

    <div style=”display: block;”>
    <div style=”display: block;”><?php bp_member_avatar(‘type=full’); ?></div>
    <div style=”display: block;”><?php bp_member_profile_data(‘field=Organization’); ?></div>
    </div>

    Remember to replace the php with what you’re using on your site. (field name and avatar type, specifically)

    #248400
    Henry Wright
    Moderator

    That sounds very strange. Are you using any plugins? What theme are you using?

    #248381
    shanebp
    Moderator

    Both files are found here:
    buddypress\bp-templates\bp-legacy\buddypress\members\

    Make your changes in template overloads of those files.

    #248368
    bruce30
    Participant

    sorry about it @danbp ., i find the style.css of the theme i paste the code and still nothings happen., maybe i did wrong.?

    #248367
    bruce30
    Participant

    thanks for the response @danbp ., i use twentyfourteen theme and i find the CSS folder and inside of that folder editor-style.css file then i paste the code inside, but nothings happen.

    #248366
    danbp
    Participant

    Color means styling. And styling means CSS.
    As mentionned in my first answer, you have to add the code into your child-theme’s style.css file

    nilay89
    Participant

    Hello,

    I want to change pagination format in member loop. I want to numerical pagination in member loop.like a “buddypress support forms”.How can i set it? is it possible?

    Wordpress Version : 4.4
    BuddyPress Version: 2.4.2
    Theme use: Twenty Sixteen

    I am working on my local wamp server

    shanebp
    Moderator

    Create a template overload of this file:
    buddypress\bp-templates\bp-legacy\buddypress\members\members-loop.php

    In the overload, remove this code. It appears twice.

    <div class="pag-count" id="member-dir-count-bottom">
    
    	<?php bp_members_pagination_count(); ?>
    
    </div>
    #248349
    shanebp
    Moderator

    You are using a theme or a another plugin to create the ‘wall’, correct?
    Have you asked the author of that theme or plugin?

    You can use a plugin like https://wordpress.org/plugins/theme-my-login/ to change the login page.

    #248348
    shanebp
    Moderator

    Talk to the creator of that theme.

    #248328
    bruce30
    Participant

    thanks for your reply @danbp ., πŸ™‚ but where should i put this ? into my childs theme functions? sorry im new at this., πŸ™‚

    #248321
    shanebp
    Moderator

    Have you tried deactivating other plugins to see if there is a conflict?

    Have you tried switching to a WP theme like 2013 to see if there is an issue in your current theme?

    How can i PM an expert each time i run into something i don’t know?

    These forums are run by volunteers.
    If you want access to an expert, you can create a listing on the jobs forum.

    #248320
    shanebp
    Moderator

    Not easy to diagnose.

    Have you tried deactivating any additional plugins to see if there is a conflict?

    Have you tried switching to a WP theme like 2013 to see if there is an issue in your current theme?

    #248317
    danbp
    Participant

    Hi,

    yes of course it is possible.
    You have to modify CSS from within your child-theme.

    Try:

    #buddypress div.item-list-tabs ul li.current a span, #buddypress div.item-list-tabs ul li.selected a span {
        background-color: red!important;
    }

    This example will change the background color into red for the number when you’re on a profile tab.
    Ie. when on message tab, background goes red. When not, it stays in original color. When on friends tab, background goes red, and so on.

    Use Firebug or a similar tool to get the correct tag class or id name.

    #248310

    In reply to: About bp-custom

    danbp
    Participant

    Hi,

    if you read attentively the mentionned Codex page, you’ll see that the function is written with single quotes. Try it.

    Also, you have to register MT first, using bp_init action hook. (1st function example on codex)
    After that, you may build a MT directory for which you use bp_register_member_types. (2nd example)

    In other words, you need at least 2 functions to get this to work.

    bp-custom.php is the correct file to add those functions. The avantage of this method is to let you theme independant.

    #248281
    Henry Wright
    Moderator

    Could this be an issue with your theme? Try with the Twenty Fifteen theme enabled just to make sure. Also, sometimes plugins can cause problems. Deactivate everything aside from BP and then try testing again.

    #248280
    Henry Wright
    Moderator

    You can modify your theme to add “directions”. Check out the Template Hierarchy article for more info.

    #248272
    peter-hamilton
    Participant

    lol…. you need to copy the folder “buddypress” to your root folder.

    Find “buddypress” folder here.

    plugins/buddypress/bp-templates/bp-legacy/buddypress

    Now you need to read up on how to change these template files for your need, only these files inside this folder should be changed.

    There is no buddypress theme, all wordpress themes are buddypress themes, and the only way to make something unique is through making a child theme of a wordpress site first, then adding buddypress css code and templates etc.

    Good luck mate, here is a sample of what I am doing with buddypress…
    My Buddypress site | Onlijn.com

    Hendrik Lersch
    Participant

    Have found the solution by myself. If anyone interested, here’s the code i have added to my bp-custom.php. i think it works as well in the themes functions.php.

    function remove_wpautop_from_buddypress() {
    	if( bp_current_component() ) {
    		remove_filter( 'the_content', 'wpautop', 99 );
    	}
    }
    add_action('bp_init', 'remove_wpautop_from_buddypress');

    bp_current_component() is true, if you be on a buddypress page, so wpautop is only disabled there.
    But i still wonder, why it’s necessary to do something like that. πŸ˜‰

    #248238
    Joshua Blevins
    Participant

    Do you have a fully custom BuddyPress theme that is not a child theme? I’d really like to look at the code and figure it out under the hood.

    shanebp
    Moderator

    I don’t know anything about themes by ‘customizr’.
    I gave you a suggestion re troubleshooting.

    onix07
    Participant

    do you mean it’s an old theme by customizr

Viewing 25 results - 6,476 through 6,500 (of 32,562 total)
Skip to toolbar