Skip to:
Content
Pages
Categories
Search
Top
Bottom

Search Results for 'buddypress'

Viewing 25 results - 30,026 through 30,050 (of 68,918 total)
  • Author
    Search Results
  • #135839
    @mercime
    Participant

    == However I can’t find how to open the forums, register, or activate pages at the top of my website to make a test account.==

    You’re getting quite off-topic here. This is not related to Easel theme in any way. Did you go through the Installation Wizard after you activated BuddyPress?

    == I’ve tried http://fifaadvocate.com/register/ but this directs me back to the home screen. ==

    That usually happens when you’re logged in and then go to register page. You need to log out first. to register. Also, you could always create a test user account via wp-admin Users > Add New

    #135838
    @mercime
    Participant

    First of all, since you’re new to BuddyPress I suggest that you use the bp-default theme during Installation Wizard or later via dashboard menu Appearance > Themes while you’re setting up and exploring the different BuddyPress components available in your installation.

    == Now I cannot go back and select the correct theme to integrate BP with my WP theme. ==

    Just go to dashboard menu Appearance > Themes and choose the theme you want to use in your installation. If you’re going to use a WP theme for the BP install, know that you need to install/activate BP Template Pack plugin as well and go through Appearance > BP Compatibility process.

    Subway1968
    Member

    That took care of the issue. I was confusing the current bbPress forum with the BP forum. Thanks for the reply.

    #135835
    ed161718
    Participant

    Here’s the site: http://fifaadvocate.com/members/ However I can’t find how to open the forums, register, or activate pages at the top of my website to make a test account. “anyone can register” is enabled under Settings>General. I’ve tried http://fifaadvocate.com/register/ but this directs me back to the home screen. Anything I can do to open these pages?

    #135831
    jerryasemota
    Member

    Thanks. I’m not good at php and editing templates and functions.php. please can you briefly put me through in a precise way to do this?

    In btw i dont know how that plugin works. seems not to be compatible with 3.4. I use buddypress 1.6.

    I want read more to show across excerpts on my groups, blogs and entire site. Please reply urgently.

    Thanks.

    #135829

    In reply to: sign up error page

    chennareddya
    Member

    i have been working in localhost URL is like: http://abcdev.arn/dcomm (i installed wordpress under this folder, and i installed BP, BB press plugins only. Theme is buddypress default theme).

    I created 1 menu, 4 cusom categories (for my specific purpose). After installing BP, i got a message like—->: “BuddyPress is almost ready. You must update your permalink structure to something other than the default for it to work.”

    If i change the permalink to other structure, my custom categories are redirects to error page. But the BuddyPress links are redirecting to error pages in either case!!

    On top of the home page i can see “login”, “sign up” links. login is working fine but sign up is giving error like —> “The requested URL /dcomm/register/ was not found on this server.”

    Please ask me for any other details you require..

    Thanks,
    Chenna

    #135827
    Tammie Lister
    Moderator

    Just to add, the default BuddyPress theme itself is responsive now. So, you can get responsive out of the box.

    Many of those other themes do a bit more ‘responsive’ the default is a bit minimal about what it does but it was a conversion to responsive not done ground up.

    #135826
    Tammie Lister
    Moderator

    Just to add what I’ve experienced today here, I can search just can’t use the pagination. It simply goes to the 1 page each time.

    #135825
    Tammie Lister
    Moderator

    Whilst it’s not just by style.css, the theme currently being developed as a community project for the next version of BuddyPress has a background and colour function that you may be able to use as a template to do something like you want. It’s open source so feel free to download from github and take whatever you want into your theme.

    https://github.com/karmatosed/Status

    A word of caution though that theme is in beta currently.

    #135824
    Tammie Lister
    Moderator

    Sorry just to clarify you mean they can’t comment on blog posts or status updates? If that is the case what theme are you using and do you indeed see a comment button? Is it the submitting of the form that doesn’t work or do you not even see a button to comment?

    If you are looking at using Disqus this thread is a good starting point: https://buddypress.org/community/groups/creating-extending/forum/topic/buddypress-disqus-integration/

    #135823

    In reply to: sign up error page

    Tammie Lister
    Moderator

    Oh that’s no fun going straight to an error page. Could you let me know if you set the pages up linking to each other when you installed BuddyPress? If so can you do a ‘sanity check’ and take off all other plugins and clear your cache then try again. Something else may be interfering.

    Should none of that work if you can either provide a link or respond back with a few more details like what theme you are using that would be great.

    andrea.ressell
    Participant

    Thanks so much for your help. The extra classes are gone now, but the menu is still showing up as a bullet list.

    @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/wp-clearvideo/

    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

    Based on the HTML structure of your theme, you need to use the first option, i.e., change 16 template files within the 6 BP folders transferred to your wp-clearvideo 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:
    `
    <?php
    global $wp_query;
    $postid = $wp_query->post->ID;
    if ( get_post_meta( $postid, ‘post_featpages’, true ) == “Yes” ) { ?>

    <?php if ( function_exists('yoast_breadcrumb') ) { yoast_breadcrumb('

    ‘); } ?>

    <div class="post clearfix" id="post-main-“>

    `

    Then, in each of 16 files, you’d like to change the BP Templates’ page title’s header tag from `

    ` or `

    ..

    ` to `

    // Titles Of Respective BP Page Templates //

    `, just watch out when you do this in the /activity/index.php page.

    Save files.

    #135815
    Paul Wong-Gibbs
    Keymaster

    Can you confirm you’ve checked what the last poster said? In wp-admin, go to the BuddyPress > Settings screen, and check that the “Hide admin bar for logged out users” option is disabled.

    #135814
    Paul Wong-Gibbs
    Keymaster

    WordPress comes with a up to date version of jQuery. BuddyPress works with it. Maybe track down where your site is loading an old version of jQuery, and kill it.

    #135812
    Paul Wong-Gibbs
    Keymaster

    Do you have a test/development site? Are you able to deactivate all plugins other than BuddyPress, switch to the twentyeleven theme, and see if it still occurs?

    #135811
    Paul Wong-Gibbs
    Keymaster

    BuddyPress doesn’t use that parameter for any sort of ordering. It’s just an array of IDs to be included in the query. The ‘type’ parameter controls this; see bp_core_get_users().

    I think you would have to re-order the results of the query after it is made.

    @mercime
    Participant

    @andrearessell … then you also add this to your theme’s functions.php file:

    // Remove classes in custom menu list
    add_filter('nav_menu_css_class', 'mme_css_attributes_filter', 100, 1);
    add_filter('page_css_class', 'mme_css_attributes_filter', 100, 1);
    function mme_css_attributes_filter($var) {
    return is_array($var) ? array_intersect($var, array('current-menu-item')) : '';
    }
    
    // Remove empty classes in custom menu list
    function mme_remove_empty_classes($menu) {
    $menu = preg_replace('/ class=""| class="sub-menu"/','',$menu);
    return $menu;
    }
    add_filter ('wp_nav_menu','mme_remove_empty_classes');
    goviral
    Member

    @mercime – I am very sorry about the duplicate post. I tried to delete the other post (don’t know what I did wrong) when I wanted to create this one with more info. I am still unable to delete it but have edited it.
    The forum search function is also not working for me.
    The last thing I want to do is waste anyone’s time. I can’t tell you how much I appreciate any help, goviral

    @mercime
    Participant

    @subway1968 If you do not need Group Forums, you can go to dashboard menu BuddyPress > Components and deactivate (uncheck) “Discussion Forums”

    @mercime
    Participant

    @floridabeautiesinhd Open up your clearvideo theme’s header.php file; copy all code; paste to pastebin.com; click submit; and post the generated URI here. Do the same for your theme’s index.php, page.php, sidebar.php and footer.php files.

    @mercime
    Participant

    I suppose this is related to your post https://buddypress.org/community/groups/how-to-and-troubleshooting/forum/topic/remove-subscribers-from-activity-feed/ ? If so, you are wasting the time of volunteers who respond to that post which did not indicate that you had a User Account Type plugin activated.

    #135798
    @mercime
    Participant

    Got to see what’s going on. Site url? Test username and password?

    @mercime
    Participant

    @ed161718 I will address your question at the link you posted above so we have one forum topic about easel woes.

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