Skip to:
Content
Pages
Categories
Search
Top
Bottom

Search Results for 'questions'

Viewing 25 results - 676 through 700 (of 2,115 total)
  • Author
    Search Results
  • #169235
    LogicWolf
    Participant

    Hi David,

    Hoping I’ll be able to help. I’ve seen alot of questions on the topic of How To Change and Reorder BuddyPress Group tabs and not much great direction. Hopefully you won’t be saying that after my posts… What I’m really hoping is someone comes in with a simpler, more elegant solution 🙂

    Were you able to control the standard tabs?

    For the standard group tabs, you can control them directly like this:

    if (isset($bp->groups->current_group->slug) && $bp->groups->current_group->slug == $bp->current_item) 
    {
            $bp->bp_options_nav[$bp->groups->current_group->slug]['home']['position'] = 10;
            $bp->bp_options_nav[$bp->groups->current_group->slug]['members']['position'] = 60;
            $bp->bp_options_nav[$bp->groups->current_group->slug]['notifications']['position'] = 110;
    }

    So the code to put in functions.php might look like this:

    function whff_setup_nav() 
    {
    
      if (isset($bp->groups->current_group->slug) && $bp->groups->current_group->slug == $bp->current_item) 
      {
         $bp->bp_options_nav[$bp->groups->current_group->slug]['home']['position'] = 10;
         $bp->bp_options_nav[$bp->groups->current_group->slug]['members']['position'] = 60;
         $bp->bp_options_nav[$bp->groups->current_group->slug]['notifications']['position'] = 110;
    }
    
    } 
    add_action( 'bp_setup_nav', 'whff_setup_nav', 100000 );

    CUSTOM BUDDYPRESS GROUP TABS
    Now, the non-standard tabs are the tricky ones. You can’t access them through $bp->bp_options_nav (at least I couldn’t figure out how to do this.)

    Nonstandard Group tabs through the $wp_filter global. A good starting point is to dump the $wp_filter variable and get a look at it’s guts. Add this code in functions.php:

    global $wp_filter;
        
    foreach ( (array)$wp_filter as $key => $value ) 
    {
       echo '<pre>';
       echo '<strong>' . $key . ': </strong><br />';
       print_r( $value );
       echo '</pre>';
    }
    

    $wp_filter is a bunch of nested arrays. Search through the output for your Group Tab Names (i.e. search for “Calendar”) and you will find something like this:

    [00000000746c6153000000004e38ec1f_register] => Array
                    (
                        [function] => Array
                            (
                                [0] => BP_Group_Calendar_Extension Object
                                    (
                                        [visibility] => private
                                        [enable_create_step] => 
                                        [enable_nav_item] => 1
                                        [enable_edit_item] => 
                                        [name] => Calendar
                                        [slug] => calendar
                                        [admin_name] => 
                                        [admin_slug] => 
                                        [create_name] => 
                                        [create_slug] => 
                                        [create_step_position] => 81
                                        [nav_item_position] => 40
                                        [nav_item_name] => 
                                        [display_hook] => groups_custom_group_boxes
                                        [template_file] => groups/single/plugins
                                    )
    
                                [1] => _register
                            )
    
                        [accepted_args] => 1
                    )
    

    That’s your Group tab and all the hooks you need to change attributes (in this case it’s the tab that says “Calendar”.)

    But… unfortunately you can’t use the [00000000746c6153000000004e38ec1f_register] as a handle — that string is random and changes every time. But, now you know the class name is BP_Group_Calendar_Extension Object and you can search for that in the $wp_filter array and make the changes.

    Hope this gets you closer, let me know how you make out. Cheers David!

    #169025
    Tux Kapono
    Participant

    Any update on what Facebook plugins work best? We never did install one because none seemed to cover Facebook/Twitter/Google at the same time, so we decided to just use Facebook.

    Is it possible to have the plugin be compatible with a BuddyPress registration page where we have additional required questions, like zip code, etc for instance? Here’s what we have right now: destinationli.com/register.

    olihaslam
    Participant

    I think the problem I’m having is related to Ajax. It looks (to my newbie eyes) like the buddypress ajax request is not working for some reason.

    In Firebug I see this on the site that has the problem:

    ajaxurl
    	"https://conflictcomms.org/wp-admin/admin-ajax.php"
    	
    bp_ajax_request
    	null

    But on my other site where it appears to work correctly I see this:

    ajaxurl
    	"http://olihaslam.com/wp-admin/admin-ajax.php"
    	
    bp_ajax_request
    	Object { readyState=4, responseText="\n\n\n <div id="pag-top" c... \n </div>\n\n </div>\n\n\n", status=200, more...}

    I don’t know where to start with Ajax issues. Suggestions on where I should start learning more about this would be very kind.

    Newbie questions:
    Is Ajax be affected by my site being on https and not yet having ssl certificate set up?
    Could Ajax be interrupted by s2member?

    I’d be grateful of any pointers or advice.

    Thanks

    #168828

    In reply to: Changing themes

    @mercime
    Participant

    @pssawhney you could post at http://jpbs.wordpress.net/ if you have the budget to hire a developer.

    If you have no budget but would have to create the site all by youself, then post at the bbPress.org forums, in the WordPress.org forums and here of course. Do post specific questions per topic i.e., do not cram all your issues in one topic. That way, those who know how to resolve certain issues would respond to your topic and help out. There’s no guarantee that all your questions will be answered but at least you’re steps closer to where you want to go.

    #168766
    Techknowledgic
    Participant

    Thanks for ur reply Hugo!

    Yes he is done with the development but if I wanna add Buddypress forum after he is done it’s not his job anymore or I mean free job. I was using tal.ki forums and he installed it later I decided to move to a better forum like BuddyPress that’s why now it’s my duty to do the work. I have asked him for help about this but it’s taking too long for him to reply now and I can’t always wait him to reply for each issue I face that’s why I have to try to solve them on my own.

    And yes I don’t have a good knowledge about CSS or javascrip or other programs but I have some knowledge that may help me to solve the problems I face that’s why the only way for me is to ask my questions here and if you need any more details I am ready

    ty

    #168751
    Techknowledgic
    Participant

    Thanks for ur reply John!

    Sounds like your theme has javascript errors in it somewhere. You’ll want to track them down and eliminate them.

    Your questions so far have given me the impression that you’re quite new to WordPress web development (modifying plugin files, not knowing how to debug javascript, etc…) If this is the case, you’ll have a better experience by searching the web for similar problems, and solving some of these issues on your own.

    That’s true, I have hired a web developer to design my website and he is done now with developing the website and now I found some problems I am trying to fix them on my own that’s why I am asking too many questions these days.

    Also, words like “Help!” or “URGENT” don’t actually make anyone help you sooner than anyone else around here. Most volunteers will jump in and help who they can, when they can, — if you appear manic, it decreases the investment someone is willing to make in you, your site, and your topic.

    Hoping to not sound discouraging. We’re excited you’re using BuddyPress, and want you to enjoy our community to its fullest.

    No I understand you, I am already an admin on a big forum which has around 27K members and alexa rank around 35K and veryday I face members who ask questions like this ( like me 😀 ) and I know it won’t help but the previous question when I said urgent I was really afraid that all the data in the website has been lost because I didn’t have backup since around 2 days and I added so much stuff int the past couple of days and in this question I just was mentioning it’s a question by saying “Help!” and nothing more

    Thanks again!

    #168748

    Sounds like your theme has javascript errors in it somewhere. You’ll want to track them down and eliminate them.

    Your questions so far have given me the impression that you’re quite new to WordPress web development (modifying plugin files, not knowing how to debug javascript, etc…) If this is the case, you’ll have a better experience by searching the web for similar problems, and solving some of these issues on your own.

    Also, words like “Help!” or “URGENT” don’t actually make anyone help you sooner than anyone else around here. Most volunteers will jump in and help who they can, when they can, — if you appear manic, it decreases the investment someone is willing to make in you, your site, and your topic.

    Hoping to not sound discouraging. We’re excited you’re using BuddyPress, and want you to enjoy our community to its fullest.

    Techknowledgic
    Participant

    I mean in the WP admin area and I see it in the dashboard

    and about the pic I have asked a question yesterday about re sizing the pic size in the forum https://buddypress.org/support/topic/how-to-resize-memebrs-images-sizes/

    idk what’s going on with me and why nothing is working

    and about the weird characters also they are available almost in all the pages like the contact us for example it ends with #.Ue-C0PnI1FM I thought that it’s normal but I will check this out with the developer if he solve it

    – Let’s test. Create a new Page named Discussions and place the forums shortcode there. Go to Settings > Forums and change archive slug to discussions. Then go to technowldgic.com/discussions/ and check out your forums

    I tried this and after saving the setting the forum page became 404 error page and also I am seeing this error near the box where I wrote discussions “Possible bbPress conflict: Topics base” so I removed it and wrote forums and topics again in the archive slugs

    Going back to logging in. I added the bbPress login widget to the sidebar of Twenty Twelve theme and it’s working fine even with BuddyPress activated. What are you using for your users to log in?

    I don’t think I am using anything, I thought everything would come with the buddypress plugin like the log in area and everything else. what should I use?

    and I am so sorry for asking too many questions and having too many problems but idk why I am so lost by installing the forum

    and ty so much for ur help

    #168688
    zerosit
    Participant

    I want to thank you so much for your assistance in this matter.

    You don’t know how much it means to me to have you pointing out that the first link is what matters in my case.

    I’ll look into the child theme compatibility issue and making of the buddypress.php. Could you assist in providing the code to tag the_content and the_title in this file?

    Lastly, is this all that I need to do? I guess in your own way you’ve answered my Questions 1 and 2. But how about No.3? Do I have to copy files from:

    /bp-templates/bp-legacy/buddypress/
    To:
    /my-theme/community/ or /my-theme/buddypress/

    as stated in your article?

    I apologise for taking up your time in this matter and I cannot thank you enough for your kind assistance. Please forgive my newbie questions; I’m trying really hard to understand this and get it to work.

    cheers

    #168675
    zerosit
    Participant

    I’ve tried changing it to Twenty Twelve and I can see the BP pages. So, it’s definitely an issue with my theme.

    Ok, after reading and rereading the codex, these are the questions in my head:
    1. Am I supposed to create a child theme?
    If yes, is the child theme directory supposed to read /parenttheme-child/ or /buddypress/ ?

    2. you mentioned about these list of templates:
    – plugin-buddypress.php
    – buddypress.php
    – community.php
    – generic.php
    – page.php
    – single.php
    – index.php

    I gather from the article that BP will use JUST 1 of this. Did I understand this correctly?
    If yes, am I supposed to copy one of these files into the child theme directory?
    If I’m not supposed to create a child theme, which sub-directory should this file be found in my theme directory?

    For my case, I have none of the above files in my theme’s directory. The closest I have is mytheme/includes/news-single.php. Is this supposed to be the directory that this file should be found? Am I supposed to rename this file? Or am I supposed to rename and copy this file into the child theme directory? Or am I supposed to create a new php file altogether for my case? And, if so, how do I go about doing it?

    3. You mentioned in your article that Template compatibility also runs a check to see if two directories or folders exist in a theme:
    ‘buddypress’
    ‘community’

    I’ve checked and they don’t exist in my theme directory. Can I safely conclude that BP will use the files in the plugin and that I won’t need to create these folders in my theme? Or do I need to create them in my theme or child theme?

    While still on this, you mentioned in your article:

    “Therefore, you can modify any bp theme compatibility template by copying it over from:
    /bp-templates/bp-legacy/buddypress/
    To:
    /my-theme/community/ or /my-theme/buddypress/”

    Am I supposed to create either community or buddy press and copy the files I found in the BP plugin /bp-templates/bp-legacy/buddypress/ into them? And if I’m supposed to create a child theme, am I supposed to create these in the child theme instead and copy these into them? Or should I do nothing at all?

    Please advise and assist me in this; I’m really very confused. Or if it’s in any way possible, could you list down the steps that I’m supposed to take?

    Thanks.

    #168433
    @mercime
    Participant
    #168428
    David Cavins
    Keymaster

    That’s too bad. A couple of questions I should have asked at the beginning:

    1. What theme are you using?
    2. If you remove the conditional we added, does bbPress return topics for the correct group?
    Ali Hendaoui
    Participant

    Hello, I have a quick questions and it would be great if I have it answered,I am using buddy press, 0n my site http://horsesiq.com/, and when members are added it shows like this: http://horsesiq.com/members/christie/, now is there anyway that I can get rid of the members so that I can have a link like this: http://horsesiq.com/christie, please let me know if there is any solution.

    Thank you

    #168236
    @mercime
    Participant
    #168001
    Isaal
    Participant

    Thanks for ur reply! 😀

    just a question: if I use BuddyPress will it function like this forum? I mean like the forum we are talking in it now and creating topics and asking questions. is this how BuddyPrss will look like?

    ty

    #167910
    maikunari
    Participant

    Just posting back with the solution in case it helps anyone else. This function will do it:
    xprofile_get_field_data('Profile',$u_id);

    In my case it’ll be:

    <?php if ( xprofile_get_field_data( 'Profile', $user_ID ) ) : ?>
         <?php echo xprofile_get_field_data( 'Profile', $user_ID ); ?>
    <?php endif; ?>

    Thanks to chifliiiii on WordPress Answers and to @shanebp.

    #167809
    4ella
    Participant

    This is the old thread but the same question, I didn’t want to spam here that’s why I will ask the same question here again, I would like to dynamically populate buddypress data into custom post types gravity forms when the user is logged in, I am succesfully populating wordpress user meta, but I don’t know the code in functions.php for buddypress profile fields to make them work, I have already asked on Gravity Help forum, but there are plenty of questions like that and the same as mine question they have never been answered, I hope that maybe somebody from this forum already had to resolve that problem in the past.

    #167803

    In reply to: Author Posts

    Hugo Ashmore
    Participant

    I think if you are using this plugin that the appropriate place to ask these further questions is on their support.

    #167680
    Peter
    Participant

    Thanks @mercime

    For your questions,

    1. Chinese
    2. UTF-8

    Could you send me a Chinese site URL based on Buddypress, and the @ mention works well?

    #167668
    Hugo Ashmore
    Participant

    @shameermohamed50 the Codex is your friend, do have a read of some of the guides there as they will answer a certain amount of your questions in setting up BP and bbP

    oedipamaas
    Participant

    @mercime – I have been reading the codex for BuddyPress, Event Manager and WordPress core. It’s just hard to keep it all straight. My only point above was that it literally would take one extra sentence when answering questions to say something like, “put it in bp-custom.php (which is a file you’ll have to create…here’s the codex link”. That’s all. OTherwise, the approach above totally worked for me too! It disabled the completely non-fuctioning registration page (I’m using a BP friendly theme, but not the default) and now I let S2 Member handle the user registration/login process. I don’t how I could ever use BP as a stand alone so there are many things in it that are clearly buggy that consistently get blamed on using any other plugin or theme. My real wish is that the wonderful devs who made BP happen make a non-buggy Pro version and make some money for themselves (while we get better docs/examples/support).

    Prolet
    Participant

    @oedipamaas, unfortunately there are many other critical points.I no longer use this plugin, because it’s structure is in conflict with all the world. I can’t use easy other theme than bp theme, all other additional plugins have to be bp related only, not to mention the fear I have to ask questions here. Most of the time all are concentrated to be irritated by wrong topics, or not telling you everything….
    Anyway, thank you very much for the information and congratulation for finding it by your self!

    Best regards,
    Polly

    #167532

    In reply to: multilingual switcher

    @mercime
    Participant
    #167480
    themefusion
    Participant

    Hey Guys 🙂 Sorry to dig up an old topic, but I came across it and wanted you to know that Avada does work with BBpress. If you had issues with it, please signup at our support forum and post up a new topic with your questions and we’ll take a look.

    Thanks!

    #167401
    daol9999
    Participant

    @mercime

    Thank you so much. Best $15 I’ve spent in a long time. No faffing around for hours and hours and hours, it just works!


    @hnla
    @henrywright-1

    I will install the new 1.8 version on a test server when its out (fyi: I am THE developer. There are no other developers to talk to.) It sounds a big step in the right direction though. In answer to all the ‘why have you done it like that’ questions (on this and another thread) that you and Henry raise is because BuddyPress is a steep learning curve and this project involved bringing together both site functionality (i.e. BuddyPress) and the design that the graphic designer supplied. The design was closer to the TwentyTwelve theme, which is why that was chosen. Then its learn and make mistakes on the way. Some things you get right, others you get wrong. Some things work, some things don’t… So to answer all your ‘whys’, ‘that’s why’.

Viewing 25 results - 676 through 700 (of 2,115 total)
Skip to toolbar