Skip to:
Content
Pages
Categories
Search
Top
Bottom

Search Results for 'theme'

Viewing 25 results - 22,376 through 22,400 (of 32,562 total)
  • Author
    Search Results
  • #97786
    dstar1
    Member

    @burtadsit i have same problem ….. i am using latest theme pack plugin for buddypress so that would be controlling the date output on the profiles …. everyones birthday is 1 day back ….. please help

    jmbalsa
    Member

    I am so sorry, but i did not undestood anything, what do I have to do?? I’ve just installed my theme, and the plugin, but I can register new users, it always comes back to the Register page, Please tell me what do I have to change in my theme!!

    Cheers!

    #97761
    Stacy (non coder)
    Participant

    I’m using Manually approve plugin for this. It’s not in the wordpress gallery but works on MU. My only problem is that I get thise error with bp themes:” Fatal error: Call to undefined function bp_page_title() in /home/thebaman/public_html/wp-content/themes/custom-community/header.php on line 11″ Any suggestions? Here’s the plugin link : http://mattkern.com/wpmu-manually-approve-new-members-on-local-install/

    r-a-y
    Keymaster

    @auphoria – Review how to create a functions.php file in your theme’s folder:
    https://codex.buddypress.org/buddypress-site-administration/functions-php/

    Then add the code snippet in between the PHP tags.

    Nahum
    Participant

    @defunctlife OH snap! you’re right. I’ll update that, thanks!

    Justin Frydman
    Participant

    @nahumamadrid I mean /members/single/activity.php ?

    Justin Frydman
    Participant

    @nahummadrid I think you have a typo on your blog: where you say “From your theme/activity/post-form.php replace the following lines:” I think you mean theme/activity/index.php right?

    Justin Frydman
    Participant

    @nahummadrid thanks a lot, I wil try to implement it today.

    Nahum
    Participant

    @defunctlife I made a blog post about how i did it if you want to check it out.

    Roger Coathup
    Participant

    Ok – have solution

    It looks like the browser was using an old cached version of global.js

    #97722
    Tammie Lister
    Moderator

    Here is some real basic styling no colouring just indenting in the traditional style of comments not the activity stream version for now figure we may as well get traditional down first?

    `ol.commentlist, ol.commentlist li {
    list-style: none;
    margin: 10px 0px;
    }

    ol.commentlist .children {
    margin-left: 20px;
    }
    `

    We could of course do borders around those but that will start with some simple indenting.

    #97721

    In reply to: Avatar Upload Issues

    mcgalat
    Member

    WP – 3.0.1
    BuddyPress – 1.2.5.2
    Buddypress theme with compatibility
    Ok.. I want to make clear the problem I have been having with my Avatar Cropping process in my BuddyPress installations.
    I can crop successfully on my dashboard, Using the “User-Avatar” plugin. But then I installed buddypress and when users attempt to build their own avatars inside the themed site, the only thing I get is a cropped preview of the top left corner of any picture I choose(both pictures display properly), but no ability to crop or even see the cropping elements.
    I have read thru the solutions, and tried to implement them. First.. I use “qian-ava”s solution. I am using WP 3.0… so I need to find my Upload paths by going to..
    SETTINGS -> MEDIA
    When there I add to the Uploading Files fields by entering “wp-content/uploads” into the” Store uploads in this folder” area and my full path of http://www.ningbotoday.com/wp-content/uploads/ into the “Full URL path to files” area. Just note… I added all the double quotations.
    After I do this I attempt to go into line 389 of my bp-core-avatars.php file and…
    ‘Replace:
    if ( !$path = get_option( ‘upload_path’ ) )
    $path = WP_CONTENT_DIR . ‘/uploads’;
    With:
    if ( !$path = get_option( ‘upload_path’ ) )
    $path = WP_CONTENT_DIR . ‘/uploads’;
    else $path = ABSPATH . $path;’
    But… I do not have the “if” statement to replace! The closest thing I have is from 384 – 390…
    ‘if ( empty( $bp->avatar_admin->resized ) )
    $bp->avatar_admin->image->dir = str_replace( BP_AVATAR_UPLOAD_PATH, ”, $bp->avatar_admin->original );
    else {
    $bp->avatar_admin->image->dir = str_replace( BP_AVATAR_UPLOAD_PATH, ”, $bp->avatar_admin->resized );
    @unlink( $bp->avatar_admin->original );

    }’
    But I don’t see anything that I can replace. So either way.. I tried to test the script and just pop it in nearest to the line 389 to no avail. I ended up getting an error and my page does not load. Back to the drawing board. I reversed the process and started again.

    I then took “Creay”s advise (https://buddypress.org/community/groups/how-to-and-troubleshooting/forum/topic/avatar-upload-issues/?topic_page=7&num=15#post-70855), because his problem directly describes mine, and decided to look into the expression of Jcrop and its possibility of not firing off. He changed core-cssjs.php inside the pb-core folder inside the buddypress plugin. He added
    ‘<script src="/wp-includes/js/jcrop/jquery.Jcrop.js”>’
    After the line ‘$aspect_ratio = (int) constant( ‘BP_AVATAR_FULL_WIDTH’ ) / (int) constant( ‘BP_AVATAR_FULL_HEIGHT’ ); ?>’

    I have a area in my bo-core-cssjs.php file that reads between line 88-91
    ‘ // Calculate Aspect Ratio
    if ( (int) constant( ‘BP_AVATAR_FULL_HEIGHT’ ) && ( (int) constant( ‘BP_AVATAR_FULL_WIDTH’ ) != (int) constant( ‘BP_AVATAR_FULL_HEIGHT’ ) ) )
    $aspect_ratio = (int) constant( ‘BP_AVATAR_FULL_WIDTH’ ) / (int) constant( ‘BP_AVATAR_FULL_HEIGHT’ );
    ?> “
    So after the ?> I added the line. Nothing. Still not getting the crop to work properly. I encourage anyone to take a try and register on the site.. I would like to nail this problem down before I launch the site or even more to far forward. The site is http://www.ningbotoday.com
    Thank you for all your help in advance.

    mcgalat
    Member

    ooh.. and to add… i used the plugin “user-avatar” and the crop from the dashboard profile works fine.. so i know it has something to do with my themes expression of the code…

    mcgalat
    Member

    Hey everyone. I am having the same problem. I have tried most everything… but i am sure it has something to do with the jcrop function being disabled by the theme i am working from. Can someone please HELP ME?!? it is driving me crazy. The site is http://www.ningbotoday.com&#8230; and so far i have enacted most of the solutions in this topic. For the most recent… my bp-core-cssjs.php file has the following line..
    // Calculate Aspect Ratio
    if ( (int) constant( ‘BP_AVATAR_FULL_HEIGHT’ ) && ( (int) constant( ‘BP_AVATAR_FULL_WIDTH’ ) != (int) constant( ‘BP_AVATAR_FULL_HEIGHT’ ) ) )
    $aspect_ratio = (int) constant( ‘BP_AVATAR_FULL_WIDTH’ ) / (int) constant( ‘BP_AVATAR_FULL_HEIGHT’ );
    ?>
    So i add the line as you say, and i get nothing. I have also changed the upload directory to the specific directory, and no love there either. I want to get thru this so i can attend to the rest of the slew of projects i have lined up for this site. Can anyone help?

    zomex
    Member

    Thanks very much for your reply!

    1) I am actually using the same child theme for all of the blogs. I’ve noticed that every blog expect from the primary domain blog has the following reference:

    This is inserted in the head section with the code below which I assume means it’s from the database

    ^ I only need to edit one line from that file but it doesn’t exist so I don’t know what to do :D It doesn’t work if I use a CSS over right either :(

    2 & 3 Thank you soooo much! You’ve moved 2 current and many future problems for me! May I ask which plugin you personally recommend?

    #97712
    Jiath
    Participant

    Hi Paul,

    Thanks for your response.
    Here are more info:
    Theme: eStore theme from Elegant Themes.
    BuddyPress: latest one downloaded from Buddypress.org.
    Wordpress: 3.0.1
    Plugins: Gravity Forms, WPMU DEV’s “Membership” Premium, BuddyPress Template Pack

    Let me know if you require more information. Thanks so much!

    Cheers
    Jiahui

    @mercime
    Participant

    1) Depends if you’re using the same theme/child theme for both/all blogs. If you are doing so, both should have same styles.
    2) https://wordpress.org/extend/plugins/wpmu-new-blog-defaults/ or https://wordpress.org/extend/plugins/yd-wpmu-sitewide-options/
    3) see New Bkig Defaults plugin above

    #97704
    modemlooper
    Moderator
    #97703
    modemlooper
    Moderator

    @djpaul here’s what I got so far. I think a couple of these styles are redundant or could be redone with less code. I didn’t mess with the original nav css, that code might be able to be integrated into the drop menu’s css.

    /* Menu


    */

    ul#nav li.selected:hover > a,
    ul#nav li.current_page_item:hover > a,
    ul#nav li.current_menu_item:hover > a {
    background: #333;
    color: #fff;
    }

    #nav ul {
    box-shadow: 0px 3px 3px rgba(0,0,0,0.2);
    -moz-box-shadow: 0px 3px 3px rgba(0,0,0,0.2);
    -webkit-box-shadow: 0px 3px 3px rgba(0,0,0,0.2);
    display: none;
    position: absolute;
    top: 30px;
    left: 0;
    float: left;
    width: 180px;
    z-index: 99999;
    }

    #nav ul li {
    min-width: 180px;
    position: relative;
    }

    #nav ul a {
    background: #333;
    padding: 10px;
    width: 160px;
    height: auto;
    }

    #nav ul li a {
    -moz-border-radius-topleft: 0px;
    -webkit-border-top-left-radius: 0px;
    -moz-border-radius-topright: 0px;
    -webkit-border-top-right-radius: 0px;
    }

    #nav ul.sub-menu li a {
    background: #333;
    color: #fff;
    }

    #nav li.current_page_item a:hover,
    #nav li.current_menu_item a:hover,
    #nav ul.sub-menu li a:hover {
    background: #222;
    }

    #nav li:hover > a,
    #nav ul ul :hover > a {
    background: #333;
    color: #fff;
    }

    #nav li:hover > ul {
    display: block;
    }

    #nav ul ul {
    position: absolute;
    top: 0;
    left: 100%;
    width: 100%;
    }

    #97690
    Paul Wong-Gibbs
    Keymaster

    @hnla I’ve put those two patches on the ticket into trunk

    #97689
    Paul Wong-Gibbs
    Keymaster

    @modemlooper great to hear :)

    #97688
    Paul Wong-Gibbs
    Keymaster

    If people want to play a role in the development of BuddyPress, the best way is to either put a patch up on trac, or attend a dev meeting and let us know you are interested. We can find you a task for your skills.

    If someone wants to make a discussion group on this site, that’s cool too. But any enhancements or ideas need to be fed back into the trac, so we can keep track of them ;)

    #97687
    @mercime
    Participant

    @hnla there was something about BP.org UX/UI in Ninjas forum topic and writeboard, but haven’t read one specific re bp-default. Is that in trac and/or discussed in BP IRC? In any case, count me in :-)

    #97683
    modemlooper
    Moderator

    well that was my next suggestion. browser fixes should be in it’s own file.

    #97682
    noizeburger
    Participant

    Remove the notice: add “buddypress” to the templatetags in style.css of your theme.

Viewing 25 results - 22,376 through 22,400 (of 32,562 total)
Skip to toolbar