Skip to:
Content
Pages
Categories
Search
Top
Bottom

Search Results for 'theme'

Viewing 25 results - 23,626 through 23,650 (of 32,561 total)
  • Author
    Search Results
  • #88585
    jp
    Participant

    Hi !

    Your idea is great.
    Where do you write all those codes ? into functions.php ?
    Moreover, I would like to merge all “personal”, “friends”,”groups” and “mentions” in one ? using your method, would it be possible ?
    Thanks to help me.

    I’m using wordpress 3.0 , buddypress 1.2.5 , and bp-default theme

    #88574
    diahelp
    Member

    Never mind dude, Don’t even know what I was asking myself, lol!

    Yeah I just tried it on a crappy template from WordPress and done it all fine! I have experiance on themes, coded my own one into WordPress so didn’t find it hard once started!

    Thanks again :)

    #88572
    Beck B
    Participant

    If you didn’t back up your files, check with your host. Some (like GoDaddy) do automatic backups periodically, so you might be able to recover your old files.

    #88570
    r-a-y
    Keymaster

    Not sure what you mean. I’m guessing the layout is messed up on your BuddyPress pages.
    Like I eluded to earlier, you’ll have to modify the BuddyPress templates in your theme to make it look the same as the rest of your site.

    Step 3 in BP Template Pack should have outlined these steps. If you have no experience working with themes, you might find this a little daunting.

    #88566
    Anointed
    Participant

    @rustybroomhandle/
    site is:
    http://jerrygaffney.net/groups/mens-ministries/
    If you need access let me know where to send a temp pass for you. I have activations turned off, so there is no real way for you to test it out publicly.

    #88558
    diahelp
    Member

    Thanks, so it is possible? :)

    I’ve just tested that out and it does it, just got to scale the size down for the forum, groups, and other features! However I can’t see the code to scale the size down a bit, you know where that would be?

    Thanks!

    #88557
    r-a-y
    Keymaster

    You can try the BP Template Pack plugin combined with your WordPress theme:
    https://wordpress.org/extend/plugins/bp-template-pack/

    Most likely, some tweaking will need to be made to the BuddyPress templates that get imported into your theme once you use the plugin.

    #88555
    r-a-y
    Keymaster

    Hi Shaigan,

    You have to be specific. What theme upgrade patch did you try?

    I’m guessing you mean that you upgraded BuddyPress via the admin dashboard and your theme got deleted.

    If you installed your theme @ /wp-content/plugins/buddypress/bp-themes/, then your theme would have been wiped out.
    The correct place to put your custom theme is @ /wp-content/themes/.

    If you did not backup your filesystem before the upgrade, then your theme is lost.

    #88554
    r-a-y
    Keymaster

    Try editing /single.php and /page.php in your child theme.

    Edit the_time()’s parameters to add the date:
    https://codex.wordpress.org/Function_Reference/the_time

    #88552
    newrambler
    Member

    I have the same question and came here hoping someone had answered it. I’ll keep poking and post here if I figure anything out.

    #88539
    Hugo Ashmore
    Participant

    At some point you have made some changes to your layout or something has if this theme is essentially the bp-default the #sidebar is in the wrong position for a floated sidebar following after content elements.

    #sidebar needs to be inside #container not outside – move #sidebar just before the closing tag for #container.

    first I think that other may have the same problem. as I did not found it I posted it. As it only happens if the user is logged in, there is nothing what I can show.

    The description is clearly. The whole menu structure of the buddypress is below the footer. here the menu list:

    IT-Consultant – Christian Gnoth
    My Account
    Activity
    Personal
    Friends
    Groups
    Favorites
    @admin Mentions
    Profile
    Public
    Edit Profile
    Change Avatar
    Blogs (7)
    Messages Inbox
    Sent Messages
    Compose
    Notices
    Friends (0)
    My Friends
    Requests
    Groups (0)
    My Groups
    Invites
    Settings
    General
    Notifications
    Log Out
    My Blogs
    IT-Consultant – Christian Gnoth
    Dashboard
    New Post
    Manage Posts
    Manage Comments
    German Newspaper
    Dashboard
    New Post
    Manage Posts
    Manage Comments
    WordPress PlugIn Development
    Dashboard
    New Post
    Manage Posts
    Manage Comments
    Theme Development
    Dashboard
    New Post
    Manage Posts
    Manage Comments
    Blogs from IT-GNOTH.de
    Dashboard
    New Post
    Manage Posts
    Manage Comments
    PHP Development
    Dashboard
    New Post
    Manage Posts
    Manage Comments
    wp theme t1
    Dashboard
    New Post
    Manage Posts
    Manage Comments
    Notifications
    No new notifications.
    Blog Authors
    admin
    wptrack1
    Visit
    Random Member
    Random Group
    Random Blog

    #88523
    rustybroomhandle
    Participant

    @Anointed – I would like to have a look at your site, if you don’t mind. I’ll see if I can figure out what’s biting it.

    #88517
    Hugo Ashmore
    Participant

    As is starting to appear the case a large majority of issues people have are often tracked down to simply using custom themes, it’s a wee bit frustrating.

    There are two paramount troubleshooting actions to follow that establish very quickly where the root cause of issues lies and ought to always be followed first and foremost – and we should have asked the theme question far earlier on which is where we were remiss.

    1/ Disable any custom theme – check if an issue still occurs when running the BP-default theme.

    2/ Disable any plugins other than the absolute bare minimum to run BP to establish whether there are plugin conflicts.

    #88511
    Beck B
    Participant

    @meetsos, if you haven’t solved the problem yet:
    I believe you should be able to create a functions.php file in the Randy Candy theme. (Or go one better and create your own child theme based on Randy Candy, so you can benefit from published updates without losing your modifications.)

    #88500
    Steven Word
    Participant

    I came across this post today while researching using a similar method and I have found a work-around that is functional.
    It’s not uber-elegant, but it is functional. Here is how to do it.

    1.) Create a function that will update the wp-user usermeta to be the same as that of the xprofile.
    2.) Create a hook to update the wp-usermeta with the xprofile data everytime the profile is updated.
    3.) User the standard metakey / metavalue functions to pull the data back out.

    Here is a code sample that can go in functions.php in your theme:

    function copyUserMeta(){
    global $current_user;
    get_currentuserinfo();
    $user_id = $current_user->ID;

    $gender= xprofile_get_field_data( “Gender” ,$user_id);
    update_usermeta( $user_id, ‘gender’,$gender);

    $location = xprofile_get_field_data( “Location” ,$user_id);
    update_usermeta( $user_id, ‘location’,$location);
    }
    add_action( ‘bp_before_profile_edit_content’, ‘copyUserMeta’ );

    Then when you need to look up those values you can query using the standard user_meta calls.

    #88490
    imjscn
    Participant

    In the Components set up, I Enabled everything.
    I am not using BP-Default theme, I guess we found the problem– my theme missed out the 3 links of global ”Activity”, “Group”, “Members” under the main menu.
    Anyway, the whole thing is really confusing. Thanks, hnla! I will go to check the them and come back later.

    #88442
    Hugo Ashmore
    Participant

    Are you sing a theme other than BP-Default? have you definitely got ‘Buddypress -> Componant Setup -> Groups ‘Let users create, join and participate in’ enabled

    #88423
    dominick41
    Member

    Sounds like good advice………Really all we are want is a good Profile Display Page, and an easy floating Chat maybe later on, Profiler Plug-in is the only one out there, and all of sudden it did not list our last few new members, we deleted it and and reinstalled it, and the new members are still not in there.
    All the social plug ins for wordpress are a mess, we tried Theme My Profile Plug In, Mingle, BP………We get them to function all right, but then after a few days, we start having problems with Registrations, its always the registrations.
    There is a standard that has been set by Facebook, we just cant touch it. That is how they grew so big.
    We finally found a fairly decent User email Plug in.
    Wordpress is really starving for a plug in this area.
    Anyway thanks for the Advice.

    #88420
    Beck B
    Participant

    No experience using it (obviously), but I did just see this plugin that limits the number of groups a user can create.

    #88419
    Beck B
    Participant

    It is rather easier to work with if you’re starting a site than if you’re modifying an existing one, I’d imagine. I’m sure you’ll find other ways to engage people. (I did briefly look at Mingle, but can’t say as I feel strongly one way or another about it.)

    #88417
    Blue
    Participant

    Yeah we have disabled, and deleted it.
    It presents itself more for an “as is” installation.

    I really havent got the time to re code an entire theme, due to cross polination of class and id tags, and incompatible css structure.

    Many thanks tho for your replies. :)

    #88415
    Beck B
    Participant

    It is rather odd the tags aren’t actually used in the bp-default theme.

    Not-entirely-a-tangent: I wish I could mark a favorite reply from here, rather than having to find it as part of an activity stream somewhere. .oO(Am I just misunderstanding how favorites are intended to work?)

    #88412
    Kevin Perez
    Participant

    I’m using the default buddy press Widget theme, what I I would like to do is pretty much change the color to match the banner but if possible remove the menu tabs from the banner area altogether to be placed somewhere more convenient so that it’s not distracting or as you said cluttered. Whichever one works better. I’m more familiar with other Open Source CMS so it rather challenging coming from a different system and modding this one.

    #88409
    Beck B
    Participant

    Uhoh, lost some code in your last reply here. Members has also gone away. DId you disable BP in frustration, or is that a result of whatever changes to index.php you mention?

    (Sorry, the problem with forums, we’re in and out of windows and sometimes slow to reply)

Viewing 25 results - 23,626 through 23,650 (of 32,561 total)
Skip to toolbar