Skip to:
Content
Pages
Categories
Search
Top
Bottom

Search Results for 'buddypress'

Viewing 25 results - 20,351 through 20,375 (of 69,126 total)
  • Author
    Search Results
  • #167108
    crashy11
    Participant

    I think I can do it with custom post type, but now I have problem that posts from custom post type are not showing in category.

    #167106
    Ben Hansen
    Participant

    yeah the hostile trick is a good way to “trick” your computer thinking a domain exists somewhere its doesn’t thus allowing you to not need to change the domain in the first place. that being said as Hugo mentions the codex pages tend to try to address the entire learning curve of any particular process meaning that they are giving you a bunch of options on that page you don’t need to be able to follow the entire thing to employ one of the listed techniques.

    Another thing you may want to consider (depending on the amount of content your site will have prior to going public) is to simply build out on a dummy domain then reconstruct on a fresh install as soon as you are able to grab the domain. Regular wordpress content can even be exported from the construction site and then imported into the new site. Unfortunately no such process exists for buddypress data (groups, non post creating users and activity) but generally speaking those things shouldn’t take all that long to recreate unless your community section is going to be gigantic.

    #167105
    shanebp
    Moderator

    >is that hard to make?

    Not if you understand S2, mysql and pre-query BP filters

    #167104
    crashy11
    Participant

    Hi, is that hard to make? Can I do that by myself maybe?

    David Cavins
    Keymaster

    Shuklaamar- Be aware that if you edit core files as that web page suggests, you’ll have to make that same edit every time you update WordPress.

    Honestly, my experience with WordPress on IIS hasn’t been that great. The rewrite/redirects are one thing, but the FastCGI implementation is not very robust, which can cause grief.

    Polly- Your problem doesn’t appear to be related to the original question. I think you’re right that the problem is the theme, so contacting the theme author would be a good start.

    -David

    #167100
    shanebp
    Moderator

    You need to apply a filter to the activity sql.

    You can contact me via PhiloPress

    Or post at Jobs

    shuklaamar1509
    Participant

    I Solved the Issue. Please follow the link : http://webloggerz.com/how-to-remove-index-php-from-wordpress-url/

    #167094
    shuklaamar1509
    Participant

    I Solved the Issue. Please follow the link : http://webloggerz.com/how-to-remove-index-php-from-wordpress-url/

    Prolet
    Participant

    This problem is NOT RESOLVED!
    Anybody with a solution, please? ( to switch to a BP theme is not a solution!)
    Thanks!

    #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?

Viewing 25 results - 20,351 through 20,375 (of 69,126 total)
Skip to toolbar