Skip to:
Content
Pages
Categories
Search
Top
Bottom

Search Results for 'theme'

Viewing 25 results - 14,426 through 14,450 (of 31,072 total)
  • Author
    Search Results
  • #136231
    valuser
    Participant

    Developers deserve huge credit.

    Testing on a local install.

    Child theme of bp-default.

    bp multi network.

    Forums for Groups.

    70+ plugins simultaneously (list at http://pastebin.com/0FmZgbrk). Mainly buddypress plugins – some old.

    All well so far

    Obviously there are hundreds/thousands of other plugins – just didn’t get round to them –yet.

    a) With bp-upm (a major plugin imho) -perfect in single install, in multi-install settings do not appear in dashboard but access can be got through http://mydomain.dev/wp-admin/network/admin.php?page=bp-upm-settings. Could just be on this installation.

    b) Also haven’t really tested bp-mass-messaging or mass messaging for buddypress (2 plugins) though they both turn up and appear to be ok.

    You guys and the volunteers here have normalized the expectation that anybody of average intelligence with access to a computer can create a sophisticted scalable social network in a few hours.

    How cool is that!

    Thank you.

    #136229
    @mercime
    Participant

    == i want to integrate buddypress with templatic theme ==

    You need to install BP Template Pack plugin and go through Appearance > BP Compatibility process.

    == But is it possible to add buddypress network as a wordpress page??i ==

    BuddyPress is not a single Page proposition, The plugin contains components (like you see on home page https://buddypress.org/) rendered as Pages in a site. Check out http://testbp.org/

    edinchez
    Participant

    I doubt it’s the second one because I just changed the theme, and that used to happen with the old theme as well. I recently changed the SEO plugin to the Yoast one, but I was using the All in one SEO plugin earlier, so I doubt it’s that one too. The only thing not changed is the captcha plugin, which I’m going to try disabling it now.

    @mercime
    Participant

    As I mentioned in instructions

    Download the 6 clean BP folders to your computer hard drive.

    … which includes all the 16 template files and more. Make revisions, Then upload the 6 BP folders with the revised files into your server wp-content/themes/chameleon.

    Yeah, I know I’m missing something because check out this page:

    http://www.citrustwistkits.com/members/ctadmin/

    So I’m missing it somewhere. Which ones? They’re not matching up… Hmmm…..

    Wow! Thank you very much! As far as I can tell that worked!

    One question/concern. I did not change the following because, well, I couldn’t find them:

    /groups/single/home.php
    /groups/single/plugins.php
    /members/single/home.php
    /members/single/plugins.php
    /members/single/settings/delete-account.php
    /members/single/settings/general.php
    /members/single/settings/notifications.php

    Here’s what is visible:

    Templates

    activity-loop.php
    comment.php
    entry.php
    Main Index Template
    (activity/index.php)
    post-form.php
    blogs-loop.php
    create.php
    Main Index Template
    (blogs/index.php)
    Comments
    (comments.php)
    core_functions.php
    custom_functions.php
    import_settings.php
    options_chameleon.php
    post_thumbnails_chameleon.php
    Footer
    (footer.php)
    forums-loop.php
    Main Index Template
    (forums/index.php)
    Theme Functions
    (functions.php)
    create.php
    groups-loop.php
    Main Index Template
    (groups/index.php)
    Header
    (header.php)
    home.php
    breadcrumbs.php
    entry.php
    featured.php
    navigation.php
    no-results.php
    postinfo.php
    scripts.php
    top_info.php
    widgets.php
    Main Index Template
    (index.php)
    Main Index Template
    (members/index.php)
    members-loop.php
    Blog Page Page Template
    (page-blog.php)
    Contact Page Page Template
    (page-contact.php)
    Full Width Page Page Template
    (page-full.php)
    Gallery Page Page Template
    (page-gallery.php)
    Login Page Page Template
    (page-login.php)
    Search Page Page Template
    (page-search.php)
    Sitemap Page Page Template
    (page-sitemap.php)
    Portfolio Page Page Template
    (page-template-portfolio.php)
    Page Template
    (page.php)
    activate.php
    register.php
    Search Form
    (searchform.php)
    Sidebar
    (sidebar.php)
    Single Post
    (single.php)

    Styles

    Stylesheet
    (style.css)

    Am I just missing them?

    #136220
    artxx
    Member

    @mercime
    this is what i want to achieve http://www.webspeaks.in/2011/06/live-background-change-using-jquery.html i know it might seem difficult but i really want to integrate this to each user basically i will provide my own custom designs if some of my members want to use this as there custom background or they will also have the option to upload there own image that’s what i really want to achieve i really hope someone can help me out and guide me through the right direction

    @mercime
    Participant

    This has been brought up in the forums before. I recall some causes to pre-filled profile fields in registration page:
    – plugin conflict with an SEO plugin and a captcha plugin – can’t recall specifically which ones but deactivating all plugins except BuddyPress, then activating plugins by batches of three helped them identify the culprit/s.
    – theme conflict where theme added options for SEO and the like

    #136208
    Mathieu Viet
    Moderator

    Hello,

    I don’t use the plugins you’re mentioning but in your situation, i think i’ll try to add this code in the functions.php file of my active theme :

    function luke_get_the_topic_post_poster_id() {
    global $topic_template;
    
    return $topic_template->post->poster_id;
    }

    And then i would replace in your topic.php
    post->poster_id); ?>
    by

    and
    post->poster_id); ?>
    by

    I’ve tested to just echo the luke_get_the_topic_post_poster_id() in my topic.php and it seems to work. I think the trouble in your code is that you don’t reference global $topic_template.

    #136207
    @mercime
    Participant

    == This problem started after I installed pie-register, ==
    Pie register is not compatible with BuddyPress.

    == before installing that plugin, users were redirected to homepage ==
    Were you using a custom theme or a members-only or privacy plugin during that time?

    == but after I finish with deactivating procedure, where will I be able to check registration process? ==
    Log out first. Then click on the link “Create an account” on the right sidebar of the default theme using a different email address.

    Mathieu Viet
    Moderator

    Hi @creaturis,

    I think the best solution is to avoid recording an activity if the post has one of the category you want to exclude from activity stream, in the functions.php file of your active theme, you can try this code :

    function do_not_record_this_category( $post_id, $post ){
    
    /* this is the array that contains the category to exclude */
    $ids_to_exclude = array( 4 );
    
    if ( 'publish' != $post->post_status )
    return false;
    
    $categories = get_the_category( $post_id );
    $in = false;
    
    if( count($categories) > 0 ) {
    
    foreach ( $categories as $category ) {
    
    if( in_array( $category->cat_ID, $ids_to_exclude) )
    $in = true;
    
    }
    
    /* if the post has at least one excluded category, then we remove the BuddyPress hook that records an activity */
    if( $in )
    remove_action( 'save_post', 'bp_blogs_record_post', 10, 2 );
    
    }
    
    }
    
    add_action( 'save_post', 'do_not_record_this_category', 9, 2 );

    In 1.6 you can set the visibility of profile fields to logged in users, friends or anyone. I haven’t seen the behavior you’re describing.

    #136205
    saukgp
    Participant

    @mercime This problem started after I installed pie-register, now I have deactivated pie-register, but the problem persist, before installing that plugin, users were redirected to homepage, and after I installed pie register, users were redirected to /wp-login and even now When I deactivated the plugin, users are redirected wp-login and homepage. As u said, I am deactivating all plugin except buddypress, and my theme is already bp-default, but after I finish with deactivating procedure, where will I be able to check registration process? I am new to wordpress/buddypress, please suggest.

    #136202
    @mercime
    Participant

    Viewing source of your login form, you have third-party plugin which controls the registration in your site and is in all probability causing the conflict. In addition, you have some plugins which have not been updated for BP 1.5.

    Deactivate all plugins except BuddyPress and change to bp-default theme. Then check if registration process is corrected.

    @mercime
    Participant

    B. At the bottom of the same 16 files, replace:
    `

    `

    with the following (except for registration/register.php):
    `

    `

    with the following for registration/register.php:
    `

    jQuery(document).ready( function() {
    if ( jQuery(‘div#blog-details’).length && !jQuery(‘div#blog-details’).hasClass(‘show’) )
    jQuery(‘div#blog-details’).toggle();
    jQuery( ‘input#signup_with_blog’ ).click( function() {
    jQuery(‘div#blog-details’).fadeOut().toggle();
    });
    });

    `

    Save files.

    C. Upload the 6 BP folders containing the 16 files you’ve just revised to your server wp-content/themes/chameleon/

    D. Copy the style modifications made in BP Twenty Ten at https://codex.buddypress.org/theme-development/theme-dev-bp-template-pack-walkthrough-twenty-ten-bp-1-5/3/ and paste to your theme’s stylesheet. Adjust to taste.

    @mercime
    Participant

    @socialrocketship As mentioned above, based on the HTML structure of your theme, you need to change 16 template files within the 6 BP folders transferred to your chameleon theme folder in server during the compatibility process.

    If you’ve previously changed any of the BP template files in your theme folder in server, replace all of them for a clean slate by deleting the 6 BP folders – /activity, /blogs, /forums, /groups, /members, and /registration – then re-run Appearance > BP Compatibility.

    Download the 6 clean BP folders to your computer hard drive.

    A. At the top of each of those 16 template files I linked to above, replace
    `

    `

    with the following:
    `

    `

    Save files.

    #136187
    @mercime
    Participant

    @artxx you can modify @sbrajesh plugin http://buddydev.com/plugins/bp-custom-background-for-user-profile/ to choose from among different preset designs you upload and allow users to upload their own backgrounds

    @mercime
    Participant

    What Roger and Hugo said. To see the code in context, see how it’s done in bp-default theme’s single.php file –> https://buddypress.trac.wordpress.org/browser/tags/1.5.6/bp-themes/bp-default/single.php#L14

    #136176

    In reply to: BuddyPress and Bones

    lunchgirl
    Participant

    I think I am going to fork this on GitHub and if anyone wants to help, we can make the theme available WTFPL. I’d also like to fork a wp bootstrap/buddy press theme.

    #136156

    In reply to: Completely Blank Theme

    tvbox
    Member

    this is my functions.php
    `<?php
    if ( !function_exists( ‘bp_dtheme_enqueue_styles’ ) ) :
    function bp_dtheme_enqueue_styles() {

    // You should bump this version when changes are made to bust cache
    $version = ‘20111109’;

    // Register stylesheet of bp-dusk child theme
    wp_register_style( ‘tlgtheme’, get_stylesheet_directory_uri() . ‘/style.css’, array(), $version );

    // Enqueue stylesheet of bp-dusk chid theme
    wp_enqueue_style( ‘tlgtheme’ );
    }
    add_action( ‘wp_enqueue_scripts’, ‘bp_dtheme_enqueue_styles’ );
    endif; ?>
    `

    #136146
    @mercime
    Participant

    == Only superadmin gets a page not found problem.. ==

    OK, that’s new. WP/BP versions?
    Have you gone through basic troubleshooting by changing to bp-default theme and deactivate all plugins except BuddyPress.

    #136129
    artxx
    Member

    @karmatosed
    Thanks I have looked into it, it has a pretty good feature I have run
    A few modifications myself, but nothing major like what I want to achieve.

    #136126
    Tammie Lister
    Moderator

    Whilst not 100% what you are asking the current community developed theme for the next version of BuddyPress has a custom background and colour option. As it’s a community project you can download from Github and see how maybe that could translate to your project.

    https://github.com/karmatosed/Status

    #136122
    Hugo Ashmore
    Participant

    Your theme is possibly trying to make fluid images that resize in a responsive manner if those rules happen to target the crop screen then it will muck it up.

    @mercime
    Participant

    == yes we are using default theme, and yes we are aware of the other minor issues which we can sort out quickly. ==

    It’s all connected. If all BP pages were set properly, then the default URL of your Register page should be http://socialtimes.angloway.com/register/

    Instead, when I hover over the “create an account’ link, I see http://socialtimes.angloway.com/register.php which is incorrect, and when you click on that link it goes to `http://socialtimes.angloway.com/?bp_pc_redir_to=%2Fregister`

    i25sa
    Member

    yes we are using default theme, and yes we are aware of the other minor issues which we can sort out quickly. We haven’t continued with the building of it until we can sort out the registration issue. yes we aslo went through the installation wizard as well – the rest of the issues we understand but we have to sort out the main problem which is how people register.

    Do you have an alternate suggestions for people to register ?

    Thanks :)

Viewing 25 results - 14,426 through 14,450 (of 31,072 total)
Skip to toolbar