Skip to:
Content
Pages
Categories
Search
Top
Bottom

Search Results for 'theme'

Viewing 25 results - 22,251 through 22,275 (of 32,562 total)
  • Author
    Search Results
  • #98751
    David
    Participant

    @boonebgorges works perfect! thanks. I have hopefully one last issue that completely has me stumped. It works on my testing machine, but when I put it live I get errors. It has to do with me including the above idea but using my own custom data table. I insert my own form and add it with the function like above and put my own processing in the save function like above using the standard insert/update sql pointing to the new table for the form. It works on my local machine, but when I upload it live and click on ” create group” i get the following error….sorry for all the code

    Warning: Cannot modify header information – headers already sent by (output started at /home/clubmash/public_html/wordpress/wp-content/themes/chatCaddie_theme/functions.php:141) in /home/clubmash/public_html/wordpress/wp-content/plugins/buddypress/bp-groups.php on line 1053

    Warning: Cannot modify header information – headers already sent by (output started at /home/clubmash/public_html/wordpress/wp-content/themes/chatCaddie_theme/functions.php:141) in /home/clubmash/public_html/wordpress/wp-content/plugins/buddypress/bp-groups.php on line 1054

    Warning: Cannot modify header information – headers already sent by (output started at /home/clubmash/public_html/wordpress/wp-content/themes/chatCaddie_theme/functions.php:141) in /home/clubmash/public_html/wordpress/wp-includes/pluggable.php on line 890

    I am working in a child theme and I am at my ends trying to fix this. I am so close to what I want to do I just would hate to give up now. thanks for any tips you can give me.

    #98750
    @mercime
    Participant

    Via CSS – add `body.groups #item-actions { display: none; }`
    or
    create bp-default child theme and copy over groups/single/group-header.php following folder structure and delete lines 3-21

    #98749
    @mercime
    Participant

    Create a child theme and add header.php into it. Then wrap the BP components including bp_nav_items in conditional tag https://codex.wordpress.org/Function_Reference/is_user_logged_in

    #98748
    LPH2005
    Participant

    @alphadeangelo

    He’s using the Ultimate Blogging Theme: http://www.ultimatebloggingtheme.com/

    @cmubrad – I don’t know all of the details of that theme but the easiest is to install the site wide activity plugin and use a widget in the sidebar.

    #98743

    sorry if my reply is OOT, but I like your site theme, are you making by your own or buy from the designer, its eye cathcy

    #98731
    LPH2005
    Participant

    The easiest is to modify the php files in your theme as well as the css files.

    In particular, I modified the /activity/index.php file by removing the sidebar code near the bottom of the file.

    Blog posts are done by having a template file written without a sidebar also.

    Finally, adjust the container and padder css to your liking.

    #98730
    csbarrett
    Member

    @mercime, I’m not sure what was causing it, but once I created a child theme from Citizen Kane, I found that the header image from the bp-default theme was showing up behind the custom header image I uploaded (it has a transparent background so I could see behind it). I was trying different things, so I don’t know what was causing it. But sorry about the confusing post.

    @modemlooper, the code you posted is what was left after I cut out lines 54-80. I also cut out line 84 as @mercime suggested. I put it back because it was in the code you posted but it didn’t seem to make a difference. Thanks both of you for your help though, it works now.

    @Jenny, you might want to check out the BP-WP Navbar Menu plugin. It lets you customize the bp admin bar and you can add all your bp links under a drop-down menu (labelled “Community” by default).

    #98727
    imjscn
    Participant

    Looks like it’s really a problem. DJPaul said need unlock loading in default theme. Now waiting the solution :-)

    #98719
    Pixyweb
    Member

    Great, thanks for your reply

    #98715
    modemlooper
    Moderator

    It will fit most any theme with some modification to the HTML and possibly CSS. https://codex.buddypress.org/theme-development/wordpress-to-buddypress-theme/

    #98713
    hcleary
    Member

    I have upgraded to BP 1.2.6. I’m getting the same error above. Any ideas?

    Boone Gorges
    Keymaster

    Are you using a custom theme? It sounds like the theme wasn’t updated to account for the new BP_Button class.

    #98683
    modemlooper
    Moderator

    Easiest way is to remove all the li links from the header.php file except the home link and wp_list_pages( ‘title_li=&depth=1&exclude=’ . bp_dtheme_page_on_front() ); and then add a sidebar menu widget for any links you need. Next version of BP will use WP menus for the top nav so you won’t need to customize the html.

    remove everything from between ul id=”nav”

    replace with

    <ul id="nav">
                    <li<?php if ( bp_is_front_page() ) : ?> class="selected"<?php endif?>>
                        <a href="<?php echo site_url() ?>" title="<?php _e( 'Home''buddypress' ) ?>"><?php _e( 'Home''buddypress' ) ?></a>
                    </li>

                    <?php wp_list_pages( 'title_li=&depth=1&exclude=' . bp_dtheme_page_on_front() ); ?>

                    <?php do_action( 'bp_nav_items' ); ?>
    </ul><!-- #nav -->

    #98681
    Hugo Ashmore
    Participant

    and so you now need to follow the instructions I outlined above.

    #98679
    ophidite
    Member

    I add this to the css of my theme :

    #content-sidebar {
    float: left;
    width: 100%;
    -moz-border-radius-topleft: 6px;
    -webkit-border-top-left-radius: 6px;
    -moz-border-radius-bottomleft: 6px;
    -webkit-border-bottom-left-radius: 6px;
    }

    #content-sidebar .padder {
    margin-right: 350px;
    border-right: 0px solid #ddd;
    -moz-border-radius-topleft: 6px;
    -webkit-border-top-left-radius: 6px;
    -moz-border-radius-bottomleft: 6px;
    -webkit-border-bottom-left-radius: 6px;
    }

    and i call

    in index.php of my bp activity page

    #98677
    Hugo Ashmore
    Participant

    But you haven’t created any rules for sidebar so it can only sit in the flow??!!

    It looks as though #sidebar needs to be placed after your #sidebar-content element has closed as you have rules for a classic source order arrangement with #content-sidebar floated 100% width and it’s first child given a right margin to clear space for the sidebar with this arrangement #sidebar element must be flowed after the main sidebar-container closes. Then you need to actually describe sidebar ruleset that floats it left, set a width and an equal negative left margin to match the width.

    #98676
    Active Citizenship
    Participant

    the problem for us IS with the theme. we were using the simple wp communty theme which may mean its a compatabilty issue between buddypress and a wp theme. the odd thing is that it worked for the past two months. its not a plug in issue. we could reinstall buddypress and wordpress but we’re afraid we’ll lose all site content.

    #98675
    Active Citizenship
    Participant

    thanks. auto embeds didn’t work but we were able to succeed with the plugin all in one video back and it is working fine

    #98666
    imjscn
    Participant

    I just got the same job done on my child them (based on bp-default).
    Of course, do it in Child theme, it’s safer and convinient.
    I feel the easiest way is to remove the theme’s orginal nav lines, code my own nav and give it different id and class. This way can avoid inherit theme’s css
    Adding bp links to admin bar should be another story, I haven’t arrive there yet :-)

    #98663
    @mercime
    Participant

    @csbarrett 1st, you should have mentioned that you were using the Citizen Kane bp-default child theme.
    2nd, the only CSS it has directly imported from the bp-default theme is the adminbar.css therefore can’t fathom what you mean by “pulling both header images” and “overriding the bp-default header.css”.
    3rd, perhaps @modemlooper, the theme author, can shed some light on your theme issues.

    #98658
    csbarrett
    Member

    I’m now realizing that Citizen Kane’s css was inheriting css from the default theme. So it is embedding the bp-default header behind the custom header image I entered into the citizen kane header.php file. Is there anyway to stop it from pulling both header images? Can I add some css that overrides the bp-default header css?

    And why can’t I just cut the code directly from the Citizen Kane header file? That would be the easiest way…

    #98655
    jonnylons
    Participant

    I did the upgrade to my theme…but still have the same problem. Ideas?

    #98654
    csbarrett
    Member

    Thanks a lot. It worked. I am not using the bp-default theme though, I am using the Citizen Kane theme. And it worked with that theme as well. When I created the child theme css file, I just called all six css files in the Citizen Kane theme. And in the Citizen Kane header.php file, the code to delete is on lines 54-80 and 84.

    #98653
    @mercime
    Participant

    You need to revise HTML structure in BP templates transferred to your active theme in Step Three of the compatibility process. Plus copy some styling from bp-default’s style.css and adjust to taste.
    BP Template Pack Process – https://codex.buddypress.org/theme-development/wordpress-to-buddypress-theme/
    Template Pack Walkthrough – https://codex.buddypress.org/theme-development/bp-template-pack-walkthrough-level-easy-2/

    #98651
    @mercime
    Participant

    – create a bp-default child theme,
    – copy header.php from bp-default theme folder and add to child theme,
    – open up header.php and delete lines 51- 77 and line 81, save
    – upload child theme folder with the revised header.php and style.css to server

Viewing 25 results - 22,251 through 22,275 (of 32,562 total)
Skip to toolbar