Skip to:
Content
Pages
Categories
Search
Top
Bottom

Search Results for 'buddypress'

Viewing 25 results - 30,526 through 30,550 (of 68,918 total)
  • Author
    Search Results
  • #134778

    In reply to: SPAM ON ACTIVITY PAGE!

    Tina
    Participant

    @neononcon it does make me wonder, now that you mention it….although i suppose its because they have more people keeping an eye open for spammers? i simply don’t have the time to keep up with all the spammers. sigh. i don’t have anywhere near this size of a problem with this on my other sites, all wordpress…but then, they are not set up to be a community like this one buddypress site is. its never really taken off anyway so i’m seriously thinking its time to ditch buddypress…but then, i’ve put a lot of work into the theme and setting it all up so its very frustrating!!

    #134772
    @mercime
    Participant

    Try to isolate what’s conflicting with group creation. Deactivate all plugins except BuddyPress and change to bp-default theme, then create a group. If that works, move forward by activating your custom theme, create a group, and so forth.

    #134771
    @mercime
    Participant
    #134770
    @mercime
    Participant

    @djwinner didn’t get your notification. You can still enable your Activity Stream by removing lines 57 – 69 (the codes for favorite/remove-favorite) per http://pastebin.com/xkSrPSUd

    #134767
    @mercime
    Participant

    @hedak – copy header.php and sidebar.php of mystique theme and Save As > … respective directions posted above.

    @mercime
    Participant
    #134762
    Tammie Lister
    Moderator

    I’m having a little difficulty working out what you are trying to do sorry. BuddyPress uses template files and it also allows you to add content. So are you saying you are looking for something in the template files?

    If you want to find what html bits do what my recommendation would be Firebug or something similar http://getfirebug.com/.

    I may be wrong about what you want to do so sorry if am but maybe that has helped a little?

    #134758
    Hugo Ashmore
    Participant

    @wendy-cockcroft wendy I just looked at your layout and stylesheet and I simply added ‘background-repeat: no-repeat; to the #header ruleset that is all you really need to do, not really sure what you tried previously that didn’t work but try that – I would avoid copying over any functions code as I think it’s just going to be problematical.

    But I would add the two definitions I showed you earlier to your functions file so your image dimensions are not overwritten with BP upgrades.

    P.S The code rendered as text as it looks like most if isn’t contained in php tags when it was copied and pasted over to your functions file – but remove all that for the moment – if your image is correct dimension and you are keeping the layout at present width just add the background property above and you should kill the repeat.

    valuser
    Participant

    @mercime many thanks for info

    will take a look.

    There was a plugin called Google Maps Made Simple or wpgmappity from http://www.wordpresspluginfu.com/wpgmappity/
    that allowed front-end posting (and configuration) of google maps.

    It still works. There is an example of what it can do in the p2 theme (front-end posting) at http://www.rubyrvews.com/.

    I’ll leave a test user account open for a week ( user: tester password: tester1 ) in case any potential developer might have a look, see it working, maybe insert a map and, perhaps explore if it can be ported to buddypress.

    All i know is – it works on p2 front end and is reasonably intuitive to use.

    though the login asks for email it accepts tester !

    #134755

    Sorry, Hugo, I need to know *exactly* what this is supposed to look like. Putting this in

    `<?php
    if ( !function_exists( ‘bp_dtheme_enqueue_styles’ ) ) :
    function bp_dtheme_enqueue_styles() {}
    endif;
    ?>

    function bp_dtheme_setup() {
    global $bp;

    // Load the AJAX functions for the theme
    require( TEMPLATEPATH . ‘/_inc/ajax.php’ );

    // This theme styles the visual editor with editor-style.css to match the theme style.
    add_editor_style();

    // This theme uses post thumbnails
    add_theme_support( ‘post-thumbnails’ );

    // Add default posts and comments RSS feed links to head
    add_theme_support( ‘automatic-feed-links’ );

    // Add responsive layout support to bp-default without forcing child
    // themes to inherit it if they don’t want to
    add_theme_support( ‘bp-default-responsive’ );

    // This theme uses wp_nav_menu() in one location.
    register_nav_menus( array(
    ‘primary’ => __( ‘Primary Navigation’, ‘buddypress’ ),
    ) );

    // This theme allows users to set a custom background
    add_custom_background( ‘bp_dtheme_custom_background_style’ );

    // Add custom header support if allowed
    if ( !defined( ‘BP_DTHEME_DISABLE_CUSTOM_HEADER’ ) ) {
    define( ‘HEADER_TEXTCOLOR’, ‘FFFFFF’ );

    // The height and width of your custom header. You can hook into the theme’s own filters to change these values.
    // Add a filter to bp_dtheme_header_image_width and bp_dtheme_header_image_height to change these values.
    define( ‘HEADER_IMAGE_WIDTH’, apply_filters( ‘bp_dtheme_header_image_width’, 401 ) );
    define( ‘HEADER_IMAGE_HEIGHT’, apply_filters( ‘bp_dtheme_header_image_height’, 80 ) );

    // We’ll be using post thumbnails for custom header images on posts and pages. We want them to be 1250 pixels wide by 133 pixels tall.
    // Larger images will be auto-cropped to fit, smaller ones will be ignored.
    set_post_thumbnail_size( HEADER_IMAGE_WIDTH, HEADER_IMAGE_HEIGHT, true );

    // Add a way for the custom header to be styled in the admin panel that controls custom headers.
    add_custom_image_header( ‘bp_dtheme_header_style’, ‘bp_dtheme_admin_header_style’ );
    }`

    makes it worse, not better, because the code shows up above the header.

    Here’s the CSS:

    http://snazzymob.com/wp-content/themes/Snazzy/style.css

    I don’t care how stupid I look to you as long as the end result is that I’m given the correct information. That means providing me with the actual code in the actual way it’s supposed to be entered in the functions.php file.

    This is what is there now:

    `<?php
    if ( !function_exists( ‘bp_dtheme_enqueue_styles’ ) ) :
    function bp_dtheme_enqueue_styles() {}
    endif;
    ?>`

    There’s got to be a way to stop the header image repeating.

    #134752
    hedak
    Member

    @mercime
    Is it header.php in templates directory?

    #134750
    @mercime
    Participant

    B. COPY your theme’s sidebar.php and Save As > sidebar-buddypress.php

    Open up sidebar-buddypress.php

    Add the following code at the TOP, above original sidebar code:
    ``

    Add the following code at the BOTTOM, below all other code:
    ``

    Save file.

    C. Upload header-buddypress.php and sidebar-buddypress.php to your theme folder in server wp-content/themes/mystique/ in the same directory where your regular header.php and sidebar.php files are

    D. Final note: Copy the style modifications for some BP elements https://codex.buddypress.org/theme-development/theme-dev-bp-template-pack-walkthrough-twenty-ten-bp-1-5/3/ and paste those at the bottom of your theme’s stylesheet, then adjust to taste.

    #134749
    @mercime
    Participant

    @hedak You will only need to create two new files, header-buddypress.php and sidebar-buddypress.php

    If you’ve revised any of the BP template files transferred to your mystique theme folder in server during the BP Compatibility process, please delete the 6 BP folders transferred to your mystique theme folder in server – /activity, /blogs, /forums, /members, /groups, /register – then re-run Appearance > BP Compatibility again to make sure that you have clean template files.

    A. COPY your theme’s header.php and Save As > header-buddypress.php

    Open up header-buddypress.php and at the BOTTOM of the file, below other code contained within, add this:

    <div id="mask-3" class="clear-block">
    <div id="mask-2">
    <div id="mask-1">
    <div id="primary-content">
    <div id=&quot;post-" >
    <div class="clear-block">

    Save file.

    whyme26
    Member

    I have the same problem. All the main pages (groups, activity, forums, etc..) work fine, It’s just the “Buddybar” links under “My Account” like Profile, and such. This is a fresh install of WordPress and Buddypress with no plugins and using the default buddypress theme.

    As far as I know rewite_modules are turned on – if they weren’t wouldn’t pretty permalinks not work at all? Although I’m still thinking it’s something with my host as buddypress works fine running on localhost with xampp..

    Any idea what could be going on?

    Could this maybe be buggering it up….? this WP/BP install is on my domain’s root, but I do have some subdomains running other wordpress installs (no buddypress).

    Thanks for any advice.

    #134747

    In reply to: adding menu tabs

    shanebp
    Moderator

    top_level nav
    https://codex.buddypress.org/developer-docs/functions/core/bp_core_new_nav_item/

    subnav example, add to your plugins/bp-custom.php
    https://codex.buddypress.org/extending-buddypress/bp-custom-php/

    
    
    //generate the 'Bongo' subnav tab to Messages
    add_action( 'bp_setup_nav', 'add_subnav_tab', 100 );
    function add_subnav_tab() {
    global $bp;
    bp_core_new_subnav_item( array(
    'name'            => __( 'Bongo', 'buddypress' ),
    'slug'            => 'bongo',
    'parent_url'      => $bp->loggedin_user->domain . $bp->messages->slug . '/',
    'parent_slug'     => $bp->messages->slug,
    'screen_function' => 'messages_screen_bongo',
    'position'        => 40,
    'user_has_access' => bp_is_my_profile()
    ) );
    }
    
    dannyjimmy
    Member

    That sounds like a potentially viable fix, actually;

    Namely, if you created a required extra field that groups had to fill out, and then made it the update box conditional based upon that.

    Of course, that wouldn’t block people posting there from their own “What’s New” box on root.com/activity… but I doubt most people would do that anyway.

    @Hugo, you seem like a pretty active and experienced voice in this community, whereas I’m fairly noobish (I don’t speak PHP)… any chance we could work together on moving this forward, either with something as simple as a trac improvement request or even maybe putting a patch together? I’m decent at design but not code.

    @ Everyone else… are others experiencing this / agreeing? This is the biggest issue that has hit me in the face on my first serious BP project…

    #134745
    @mercime
    Participant

    == Whenever any member are putting some posts on my blog, its not updating in my posts database. ==
    BuddyPress doesn’t cause that kind of behavior. It might be caused by old WP/BP plugin.
    To check: Go to basic WP installation, i.e., Deactivate all plugins then change to Twenty Eleven theme and check if issue is resolved. If so, activate BuddyPress only and Frisco theme and start posting. Do not activate plugins which are not explicitly updated to current WP/BP versions.

    dannyjimmy
    Member

    @mercime,

    Sorry I wasn’t more clear.

    I’ve already got that disabled. But that doesn’t stop somebody from posting in “What’s New In This Group?” when they see in the stream a question that I asked within a forum . All it does is remove the “reply” button from the stream notice.

    The overall issue here (of which the above is just an example) is of the confusion created where there’s two places in a group (forum, stream) to create conversations.

    So in simplest terms, I need a way to prevent or discourage stream-posting in groups where I want a forum enabled.

    @mercime
    Participant

    @dannyjimmy go to dashboard menu BuddyPress > Settings and click on Yes for “Disable activity stream commenting on blog and forum posts?”

    #134739

    In reply to: site registration

    Hugo Ashmore
    Participant

    @idowu My apologies that was a little misleading as I could have sworn there was a button on the members account screen for ‘Sites’ what I was thinking of is the buddybar where you have a set of links, under ‘blogs’ there is a ‘create’ link in addition to the large button on the main BP blogs dir page. I would spend a little while having a good rummage around all the links and screens in BP so you’re familiar with what is where.

    #134737
    @mercime
    Participant

    @pearl91 I assume latest BP./WP versions. Linux or Windows hosting? Have you changed your Settings > Permalinks from default to other listed?

    #134735
    @mercime
    Participant

    You need to add the `div.padder` style I posted above if you want your BP pages to look like the rest of the site. You haven’t added the styles from Twenty Ten which brings in the widths of `div.item-list-tabs` and `div#subnav.item-list-tabs`

    Use Firefox and install Firebug add-on and you’ll be able to ID the areas you need to change.

    #134734

    In reply to: site registration

    @mercime
    Participant

    @idowu go to Blogs Directory page, beside the title “Blogs Directory” is a “Create a Blog” button. Click on it.

    @jageshmk change to bp-default theme. If it doesn’t work, then start a new topic of your own. Add info about WP/BP version, Linux or Windows hosting. Theme/plugins used, etc.

    @mercime
    Participant

    You’re welcome. Marking this as resolved.

    #134732
    @mercime
    Participant

    Did you read https://codex.buddypress.org/getting-started/installing-group-and-sitewide-forums/
    If you did, at what point did sitewide forum installation fail?

Viewing 25 results - 30,526 through 30,550 (of 68,918 total)
Skip to toolbar