Helping you Build Your Own Social Network!

Faster, better and easier!

Please download The BP mag Updated version 1.0.3 here

(10 posts) (3 voices)
  • Started 1 year ago by Brajesh Singh
  • Latest reply from Brajesh Singh

Tags:


  1. Hi All,
    I am glad to put hopefully the final version for bp 1.2.7(Now, we will have enough time to work on child themes).

    This version adds the templates for following:-
    -BP Flickr
    -BP Wire
    -BP Youtube Feed
    -Blog Categories for groups

    also, It fixes a few glitches with the achievement/buddypress links.

    The most important change I made is in the component navigation which will make it easier to adapt further. There are some other css enhancements too.

    Please download this version here
    http://buddydev.com/http//buddydev.com/download/bp-mag-1.0.3.zip

    and the Bp mag widgets here
    http://buddydev.com/http//buddydev.com/public-download/bpmag-widgets-1.0.2.zip

    Posted 1 year ago #
  2. COOL i love Update´s Brajesh !!!

    Please, i have a special wish to you --- please look into the form post - special Plugin ....

    Posted 1 year ago #
  3. Hi Frank,
    Thanks.
    I am looking at that post and I hope to build something like that very soon. Will update that post later :)

    Posted 1 year ago #
  4. Some minor issues still with 1.0.3: (note: css changes I added to the Custom CSS box on the bp-mag options admin page)

    1 - action div in group directory is still dropping too low if the group description is too long. My choice to resolve is move the action div to just after the item avatar in /lib/bp-hooks.php mov lines 74 & 75 to 72 & 73 thus moving 73 to 75. I tried by saving this change in bp-mag-child/lib/bp-hooks.php but it would not take effect until I saved it in bp-mag/lib/bp-hooks.php.

    2 - same in member directory but the fix requires a change to /lib/ext/member-ext.php - move lines 77-82 up to line 51 and save. I tried saving in bp-mag-child but it did not take effect until I saved in bp-mag.

    3 - group details not staying up by the avatar - introduced with this version on line 1073 of default.css. How can this be over-ridden? Delete line 1073 from /_inc/default.css? This will be overwritten by an update. Also need a space between the long description and the action div so add .action { margin: 0px 5px 5px 5px;}

    4 - bp-admin bar not staying at top of page when scrolling down the page - added #wp-admin-bar{position:fixed;}

    5 - item-nav's object-nav and member-options-subnav wrap if they are too long and the background does not grow to compensate - I don't know how to fix this one.

    6 - only one blog on my website so would like the Blogs menu gone on main nav and on member nav. Don't know how to do this easily.

    7 - gallery directory action items positioned unpleasantly - move the action div to just under the item-avatar like in 1 & 2 above - fixed in gallery-loop.php by moving lines 34-39 to 24 and saving in child theme's gallery folder.

    Posted 1 year ago #
  5. Hi Roy,
    Please add any changes to your child theme's functions.php. Any file which is in lib/ is not loaded from child theme unless you make it so in your child themes functions.php. That's why that did not take effect.

    I understand the problem with action div. we could fix it easily for Fixed width layout by spacifying the width of item div but since we do have options for fluid layout, I have left tha as a small degradation.

    3. looking into it.
    4. I had mentioned a fix for that. I have not put a fix as IE6 does not understands the position:fixed and will cause issue. So I have left it stuck at the top. You can use position:fixed in child theme.

    5.set height:auto on object nav/item-nav

    6.That is a trouble with wordpress. The nav comes from wordpress, so the nav on one blog will be different from the other and you will have to specify it for each of the blog. It is a wordpress feature and we may not do anything about that. I too had the same issue on the demo sites.

    7.Thanks. I will update that in another release(since 1.0.4 is already out with fixes to post/bp-youtube-feed)

    Posted 1 year ago #
  6. Here are a couple more niceties:

    Member list for an event: released 1.0.3 - modified /events/single/members.php, save in child theme same folder:
    1 - replace lines 22-41 with this:

    <li>
      <div class="item-avatar member-list-avatar member-avatar">
        <a href="<?php bp_event_member_domain() ?>">
          <?php bp_event_member_avatar_thumb() ?>
        </a>
      </div>
      <?php if ( function_exists( 'friends_install' ) ) : ?>
        <div class="action">
          <?php bp_add_friend_button( bp_get_event_member_id(), bp_get_event_member_is_friend() ) ?>
          <?php do_action( 'bp_event_members_list_item_action' ) ?>
        </div>
      <?php endif; ?>
      <div class="item">
        <div class="item-title">
          <h5><?php bp_event_member_link() ?></h5>
          <span class="activity"><?php bp_event_member_joined_since() ?></span>
        </div>
      </div>
      <?php do_action( 'bp_event_members_list_item' ) ?>
      <div class="clear"></div>
    </li>
    Posted 1 year ago #
  7. @Brajesh - you are most welcome followup on above - as noted, I made the css changes by adding the css to the custom css text box on the bp-mag admin options page (last box on bottom of form)

    2 - I will try moving to functions.php with v1.0.4 and see what happens.

    As always, I start with a fresh version by
    a - saving the current ver and any child themes,
    b - delete existing ver and any child themes,
    c - then extract the new version to themes folder
    d - then one file at a time go through and make necessary changes as noted above.

    I will update this thread with any differences I encounter.

    Posted 1 year ago #
  8. BTW, blog-categories is working great, however, I am going to have to change the post format to match my child themes post layout as noted in other posts.

    And, when will OneQuick Post Modified be updated to latest version of OQP?

    Posted 1 year ago #
  9. @Brajesh - great work on this theme! I am still experiencing some issues, however. See the following:
    for screen shots of before and after application of the following "fixes":

    1 & 3 - still an issue, applied again, however line numbers are different and I applied by placing this in functions.php:

    remove_action("bpmag_group_entry","bpmag_group_dir_item_action");
    remove_action("bpmag_group_entry","bpmag_group_dir_item");
    add_action("bpmag_group_entry","bpmag_group_dir_item_action");
    add_action("bpmag_group_entry","bpmag_group_dir_item");

    And by deleting line 1075 (now) from _inc/css/default.css.
    And by adding .action { margin: 0px 5px 10px 10px;} to style.css or my.css or Custom CSS in bp-mag options

    2 - still an issue, I moved function bpmag_members_list_entry() to the top of functions.php by
    a. copying the function,
    b. renamed the function to child theme name,
    c. modifying according to above #2 and then
    d. adding the following in the child_prefix_actions function:

    //member loop - apply child-3 format
    remove_action("bpmag_members_entry","bpmag_members_list_entry");
    add_action("bpmag_members_entry","bpmag_child_3_members_list_entry");

    4 - applied same fix - see above gallery for screenshots

    5 - applied height:auto; and float: left; in my.css or Custom CSS in bp-mag options

    7 - applied same fix

    I have made several other tweaks and you can review all the before and after screen shots here: http://the604adventure.org/groups/website-issues/gallery/screen-shots-of-problems

    Posted 1 year ago #
  10. Hi Roy,
    will be getting back to both the topics today. sort of missed it earlier.

    Posted 1 year ago #

Reply

You must log in to post.