Skip to:
Content
Pages
Categories
Search
Top
Bottom

Search Results for 'theme'

Viewing 25 results - 19,726 through 19,750 (of 31,072 total)
  • Author
    Search Results
  • #106837
    shanebp
    Moderator

    Fixed, so far, by doing this:

    Created a directory called _inc under themes/my theme and copied in ajax.php and global.js from bp-default/_inc

    Put this in your theme/functions.php
    /* Load the AJAX functions for the theme */
    require_once( TEMPLATEPATH . ‘/_inc/ajax.php’ );

    /* Load the javascript for the theme */
    wp_enqueue_script( ‘dtheme-ajax-js’, get_template_directory_uri() . ‘/_inc/global.js’, array(‘jquery’) );

    #106831
    Avi M
    Participant

    I think you would have to go into buddypress it’s self and change the css.

    I was able to do a fair amount of style customization to BP but I’m using custom theme designed to work with bp so not sure how others would go about it.

    https://buddypress.org/community/groups/buddypress-group-css/

    That being said you might want to give this plugin a look and see how it does things and then adapt and aplly to your own needs.

    #106816
    jakeL
    Member

    I didn’t know if this was a bug or something intentional in WP. It would be very nice to be able to edit the child theme PHP files in the WP editor rather than editing offline and re-uploading to make any changes :)

    jakeL
    Member

    Just started getting this problem too! I believe it may have began after I inserted my own PHP file for group-header.php in my child theme. *However*, the only lines of code I deleted were lines 6-9 from that file, to remove the Group Admins text and avatars and only show the moderators. The text “Group Mods” shows up but below it says “no mods” just like your issue.

    Any help would be great!!

    Virtuali
    Participant

    Your not an idiot. You can use `<a class="button" href="` anywhere in your theme to place a button to link wherever you want it to.

    Place this in the code wherever you want it to appear :)

    But make sure you end it with ``

    #106804
    pcwriter
    Participant

    @StevieG

    Nothing has been changed in bp-default theme from Buddypress 1.2.7 to 1.2.8. You can see changes have been made only to core files here:
    https://trac.buddypress.org/changeset?old_path=%2Ftags%2F1.2.7&old=3570&new_path=%2Ftags%2F1.2.8&new=4078

    If you’re unsure about updating, keep a copy of BP1.2.7 handy so you can revert back to it if anything breaks :-)

    #106802

    hi, everybody,

    I’m also stuck in this….
    But I got the solution…

    actually i used the tipe from ‘wizard_clp’ that he identifies the location where the actual problem is…

    for this you have to activate friends and also u have minimum one fiend to auto complete to workout.

    then his problem is how to edit core files

    i just copied that function ie ‘messages_autocomplete_init_jsblock’ into my theme unction page renamed it.
    add it into the actions wp_head;
    then i changed the class of that variable to make different from original one
    ie var acfb =jQuery(“ul.first”).autoCompletefb({urlLookup:’root_domain . ‘/wp-load.php’ ?>’,inputClass : ‘.send-to-inputs’,});

    i think this vl help you lot…

    Thankz for the tip…
    god bess you
    xavieremerson1@gamil.com

    @mercime
    Participant

    @FiestyLatina you’re welcome. Note that you will have to implement your theme’s HTML structure to some BP plugins, not all. You’ll know when you have to make the changes when you see the misalignment of your sidebar and content area on the page/s where the plugin is being implemented.

    #106759
    pcwriter
    Participant

    @bazookaman

    https://codex.buddypress.org/theme-development/building-a-buddypress-child-theme/ says:

    “If you create a blank functions.php file in your child theme, the parent theme functions.php will still be loaded. This will allow you to inherit existing functions, but also add your own. You must make sure you give your child theme functions a unique name, otherwise they will clash with the parent.”

    In other words, you CAN create a functions.php file in your child-theme, but the functions IN that file must have unique names.

    #106756
    @mercime
    Participant

    @StevieG adding footer.php from bp-default to your child theme shouldn’t mess with your install.

    So going back to “If I try to access the files in my child theme I get the error message ‘Sorry, that file cannot be edited’.” is this in relation to editing the child theme files via Network Admin > Appearance > Editor panel? If not, what files are you trying to edit and where?

    EDIT- just found out you posted same topic in WP Forums and the problem as posted there was clearer ;-)

    #106747

    In reply to: Changing navigation

    r-a-y
    Keymaster

    Can you be specific? Excluding widgets, the bp-default theme doesn’t have a sidebar nav.

    #106716
    bazookaman
    Member

    The tutorial I read about child themes here: https://codex.buddypress.org/theme-development/building-a-buddypress-child-theme/ says you cannot have a functions.php file in the child theme b/c it conflicts with the real functions.php file. So it says to rename it. To your second point, that is exactly what i want to do. I WANT to override the default functions.php file b/c I want to change the default header size. But since the default header size DOES exist in the default functions file you are saying I cannot override it with a child theme?

    ftrenkam
    Member

    Had the same problem on a fresh BP 1.2.8 install on a fresh WP 3.1. Changed theme to bp default, changed permalink settings, made sure .htaccess contained rewrite rules as generated by BP. mod_rewrite was definitely activated. However, the .htaccess in the BP root (a subdirectory under a local domain) was not evaluated at all. Ubuntu 10.04 server edition, everything installed via packet management except for WP/BP which were simply unzipped from the download archives.

    This entry in httpd.conf helped:
    ~~
    `
    Options FollowSymLinks
    AllowOverride FileInfo Options
    Allow from all
    `
    ~~

    After that all the links on tabs, registration etc. worked fine.

    #106713
    ftrenkam
    Member

    Had the same problem on a fresh BP 1.2.8 install on a fresh WP 3.1. Changed theme to bp default, changed permalink settings, made sure .htaccess contained rewrite rules as generated by BP. mod_rewrite was definitely activated. However, the .htaccess in the BP root (a subdirectory under a local domain) was not evaluated at all. Ubuntu 10.04 server edition, everything installed via packet management except for WP/BP which were simply unzipped from the download archives.

    This entry in httpd.conf helped:
    ~~
    `
    Options FollowSymLinks
    AllowOverride FileInfo Options
    Allow from all
    `
    ~~

    Change the root dir of bp accordingly. After that all the links on tabs, registration etc. worked fine.

    #106711

    In reply to: 404 Page not found

    ftrenkam
    Member

    Had the same problem on a fresh BP 1.2.8 install on a fresh WP 3.1. Changed theme to bp default, changed permalink settings, made sure .htaccess contained rewrite rules as generated by BP. mod_rewrite was definitely activated. However, the .htaccess in the BP root (a subdirectory under a local domain) was not evaluated at all. Ubuntu 10.04 server edition, everything installed via packet management except for WP/BP which were simply unzipped from the download archives.

    This entry in httpd.conf helped:
    ~~
    `
    Options FollowSymLinks
    AllowOverride FileInfo Options
    Allow from all
    `
    ~~

    Change the root dir of bp accordingly. After that all the links on tabs, registration etc. worked fine.

    #106695

    In reply to: user profile sign-up

    tiki16
    Participant

    Hello. Same problem. When you comment on a post it doesn’t appear and I can’t even see where I would be able to create a profile as a new user visiting the site. The author of the theme requires payment for support. Guess I got suckered in. All this work for a useless theme. yeesh!
    I am working locally on xampp, windows 7 but doubt if that is the issue.
    Steve

    #106690
    @mercime
    Participant

    You can have your own functions.php file in a child theme. Just make sure that the new function you’ll be adding is not the same as the ones already in functions.php of bp-default parent theme.

    #106665
    robsmitties
    Member

    Ka Yue, thats exacly what i need.. when does this theme release? i want to use it to understand the buddypress code so i can build my site from scratch…. thanks a lot

    #106653

    In reply to: user profile sign-up

    Paul Wong-Gibbs
    Keymaster

    Go back to the default (unedited) theme, disable any plugins other than BuddyPress, and try again. If it still doesn’t work, are there any messages in your web server’s error log.

    #106646
    ARHistoryHub
    Participant

    https://codex.buddypress.org/home/

    The docs are fairly thorough, and assuming you’ve correctly installed buddypress and bbPress forum integration, the forums should appear along with all the other newly created pages – i.e. – example.com/forum, example.com/groups. If these pages are not appearing in your navigation, your wordpress theme may not be compatible with wordpress. In this case you could switch to a theme designed for BP or work to make your current theme compatible.

    Also, make sure these components are enabled in the buddypress admin dashboard settings. If you feel you’ve done everything correctly, you should be able to create new groups by going to yoursite.com/groups and clicking the new group button that appears at the top of the page.

    FiestyLatina
    Member

    Omg that worked! Thank you to everyone that took the time to help me, if there’s anyway I can repay, please let me know!

    #106633

    In reply to: Change Menu Bar

    pcwriter
    Participant

    @JamieMM

    You seem to be having difficulty with the basics. May I suggest switching to an easier theme to customize?

    I designed BuddyLite with newbies in mind (like me!) You can get a similar look and feel as your current theme, while taking full advantage of WP3 custom menus, and a bunch of basic customization options through a simple admin panel.

    You can download it here: http://buddylite.com/buddylite-basic/

    #106595

    In reply to: lost tooltip on @user?

    noizeburger
    Participant

    The fact that I’m using a standard wp-theme (arras – adapted to work with bp together with template pack) made me realise, that I have the same problem. When the site’s loading I can see the “?” for a short time, then it disappears and doesn’t work.

    #106571
    @mercime
    Participant

    At the end of the BP template pack process, per instruction on screen, you need to add (hardcode) new navigation tabs or links to your theme’s header.php to link to BuddyPress components directory pages.

    Add link to the components you enabled in BuddyPress settings. The default set of links are:

    * Activity: http://yoursite.com/activity/
    * Members: http://yoursite.com/members/
    * Groups: http://yoursite.com/groups/
    * Forums: http://yoursite.com/forums/
    * Register: http://yoursite.com/register/ (registration must be enabled)
    * Blogs: http://yoursite.com/blogs/

    #106565

    In reply to: Change Menu Bar

    JamieMM
    Member

    I opened the folder and found the original custom css which is below and also the style.css which is after the custom. I didnt see where I could find the nav menu?

    body {
    width: 1000px;
    }

    #leftSidebar {
    width: 182px;
    float: left;
    padding: 20px 5px 20px 20px;
    background: url( images/sidebar_back.gif ) top left repeat-x;
    margin-top: 1px;
    overflow: hidden;
    border-right: 1px solid #e4e4e4;
    }

    #leftSidebar .widget {
    margin-bottom: 20px;
    }

    #leftSidebar h3.widgettitle {
    background: #eaeaea;
    padding: 5px 15px;
    font-size: 12px;
    clear: left;
    margin: 10px -4px 10px -20px;
    }

    #wp-admin-bar div.padder {
    width: 1000px !important;
    }

    #content div.padder {
    float: left;
    width: 525px;
    border-left: 1px solid #e4e4e4;
    margin-right: 226px;
    border-right: 0px solid #e4e4e4;
    -moz-border-radius-topleft: 0px;
    -webkit-border-top-left-radius: 0px;
    -moz-border-radius-bottomleft: 0px;
    -webkit-border-bottom-left-radius: 0px;
    margin-left: -1px;
    }

    div.post div.post-content, div.comment-content {
    margin-left: 0px;
    }

    THIS IS THE STYLE.CSS
    /*
    Theme Name: BP Columns
    Theme URI: http://buddypress.org
    Description: A 3 Column Buddypress theme.
    Version: 1.2
    Author: modemlooper
    Author URI: http://twitter.com/modemlooper
    Template: bp-default
    Tags: buddypress, three-columns
    */

    /* Inherit the default theme styles */

    @import url( ../../plugins/buddypress/bp-themes/bp-default/_inc/css/default.css );

    /* Inherit the default theme adminbar styles */

    @import url( ../../plugins/buddypress/bp-themes/bp-default/_inc/css/adminbar.css );

    /* Custom styles */

    @import url( custom.css );

Viewing 25 results - 19,726 through 19,750 (of 31,072 total)
Skip to toolbar