Skip to:
Content
Pages
Categories
Search
Top
Bottom

Search Results for 'theme'

Viewing 25 results - 4,451 through 4,475 (of 31,073 total)
  • Author
    Search Results
  • #254531

    In reply to: text field pre fill

    danbp
    Participant

    The correct file is bp-legacy/buddypress/activity/post-form.php. Don’t modify it, but copy/paste (same path – same file name) buddypress/activity/post-form.php to your child-theme and do your changes from there.

    #254509
    sharmavishal
    Participant

    Try running multisite…your task theme on main domain and sub domain run bp

    #254484
    r-a-y
    Keymaster

    Add the following either to your theme’s functions.php file or /wp-content/plugins/bp-custom.php:
    https://gist.github.com/r-a-y/c9eb7c7f5bff2afb271a9b1edbf56a59

    Haven’t tested for breadcrumbs, but that code snippet changes the <title> tag and the page title to use whatever is set in the admin area.

    #254455

    In reply to: Activity Feed

    danbp
    Participant

    Site access is restricted to members, and i won’t register anyway. Yes it’s probably theme related, but check also some settings.
    Can users comment on your site ?
    Have you tested with Twenty Sixteen or Fifteen theme ? If not you should do this. If it works with Twenty contact your theme support, who can help you to adjust CSS.

    You could also search the forum for similar question to yours.

    #254450

    In reply to: Activity Feed

    rblea24
    Participant

    Here is the URL https://www.goalsarecool.com/activity/

    When logged out the status update box disappears too. As it relates to my original question, Is this an issue with the theme? Anything you can do to help would be greatly appreciated.

    #254445
    sakshale
    Participant

    Thanks for the pointer — I’m finding many things about the installation process to by non-intuitive and skipped in the documentation. This is but one example.

    Current documentation issues;
    Getting started ends with configuration of components.

    Configure BuddyPress


    Unfortunately that is just the beginning.

    I am currently trying to figure out how create registration and activation pages. This is apparently not a new issue — I still wading through the support thread.
    https://buddypress.org/support/topic/registration-and-activation-pages-missing/
    It talks about switching to the bp theme — which isn’t listed as a selectable theme.
    I have found the files under bp-themes/bp-default — I just need to discover what to do with them. (more reading ahead)

    #254429
    danbp
    Participant

    Hum… Thrive is a premium theme for which we can’t assist you as we have no access to his code. Sorry, but you have to ask for help on the theme support.

    And BP is not the problem i guess.

    #254427
    damian12
    Participant

    > Which template did you changed?
    I changed the theme (thrive social) i’m testing , editing & setting because i want that theme for my site. I set another one i have installed (socialMe) to see if the translation problem in some places of the site persist in this one.

    > What do you want to fix if it works now ?
    I want to fix the problem in the thrive social template because that will be my main template.

    Yo said something like

    Apparently there are some missing tabs aside “subir”

    . What is that about?

    #254418
    maganiza
    Participant

    I am a learner like you but this is what I did last week and it worked for me. I just used two major things. The buddypress plugin and the boss theme. All the settings your’e looking for are preloaded and you just need to check and uncheck what is necessary.

    Give it a try.

    #254402

    In reply to: RSS FEED error

    danbp
    Participant

    Please give details.

    Could be a blank line outside php brackets.
    Best way to know what’s going on, is to check your site on http://validator.w3.org/feed/

    Depending the message you get from the validator, you can:

    – Check your wp-config.php file for blank lines outside of <? and ?> bracketed sections.
    – Check your theme’s functions.php file for blank lines outside of <? and ?> bracketed sections.
    – One by one, disable plugins and revalidate until you isolate the one causing the problem.

    #254399
    danbp
    Participant

    > I just changed the template and the translations works fine.

    Which template did you changed ? What do you want to fix if it works now ?
    Have you tried with a Twenty theme ?

    #254397
    damian12
    Participant

    No dan, i’m not using the child theme, should i?

    This problem also happens in others translations arround my site, not only in “subir”.
    Badly to me, i have not other template that supports buddypress, but i will try to find one and install it to check that. Thanks for your awesome support.

    EDIT: I just changed the template and the translations works fine. So the problem is the template. What do you think i should do to fix it?

    #254395
    danbp
    Participant

    Unable to reproduce. It’s working for me. Here’s what i see on my test site.

    translation to spanish

    What i did:
    – set site language to español de argentina
    – downloaded venezuela’s version of po/mo
    – renammed both file to buddypress-es_AR (
    – added the file to this directory wp-content/languages/plugins/buddypress-es_AR.mo

    That worked without changing header information, as ID is still “stable”. Sorry, my fault.

    Perhaps try to change the theme to see if something get different. Apparently there are some missing tabs aside “subir”. Compare pictures.

    Do you use a child-theme where you changed a profile template ?

    #254392
    danbp
    Participant

    @fidelduque,

    welcome here ! To not loose your changes, you need a child-theme.

    Theme Compatibility & Template Files

    Note that we can’t assist you here for premium theme, as we have no access to the code, but if you search the forum, you will find many topics related to child theme, profile-loop and customization.

    As you’re new, please read here.

    #254391

    In reply to: Hide All Members Tag

    danbp
    Participant

    hi @mlao,

    we let the tab All members where it is and remove only the count.

    function mlao_gettext( $translated, $original_text, $domain ) {
    
        if ( 'buddypress' !== $domain )  
               return $translated;
    
        switch ( $original_text ) {
            case 'All Members %s':
                return 'All Members';
    
            default:
                return $translated;
        }
    }
    add_filter( 'gettext', 'mlao_gettext', 20, 3 );

    Add this to bp-custom.php or child-theme functions.php

    danbp
    Participant

    @gettingdownunder,

    i’m unable to reproduce your issue. I installed WPJM on my test site(latest BP & bbP, 3rd party theme), activate it and used default settings before saving. Worked like a charm, out of the box !

    The plugin created 3 pages, which i added to my theme. 1 as menu item, the 2 other as sub-menu. If you get a 404 on preview, the page

    For the settings, i disallowed account creation. Visitors must be site members to publish a job. Visitors should also not be able to publish when they’re not logged in.

    Check you have the tree pages, and disallow any thing related to account inside the plugin settings and see what goes on.

    Perhaps you trashed some pages and they are still in trash. Clear it. Pages must be unique.

    #254336
    Henry Wright
    Moderator

    buddypress.org is open source so feel free to check out the theme’s code.

    Open Sourcing BuddyPress.org

    David Cavins
    Keymaster

    Hi Ben,

    You are correct that it’s best to leave the bp stylesheet in place so that you get updates to that file. You can add a custom stylesheet, though, and increase the selector power of the rule, so that it overrides the bp.css rule, like .site #buddypress #item-body { border-left: none; }

    Here’s the basic concept.
    https://developer.mozilla.org/en-US/docs/Web/CSS/Specificity

    Adding a stylesheet:

    Including CSS & JavaScript

    #254329

    In reply to: who’s online widget

    danbp
    Participant

    @rblea24,

    sorry, but we can’t assist you as you use a premium theme for which we have no access.
    See if this X support topic can help you.

    #254320

    In reply to: who’s online widget

    ckchaudhary
    Participant

    With twentysixteen theme active, i can already see those images in horizontal alignment. Maybe the theme you are using, has a css rule which is affecting it. In any case, you can always write some custom css to make those images ‘float’.

    #254313
    Henry Wright
    Moderator

    You could be using the thumb sized avatar. Check your theme to make sure the full sized image is being used. bp_core_fetch_avatar() is the function used by BuddyPress to display avatars but there’s also get_avatar() so check for that too (it’s a WordPress function).

    #254282
    tatufrancis
    Participant

    Thank you guys,

    I deactivated all the plugins, and changed the theme to Twenty, then activated all the buddypress components, Now it works Perfectly FINE!!!! Now again switched back to Venedor theme !!! Happy coding Ninjas!! 🙂

    Thanks @danbp

    #254277
    danbp
    Participant

    Could it be that your theme has some specific CSS for avatars ?

    #254271
    danbp
    Participant

    Be carefull, it’s not recommanded to modify original files as they will be overwritten at next update. And you will have to redo all your customization.

    Prefer best practice and use a child-theme, especially if you modify CSS.

    #254266
    sharmavishal
    Participant

    Get wc4bp plugin by sven…get a theme which supports woo+bp+wc vendors…

Viewing 25 results - 4,451 through 4,475 (of 31,073 total)
Skip to toolbar