Skip to:
Content
Pages
Categories
Search
Top
Bottom

Search Results for 'buddypress'

Viewing 25 results - 34,426 through 34,450 (of 94,540 total)
  • Author
    Search Results
  • #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’.

     

    #156063
    randerson1228
    Participant

    I have installed 1.7 and it is no different from the earlier release in working with Constructor. My website is test.shenzhenapartmentrental.com.

    Unfortunately, I am a noob at this but there appears to be no theme with the buddypress pages. Everything is everywhere when I go to a buddypress page. I have scoured the web to find which files to repair with this theme, but there are no answers anywhere. I would eally appreciate some help with this.

    rlrob008
    Participant

    Good Day All,

    I have been reading through these forums with regards to the BuddyPress Registration form issue.

    I am not too sure if I understand the requirements properly from reading so many threads on here. I think I just ended up confusing myself further.

    We setup a BuddyPress website here http://www.weetie.com/. The website has a customised registration form. The “Allow anyone to register” option is set in the admin panel.

    This is the BuddyPress registration form.

    Currently in most browsers desktop and mobile the registration form does not work. It is however erratic as some can register and others can’t.

    It does that reloading of the form with contents still loaded for many users. It was not working in any browsers until Friday last week. Then we rolled back to an older version and it started working on certain devices it had stopped working on until then.

    We have even setup a test installation of the platform with only WordPress and BuddyPres (manual installs) with the default BuddyPress theme activated. The same problem persists there.

    These are the 2 latest threads we have gone through to try to resolve the issue:

    http://buddypress.org/support/topic/sign-up-redirects-to-registration-which-goes-nowhere/

    http://buddypress.org/support/topic/disabling-bp-registration/

    Neither of which helped.

    What I was wanting to know is the following.

    1) Do we need to completely disable BuddyPress registration?
    2) Use the default WordPress registration?
    3) Is there a step-by-step guide to assist one with this process?
    4) Is there perhaps a compatibility issue with the system and certain browsers?

    We have currently lost large chunks of time trying to solve this issue and styling it to work on mobile devices so we are on the tightest of deadlines to complete and any assistance would be highly appreciated.

    The WordPress version currently used is: 3.5.1
    The BuddyPress version currently used is: 1.6.2
    The previous BuddyPress version used: 1.6.4

    Hopefully I have enough detail for assistance.
    Kind Regards

    #156061
    arredoannunci
    Participant

    hi, how do I use the registration page wordpress rather than that of BuddyPress?
    thank you very much
    Gianluca

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

    #156057
    carlh1
    Participant

    Thanks Hugo, what exact file are you talking about? the page “groups” is assigned to the “groups” in buddypress settings. Do you just want the source from view source in my browser? I dont’ think that’s what you are asking for. Where exactly can I find the file Paul was asking for? Is it in the editor, or do I need to ftp to find it? Is it in the buddypress plugin directory?

    Shahzaib Sabir
    Participant

    How can i move the Buddypress notifications from right to left of the buddypress bar? The only notifications not the “Howdy, yourname” dropdown too.

    #156054
    bp-help
    Participant

    @karmatosed Actually I got confused because I have various installations of WP and BP on my localhost. Actually on my WP 3.5.1 install and BP 1.7b1 install using a child theme of “Responsive” I just use my child themes style.css to overide any buddypress css that I need too. Reason I do this is so if the “Responsive” theme gets updated then my child themes styles stay intact. Make sense?

    #156053
    bp-help
    Participant

    @naijaping @mercime
    I removed #buddypress from the css and here is what my style.css looks like:
    `
    /*
    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: 100%;
    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;
    }

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

    }

    ul#members-list.item-list li div.action {
    text-align: center;
    overflow-y: hidden;
    top: 18px;
    right: 6px;
    }
    /* End Custom member loop avatar styling */
    `
    Here is another pic to see the changes but it still needs some adjusting.
    members directory
    Hope you guys can help! I appreciate the help you have given so far! Thanks!

    #156052
    ilmpip
    Participant

    Hi,

    as I did not succeed in adding a sub menu to the group forum screen with bp_core_new_subnav_item I added my sub links in the same way as buddypress does for the sub menu in group admin section (“Details, “Settings”, “Avatar”, etc). So my links appear as a sub menu in the group forum and the links are ok. The problem is that the slugs (e.g. list-view) are not recognized as an action variable. For the admin sub menu links, it seems that buddypress always calls admin.php and in that file there is a differentiation based on the action variable. I would like to do the same – so that forum.php is called and does differnt things based on the action variable. But it doesn’t seem that forum.php is called. Instead there is a PAGE NOT FOUND error. How to tell buddypress that e.g. groups/group1/forum/list-view should call forum.php?

    Thank in advance

    #156050
    carlh1
    Participant

    Thanks for the reply Paul. Sorry for my ignorance, I’m not schooled in themeing. What file do you want to see? When I look in the editor shouldn’t I be able to see a groups template in that list somewhere? I don’t. And the “groups” page that was created when I installed buddypress doesn’t have any code. What can I send you?

    #156049
    bookee
    Participant

    @mercime, again thanks for the quick reply. I copied the following lines of code to my theme’s sidebar.php (very bottom of the page), but nothing happens meaning the login form doesn’t show on the sidebar.  Is there a specific location in the sidebar.php file to add it?

    What i meant by top menu login option is having a member login menu that would take the registered users to a login form similar to the form on the sidebar. Hope that makes sense.  Below is the code i copied to my theme’s sidebar:

    [EDIT – please use pastebin.com to post long blocks of code. ~~ Mercime]

    Thanks!

    #156048
    szed
    Participant

    Hi !
    Did anyone find a way to hav User Acces Manager working with Buddypress ?

    I’m looking for a way to hide/show certain parts of my site to specifics groups.
    UAM doed that perfectly.
    But, with the BudyPress page (Members, Groups, Forum, etc…) even if UAM hide them in the menu for non-granted user, they can acces to the page directly by the URL…

    On a normal page/post, a non-granted user who is trying to acces a page (private by UAM) directly by the URL, will be redirect to the home page (depending on the option of UAM of course).

    Juste the BudyPress’s pages are causing problems 🙁

    Any idea ?

    enfusia
    Participant

    Hi everyone! Yeah, I’m new so pardon me and my new guy question.

    I’ve got Multiste running, BuddPress running etc…

    I used the “Commons In A box” plugin to upload BP and a few relevant plugins.
    I have set up a a few test users and made blog posts with them.
    The way the blog is configured(?) with this “commons in a box theme” is sending all my traffic to the member sites. You find a post snippet you like, click on the title to read more and you’re sent to the members site to read the full post.

    So, my question is; how do I make it so that when they click the title to read more that they go to the blog on my site NOT the members site?

    I searched for this answer till I was blue in the face, nothing. I asked the Author of the theme I am going to buy, he gave me an answer that made no sense to me “if your using your WordPress Blog then it will work”. It doesn’t take me an hour and a half to watch the TV show 60 minutes, but I didn’t get that answer?

    Everything about WPMU & BP seem pretty straight forward so far but just not this one issue. I Googled “powered by BuddyPress” to see if I could reverse engineer what they had done. I found sites with the traffic remaining on their site and the traffic going to the members sites but no clues as to why.

    Any help to get me to understand this would be greatly appreciated.

    Patrick

    #156046

    In reply to: zenthemes?

    shanebp
    Moderator

    I’ve never used zenthemes.

    But their Buddies theme page says:
    “WordPress 3.3.1 & BuddyPress 1.5.3.1, bbPress 2 compatible”

    So it’s out of date – should be at least WP 3.5 and BP 1.6

    terraling
    Participant

    Sorry, I missed the array() out of my example.

    The slug of my page is actually “talk-of-the-town”, it is the static front-page of the site and has the buddypress activity page assigned to it. The page id is 95.

    None of these tests identify the page, although they do identify the other pages in the list:

    is_page(array('page1','page2','page3','talk-of-the-town'))  ? get_template_part('filters') : get_sidebar();
    is_page(array('page1','page2','page3','95'))  ? get_template_part('filters') : get_sidebar();
    is_page(array('page1','page2','page3','activity'))  ? get_template_part('filters') : get_sidebar();

    bp_is_page(‘activity’) does work.

    I have the same problem with the groups page, btw.

    The above is by way of information. The test is to load a special sidebar on certain pages, otherwise load the normal sidebar. I’m just going to reverse the test, to load the normal sidebar for other specified pages, otherwise load the special sidebar.

    Thanks for your help…

Viewing 25 results - 34,426 through 34,450 (of 94,540 total)
Skip to toolbar