Skip to:
Content
Pages
Categories
Search
Top
Bottom

Search Results for 'buddypress'

Viewing 25 results - 20,201 through 20,225 (of 68,967 total)
  • Author
    Search Results
  • #167088
    Henry
    Member
    shuklaamar1509
    Participant

    Hi……..
    Again same problem rise when I converted My site to Multisite.
    when in custom structre option I set “http://localhost/wp-sqlsrv/blog/%postname%/” and click on save It is converted as “http://localhost/wp-sqlsrv/blog/index.php/%postname%/” autometically.

    joanicegreen
    Participant

    I am seeing something similar on one of the sites I am working on, can you tell me what you looked at to find the issue, was it a plugin or something in the theme?

    mcpeanut
    Participant

    @modemlooper thankyou for all your help i have managed to completely resolve this now you can mark this thread as solved! once again thankyou very much pal and to hugo cheers for recommending for me to get a developer and insulting my intelligence, like i said earlier i knew i was in the right direction when i mentioned needing to create a header-buddypress.php i just wasnt sure, its not like modemlooper had to explain everything in great detail to me he gave me a simple few lined solution and i followed it! like i said im a quik learner :)….the way i solved it was to not create the buddypress.php file you mentioned modemlooper and editing out what i needed to in just the header-buddypress.php.
    for some reason when creating the other php my sliding login panel disappeared completely from all my buddypress pages.
    i can now finally finish my theme top to bottom and launch my website…so really…thx again modemlooper!

    mcpeanut
    Participant

    @modemlooper ok the reason my sliding login panel dissapears is when i create the buddypress php file and tell it to get buddypress header its no longer including my slider..any ideas? what would i add to get it to call my sliding panel too?

    #167071
    FRONTBURNR
    Participant

    I found this plugin that helps in this manner. It’s not compatible with my current theme but has worked on a couple others. May be worth trying http://buddydev.com/plugins/facebook-like-user-activity-stream-for-buddypress/

    mcpeanut
    Participant

    @modemlooper hmm actually not all has gone to plan on closer inspection because i have a search bar and a facebook google and twitter icon in my header so removing the header image still leaves these plus i have a custom sliding menu navigation panel at the top of my webpage instead of the buddypress default nav bar and when i remove this link…<header class=”art-header<?php echo (theme_get_option(‘theme_header_clickable’) ? ‘ clickable’ : ”); ?>”> it also removes my sliding login panel which is above my header? so not only do i ahve to remove my header image i need to remove the icons and search bar and stop it from removing my sliding login panel above my header??
    even if i just remove this line theme_header_clickable my header dissapears but so does the sliding login panel

    modemlooper
    Moderator
    if ( !bp_current_component() ) {
    
    //anything here will show on non BuddyPress pages
    
    }

    So you could wrap you nav code with that statement

    mcpeanut
    Participant

    its ok @modemlooper i figured it out 🙂 any chance you can point me in right direction on how to remove my main navigation bar too? as i could supplement it with a side nav bar in the buddypress pages thx…by the way youve been a great help so far.

    mcpeanut
    Participant

    @modemlooper which part of my header-buddypress.php do i remove pal so i do it right?

    <?php global $wp_locale;
    if (isset($wp_locale)) {
    $wp_locale->text_direction = ‘ltr’;
    } ?>
    <!DOCTYPE html>
    <html <?php language_attributes(); ?>>
    <head>
    <meta charset=”<?php bloginfo(‘charset’) ?>” />
    <title><?php wp_title(‘|’, true, ‘right’); bloginfo(‘name’); ?></title>
    <!–[if lt IE 9]><script src=”https://html5shiv.googlecode.com/svn/trunk/html5.js”></script>&lt;![endif]–>

    <link rel=”stylesheet” href=”<?php bloginfo(‘stylesheet_url’) ?>” media=”screen” />
    <link rel=”pingback” href=”<?php bloginfo(‘pingback_url’); ?>” />
    <?php
    remove_action(‘wp_head’, ‘wp_generator’);
    if (is_singular() && get_option(‘thread_comments’)) {
    wp_enqueue_script(‘comment-reply’);
    }
    wp_head();
    ?>
    </head>
    <body <?php body_class(); ?>>

    <div id=”art-main”>
    <nav class=”art-nav”>
    <?php
    echo theme_get_menu(array(
    ‘source’ => theme_get_option(‘theme_menu_source’),
    ‘depth’ => theme_get_option(‘theme_menu_depth’),
    ‘menu’ => ‘primary-menu’,
    ‘class’ => ‘art-hmenu’
    )
    );
    get_sidebar(‘nav’);
    ?>
    </nav>

    <?php if(theme_has_layout_part(“header”)) : ?>
    <header class=”art-header<?php echo (theme_get_option(‘theme_header_clickable’) ? ‘ clickable’ : ”); ?>”><?php get_sidebar(‘header’); ?></header>
    <?php endif; ?>

    <div class=”art-sheet clearfix”>
    <div class=”art-layout-wrapper”>
    <div class=”art-content-layout”>
    <div class=”art-content-layout-row”>
    <div class=”art-layout-cell art-content”>

    mcpeanut
    Participant

    oh by the way hugo as to reaching my abilities lol, do you not think thats a little off putting and undermining to someone who is just learning from scratch how to develop a website?
    3 months ago i knew nothing about web-design and decided to learn myself all through youtube tutorials and places like these forums, my strong points are design/styling and logo creation /artwork ect, so putting these hand in hand with web-design makes sense, what is wrong with learning and asking a question or two when your stuck?

    i am not just creating a buddypress website i am also integrating alot of other features to this website that all work very well together (which i would say was a little over ambitious for a first time project but has all come together great), i am a very quik learner and sometimes only need a nudge in the right direction when im stuck, i didnt go out and buy a buddypress allready made theme and stick my own styling on top ive created my own theme and still made it work.

    like i said hugo, as for my abilities, well my abilities will only grow, i cannot back out and go…oh i better go hire a developer lol

    thx to people like modemlooper people like me can carry on learning! 🙂

    #167059
    Ben Hansen
    Participant

    all of that is handled by the wordpress side of things, buddypress shouldn’t have any trouble handling a domain change. obviously any permalinks would change however.

    mcpeanut
    Participant

    why thankyou modemlooper…if you read above you will see i was on the right track but wasnt to sure, is there any way i can just add some sort of code to exclude it from calling the header within the buddypress pages? and how would i go about removing my navigation bar too(not the buddypress one, my main one?)

    modemlooper
    Moderator

    copy page.php and rename it buddypress.php

    copy header.php and rename it header-buddypress.php

    inside buddypress.php change get_header() to get_header(“buddypress”)

    remove the header image from header-buddypress.php

    #167054
    Hugo Ashmore
    Participant
    mcpeanut
    Participant

    asynaptic thx for the reply i think i posted this in worng section.
    buddypress is installed and works fine…i dont need help from support on any of the matters on that page.
    i just need someone to tell me how to remove my website header image and my navigation bar from above anything thats buddypress related on my website.
    for instance do i need to create a budypress header php and if i do how do i exclude it from using my header image and navigation bar in wordpress pages? what would i add to the header php to stop these pages calling the header and nav bar.
    i dont know how much more clearer i can be on what i need to do, thats what i dont understand? im asking a simple enough question?
    showing someone a screenshot of my header wouldnt help its the same as anyone elses header just that it stretches to far down the page …its about 700px down the page by the time users have scrolled to the buddypress menus in the content area of my page, hence why i need to just remove my header and navigation bar from above my main content area on the buddypress pages (thus making it easier for users to navigate)!
    i also know nearly every experienced buddypress user will probably know how to do this but no-one will reply or help me out?

    Asynaptic
    Participant

    ok, close your eyes and take a deep breath, then take another and relax, this is just a website issue, not life or death

    https://buddypress.org/support/topic/when-asking-for-support-2/

    then write with more clarity, provide screenshots, URL etc. so others can help you

    Unsal Korkmaz
    Participant

    Shortcode to display posts like ShowCase:
    http://theme.firmasite.com/showcase-shortcode/

    I would like to hear your suggestions on this. Please send a comment in post.

    Developer ICAN
    Participant

    Brilliant answer! Thank you very much for the help!

    Ben Hansen
    Participant

    i’d ask @jjj about it.

    Asynaptic
    Participant

    ah, ok so the plot thickens! now why can’t I see my own post then? very strange! I’ve also tried logging out and viewing the thread as well as viewing with another browser with no history of buddypress.com/support

    Ben Hansen
    Participant

    @synaptic I can see your post for what that’s worth also thanks for the link neat tool!

    Asynaptic
    Participant

    @richardicanie your response sounds like you got my original message but I can’t see it on this thread (the forum here stopped it from being published and gave me an error when I tried to resubmit it).

    anyway, about the site you mention: http://community.babycentre.co.uk/

    it doesn’t look like they are using wordpress at all. my guess after looking at the source code is that it is drupal

    in the future you can also check with builtwith.com

    #167031

    In reply to: Buddypress Issue

    shanebp
    Moderator

    To make ‘Profile’ the default tag on a member’s page, put this in wp-config

    define( 'BP_DEFAULT_COMPONENT', 'profile' );

    Re ‘I fixed that issue by editing the bp-custom.php. ‘

    We have no idea what you did or why.
    If the Profile subnav is not showing up, then you have some other problems, probably theme related.
    Change your theme to the WP 2012 and see if the problem exists.
    If not, it’s your theme or custom code.

    Ben Hansen
    Participant

    as far as why other sites are doing things the way they are we are making a bunch of assumptions right off the bat but from outside appearances the site you mentioned does not appear to be using buddypress. often times the forum/community software is a different platform from wordpress this is not the case with buddypress, that might explain why some other site would be compartmentalizing their community sections.

    the only reason to use multisite is to create totally separate blogs/sites under one network setting. if you do not want to create (or let your users create) other sub-sites then chances you want to go multi are not great. You can also switch to that later if you choose (i had buddypress on a site for over two years before i took it multi).

    once you go multi, new users are actually added to the network first they may then be added to a particular site either when you as either super admin or one of your sub-site admins manually adds them to a site or automatically based on activity i believe, that part still baffles me a bit honestly.

Viewing 25 results - 20,201 through 20,225 (of 68,967 total)
Skip to toolbar