Skip to:
Content
Pages
Categories
Search
Top
Bottom

Search Results for 'buddypress'

Viewing 25 results - 22,776 through 22,800 (of 69,130 total)
  • Author
    Search Results
  • #156116
    randerson1228
    Participant

    Hugo.
    Thanks very much for that follow-up information.
    I don’t know what I should do about that. Should I just delete everything and start again?

    #156115

    In reply to: Groups Button Text

    boiy
    Participant

    I actually dont get it

    what is the purpose of the POEDIT application… i chaged my “join Group” to “join Us’… but the text didnt change… but when i edit from buddypress core files ‘bp_groups_template.php” .. it changes to ‘join Us’ and it is my understanding that core files arent to be tampered with… due to future update… can sumone pls explain this language file thing proparly and how i can customize my texts and strings… or is the another way

    #156113

    In reply to: Groups Button Text

    boiy
    Participant

    I actually dont get it

    what is the purpose of the POEDIT application… i chaged my “join Group” to “join Us’… but the text didnt change… but when i edit from buddypress core files ‘bp_groups_template.php” .. it changes to ‘join Us’ and it is my understanding that core files arent to be tampered with… due to future update… can sumone pls explain this language file thing proparly and how i can customize my texts and strings… or is the another way

    #156112
    Yuttadhammo
    Participant

    BuddyDroid 0.9 is now uploaded; it should allow you to access the feed from within Private Buddypress. Also, please update the WP plugin to the latest version on github:

    https://github.com/yuttadhammo/buddypress-xmlrpc-receiver

    #156111
    Hugo Ashmore
    Participant

    Having looked further at this theme framework on a local test install and it appears to work pretty well in it’s default out of the box implementation with BP 1.7  so I’m afraid whatever custom settings / layout configurations you have set in the frameworks backend are causing issues.

    #156108
    s_mari20
    Participant

    Hello, I am interested in this option too, I want to give the user role to author when we makes new blog(site), and I saw your code above. But where shall I put this code? In buddypress files? But where?
    thank you

    #156104
    snooper
    Participant

    hi guys

    last night i started setting up a fresh WP installation with the newest version of BP. all good.
    i then installed (via WP) woocommerce and after installation (i guess during activation) it just stalled. admin would not respond at all. no errors, just complete blank page, for every page i tried, except for one time i got a 500 error with no detail.

    i eventually deleted the plugin folder and it went back to work without woocommerce.

    if anyone has any suggestions here, i’d be happy to hear.i also want to install another couple of plugins, like Learn Dash – wondering how all theses templates are going to work with each other….

    Thanks!

    #156102
    bookee
    Participant

    @mercime, still hoping you can help me out.

    Thanks.

    #156097
    Ben Hansen
    Participant

    well it’s an interesting post but it is contrary to my own personal experience with WP Engine i signed up right about the time he gave up. I would note the fact that he states that the CEO issued personal apology and reimbursement for the migration issue, thats seems like at least they took the issue seriously at some point. Also way he closes the post “Where I am today Back at Linode, back to running it myself.” This is exactly the reason it makes sense for people along a spectrum of technical expertise not just novices. Granted the WP managed hosts are not without their drawbacks and even WPE has some quirks that take a little getting used to.

    WP Engine is the only company that provides both phone support and specialized wp hosting as far i know. The entire system is built from the ground up only to host WP sites. I cannot tell you how valuable it is when you call into support and you don’t have to explain how wordpress works or what buddypress is every time you are trying to get to the bottom of something. It is also the only hosting company i know that Automattic is financially involved in, to me that means something, i suspect it also means something to WPE.

    In my experience the notion of a perfect host is a canard, what may be a great host today could be horrendous two years from now, but WPE aside from any deal killing kind of quirks is the best platform you could be hosted on aside from wordpress vip unless you truly can afford to do everything yourself.

    #156092
    Kyle H
    Participant

    @bphelp Yes the current structure is /mytheme/css/buddypress.css.

    Any other ideas? I’d really like to get this working.

    modemlooper
    Moderator

    There is also bp_is_activity_component()

    modemlooper
    Moderator

    here’s the code for bp_is_page. You can use

    if ( !bp_is_user() && bp_is_current_component( ‘activity’) )

    `function bp_is_page( $page = '' ) {
          
           if ( !bp_is_user() && bp_is_current_component( $page )  )
               return true;
       
           if ( 'home' == $page )
               return is_front_page();
      
           return false;
       }`
    #156084
    Ben Hansen
    Participant

    yeah idk but i do know that it’s meant for the primary site none of the buddypress stuff would do anything on the sub-sbites anyway.

    akgt
    Participant

    Yes I have, but i’ve had no reply.

    #156079
    Hugo Ashmore
    Participant

    Oh and you ought really to ask this question of the theme authors, as they are the ones that have diverged from the norm so are best placed to understand or know how they have and how that has been done and suggest an approach you can take. They just need to know that BP attempts to use the standard WP templates and the content loop replaced with BP content.

     

    Failing all the above you may need to fall back on the older method of  overloading BP templates into your child and ensuring the markup matches to the themes markup.

     

    You may like to look through the codex to see if the constructor theme has been template packed by Mercime.

    #156078
    Hugo Ashmore
    Participant

    and what is in this file:

    // load one of layout pages (layouts/*.php) based on settings
    get_constructor_layout(‘page’);

     

    This is going to be a problem with these frameworks that break with the normal WP methods for their own approach to templating and where users are going to have to figure out how to deal with this.

    You could try creating a file named buddypress.php in your theme root and in that file copy the contents of what ever is in layouts/page.php but that file may also not be standard.

    #156077
    randerson1228
    Participant

    single.php
    /**
    * @package WordPress
    * @subpackage Constructor
    */
    // requeried comments
    wp_enqueue_script( ‘comment-reply’ );

    // load header.php
    get_header();

    // load one of layout pages (layouts/*.php) based on settings
    get_constructor_layout(‘single’);

    // load footer.php
    get_footer();

    Just a note:
    open and close php are removed as I think that is causing the entire file to not show up…

    #156076
    randerson1228
    Participant

    hmm… dont know where they go to…
    index.php…
    /**
    * @package WordPress
    * @subpackage constructor
    */
    // Stupid Parser This is Theme support the Gravatar Service
    // get_avatar();

    // load header.php
    get_header();

    // load one of layout pages (layouts/*.php) based on settings
    get_constructor_layout(‘index’);

    // load footer.php
    get_footer();

    #156075
    randerson1228
    Participant

    And here is index.php…

    #156074
    randerson1228
    Participant

    hmm… I pasted all three, but only one showed up.. 2nd try… here is single.php…

    #156073
    randerson1228
    Participant

    Here is single.php…

    Here is Page.php
    <?php
    /**
    * @package WordPress
    * @subpackage Constructor
    */
    wp_enqueue_script( 'comment-reply' );

    // load header.php
    get_header();

    // load one of layout pages (layouts/*.php) based on settings
    get_constructor_layout('page');

    // load footer.php
    get_footer();

    Here is index.php…

    Where should I look next and what should I change?

    Thanks for your help.
    Cheers
    Roy

    #156068
    bp-help
    Participant

    @naijaping @mercime
    Okay I finally got it. Not certain it is totally right but it looks good in both chrome and firefox. I did have to create a div class in the members-loop.php called user-location surrounding the code from step 3 in the tutorial to be able to style it. The changes I made are in the below css in case anyone wants to try this. I also included a pic at the bottom to show the end result. Thank you both for your help! Cheers!
    `
    /*
    Theme Name: BuddyPress Child
    Theme URI: http://example.com/
    Description: Child theme for the BuddyPress Default theme
    Author: bphelp
    Author URI: http://example.com/about/
    Template: bp-default
    Version: 1.0
    Tags: blue, buddypress, custom-background, custom-header, custom-menu, editor-style, featured-image-header, featured-images, fixed-width, light, right-sidebar, rtl-language-support, sticky-post, threaded-comments, translation-ready, two-columns, white
    */
    /*————————————————————-
    Custom CSS
    ————————————————————–*/

    @import
    url(“../responsive/style.css”);

    /* Custom member loop avatar styling */
    #members-dir-list img.avatar {
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    -ms-border-radius: 50%;
    -o-border-radius: 50%;
    border-radius: 50%;
    -webkit-box-shadow: 0 1px 0 #fff;
    -moz-box-shadow: 0 1px 0 #fff;
    box-shadow: 0 1px 0 #fff;
    }

    #members-dir-list a:hover img.avatar {
    -webkit-filter: grayscale(100%);
    -moz-filter: grayscale(100%);
    filter: grayscale(100%);
    -webkit-transition: -webkit-filter 0.2s ease-in-out;
    -moz-transition: -moz-filter 0.2s ease-in-out;
    transition: filter 0.2s ease-in-out;
    }

    #members-list li {
    overflow: auto;
    list-style: none;
    float: left;
    width: 30%;
    margin: 20px 20px 28px 0;
    border: 0;
    }

    #members-dir-list ul.item-list li div.item-title, #members-dir-list ul.item-list li h4, #members-dir-list ul.item-list li div.item-meta
    {
    width: 62%;
    text-align: center;
    }
    .user-location {
    width: 62%;
    text-align: center;
    }

    #members-dir-list ul.item-list li div.item-title {
    font-size: 110%;
    }

    #members-dir-list ul.item-list li div.item-meta {
    text-transform: uppercase;
    font-size: 80%;
    }

    #members-dir-list ul.item-list li img.avatar {
    margin-bottom: 8px;
    }

    #members-dir-list a.friendship-button.add {
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    -ms-border-radius: 50%;
    -o-border-radius: 50%;
    border-radius: 50%;
    border: 5px solid #89ac48;
    font-size: 26px;
    font-weight: bold;
    background: #a5d156;
    color: #ffffff;
    line-height: 50px;
    margin: 18px 102px 0 0;
    }

    #members-dir-list a.friendship-button.is_friend.remove {
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    -ms-border-radius: 50%;
    -o-border-radius: 50%;
    border-radius: 50%;
    border: 5px solid #CC0000;
    font-size: 26px;
    font-weight: bold;
    background: #FF5050;
    color: #ffffff;
    line-height: 50px;
    margin: 18px 102px 0 0;
    }

    ul#members-list.item-list li div.action {
    text-align: center;
    overflow-y: hidden;
    top: 18px;
    right: 6px;
    }

    #member-dir-count-bottom {
    display: none;
    }
    /* End Custom member loop avatar styling */
    `
    members directory

    #156065
    Hugo Ashmore
    Participant

    This is a problem with your theme.

     

    BP theme compatibility is designed to automagically use standards WP templates if  certain custom ones aren’t found, assuming you haven’t created any custom files in your theme BP is looking for these files in this order:

    page.php

    single.php

    index.php

    If you theme does not have these or use one in a standard manner then you may well get a screwy layout, but it’s going to be very hard to tell you what is going on with a third party theme like this.

     

    Looking at BP pages I can see straight away something not quite right as there is a distinct lack of WP/BP body classes that I would expect to see.

     

    You’re going to need to look those standard files above, determine which is being used by BP components in theme compat mode then try and work out what your framework is using to generate your general page.php page views i.e what file is used when you create a WP ‘page’.

     

    #156059
    bp-help
    Participant

    @cikez did you copy the buddypress css directory folder as well as its contents to the root of your theme? If I am correct it needs to maintain its directory structure so in the root of your theme if you copied it correctly there will be a folder named css and inside it will contain buddypress.css

    #156058
    Kyle H
    Participant

    @hnla

    I am using an Artisteer theme. I am not sure what other information you need. I am moving the buddypress.css file to a folder /css/ in my themes directory. If i do not move it over everything looks ok, but as soon as I move buddypress.css over it seems to remove all styling from the default BP install.

    Thanks.

Viewing 25 results - 22,776 through 22,800 (of 69,130 total)
Skip to toolbar