Skip to:
Content
Pages
Categories
Search
Top
Bottom

Forum Replies Created

Viewing 25 replies - 26 through 50 (of 190 total)
  • @nit3watch

    Participant

    I still need to clean the theme up a bit more, left some of my personal-project stuff in there >.<

    @treis if you have a look at the Buddybar widget, I have simply copied most of whats in the widget to the static-sidebar. Personally I think its a bit too much going on hence I focused it on the ‘user’.

    I have added modemloopers ‘drop-down menu’ functionality so if you would like, you can simply the main navigation by having ‘community’ and groups, members, activity all under the ‘community tab’. Im just ganna finish up some things and i will upload it.

    I will post some css you can use to modify the header..

    I would advise not working off it as of yet, once I have a ‘stable’ version I will let you know. If you make any changes, they will be over-written when you upgrade the theme. I will try get round to it later on today. I modified the them in a day and released it the same day hence I over-looked some things.

    @nit3watch

    Participant

    Thanks hnla, Ill have a look tomorrow. I added a link to the zipped theme in the above post

    I implemented the striping via css, though I saw there’s also a way to do it via php and jquery though Im not sure how to do it any other way, need more detail: style Activity Stream odd and even posts. The stripes don’t show for ‘odd’.
    Also activity-comments need to show white when on a ‘odd’ – havn’t seen this covered anywhere on the forums?

    Last thing, is it better to have separate sidebars by calling the sidebar directly on the different pages apposed to using queries?

    Just noticed I have to add padding to the activity-meta, along with other elements in the same ‘position’.

    @nit3watch

    Participant

    You have to edit sidebar.php and remove the log-in/log out stuff, as for the facebook log-in – I will get back to you.

    @nit3watch

    Participant

    The script it over 10 months old, whilst it probably would still work, there is a plug-in that achieves the same thing: Login with AJAX

    @nit3watch

    Participant

    thanks ray

    @nit3watch

    Participant

    Thanks Brandon, works now :D

    @nit3watch

    Participant

    @boonebgorges if I have ‘my groups’ selected but the member hasn’t joined any groups yet, then nothing will be selected when the member lands on the page.

    If I removed the `( bp_loggedin_user_id() )` in “ it displays the tab though will it affect any functionality?

    @nit3watch

    Participant

    Thanks boone! And thanks for the insight of how it works. Ill give it a try when I get home

    @nit3watch

    Participant

    any one? This little problem is holding up a launch :<

    @nit3watch

    Participant

    the page being white:

    on line 22 of style.css add background: #fff;

    and for your sidebar you can either float both your container and sidebar left, then just make sure the container is called before the sidebar or you can try play around with floating your sidebar on line 97 of screen.css right

    Its abit messy so hard to say

    @nit3watch

    Participant

    @Fredok had a look and all seems fine?

    @nit3watch

    Participant

    Im still not able to get the selected tab ( my groups ) to load when you land on the page.

    Basically what I did was swap ‘my groups’ and ‘all members’ around and changed the li class and id. Ive tried a few things but still come up empty handed.

    Here’s my entire activity.php: http://pastebin.com/jbzn7xLN

    the edits are from lines 21-27 and 39-41 ( as I said, basically swapped them around and changed the class of ‘all members’ to just the li id and added the ‘selected’ class to ‘my groups’ )

    @nit3watch

    Participant

    @dexxx.stk There is a Buddypress Jobs Board ( a bit hidden.. ), your project might get more interest there.

    https://buddypress.org/community/groups/bp-jobs-board/forum/

    @nit3watch

    Participant

    Maybe @hnla could help you though as he just finished the members profile maps plug-in

    @nit3watch

    Participant

    Edited: This is basically from the codex ( woke up and saw someone editing a wp file.. jumped the gun :P)

    create a file called bp-custom.php and drop it in your plugins folder.

    In this file add this http://pastebin.com/ANpWqWsV and change the slug’s accordingly

    @nit3watch

    Participant

    I tried “Geocode the address so the use doesn’t need silly cords” but thats beyond me..

    Im stopped developing it as @msmalley ‘s gPress is around the corner ( http://gpress.my/blog/whats-happening-with-gpress-wheres-gpress-0-2-5/ )

    @nit3watch

    Participant

    He is charging for the plugin:
    https://buddypress.org/community/groups/third-party-components-plugins/forum/topic/mapology-is-available/

    Here’s my code, havnt looked at it since this topic but should work also check out this http://twitter.com/pressbuddies/statuses/10167203429093376:

    http://pastebin.com/TVQqjuvr – save as google-group-map.php
    http://pastebin.com/9eTExFx8 – google-group-map.css

    You might want to remove the info window as its not doing much.. Hope its helpfull

    @nit3watch

    Participant

    create a file called bp-custom.php and drop it in your plugins folder. ( remove the group slug plugin.. )

    In this file add this http://pastebin.com/ANpWqWsV and change the slug’s accordingly

    @nit3watch

    Participant

    thanks Ill check it out

    edit: Ta works great

    @nit3watch

    Participant

    @shawnyuan ** when user log into your website, user is redirected to his/her profile. ** when user tries to move to homepage, user is redirected to his/her profile. **

    Here’s the BP Profile as Homepage plug-in:

    function bp_profile_homepage()
    {
    global $bp;
    if(is_user_logged_in() && $_SERVER=='/')
    {
    wp_redirect( $bp->loggedin_user->domain );
    }
    }
    function logout_redirection()
    {
    global $bp;
    $redirect = $bp->root_domain;
    wp_logout_url( $redirect );
    }
    add_filter('get_header','bp_profile_homepage',1);
    add_action('wp_logout','logout_redirection');

    @nit3watch

    Participant

    after reading some more, is using noConflict the right approach?

    I’ll try playing around though some help could save me a few hours :P
    Let me know, thanks.

    @nit3watch

    Participant

    ta modemlooper

    @nit3watch

    Participant

    @DJPaul so then I take it you mean I should release it with a ‘buddypress check’.. if bp doesn’t exist, don’t let it activate?

    And paul, Ive got a few plug-ins I could release but not really sure what to do when on the wp “Add Your Plugin” page, there’s the url field: do I host the file with a file hosting site and just append the link ( url ) or do they want a url with bp and the plug-in running live to test it?

    Thanks and regards

    @nit3watch

    Participant

    ya I can see clearly now. Thanks for the help Travel-Junkie, much appreciated!

    Cheers

    @nit3watch

    Participant

    @travel-junkie Im having a go but am confused..

    Say I wanted this form ( http://pastebin.com/Yz0WwnK7 ) from the group website plugin to be displayed on the display tab of the map plugin, ( http://pastebin.com/60sBbQS1 )
    I don’t see how I could hook to the display function with-in the group api.

    Could you maybe provide an example with the above code to make it clearer. I know what its meant to to, but how to actually add the action for the display is whats unclear.

Viewing 25 replies - 26 through 50 (of 190 total)
Skip to toolbar