Skip to:
Content
Pages
Categories
Search
Top
Bottom

Search Results for 'theme'

Viewing 25 results - 23,151 through 23,175 (of 32,561 total)
  • Author
    Search Results
  • #92229
    thelandman
    Participant

    @darrin365, I think this might solve your problem!

    Go into Buddymatic theme header.php file and make sure that its not calling a different version of jquery.

    Make sure you are running jquery 1.4.2.

    #92201
    Pisanojm
    Participant

    Also check out the well-supported themes by the wpmudev.org group… they cost, but they will provide fantastic support and are guaranteed to work with all upcoming BP updates… Agree with @modemlooper …. the beauty of BuddyPress is you can do anything… the caveat with that is you have to spend a lot of time figuring it all out, trying things, and you might even need to learn a little “programming” along the way to make it do what you want…

    http://buddydress.com/themes/

    #92199
    @mercime
    Participant

    Theme, you can get a WordPress theme with magazine format then install BP Template Pack which you will need to tweak to mesh with HTML structure of your WP theme.

    Photos, videos and audio (if you allow all three in admin) uploads working with BP Gallery Plugin, which is premium at this time. You could set Gallery page to include all media or set up pages for respective media. Edit – Also individual members plus groups have their own respective photo, video and audio gallery pages out of the box.

    #92197
    modemlooper
    Moderator

    There are too many options. There are 725 plugins tagged video for WordPress. Not all of these will work with BuddyPress.

    https://wordpress.org/extend/plugins/search.php?q=videos&sort=

    You are better off testing plugins out. As for themes, you can use most WordPress themes with BuddyPress but you will have to adjust the code.

    #92182

    In reply to: Custom register.php

    Iain Manley
    Participant

    I’m experiencing the same problem – but I’m definitely using a BuddyPress enabled theme. I’m trying to enable registration on my home page by using a template, but nothing is being returned by bp_get_current_signup_step(), so nothing is displayed between

    . Is there a way of working around this? @thomallen Did you get this working eventually?

    Boone Gorges
    Keymaster

    The markup for the edit profile page is in the theme directory, members/single/profile/edit.php. The change avatar page is right next to it, members/single/profile/change-avatar.php. The markup for the settings screens is created in bp_core_screen_general_settings(), located in buddypress/bp-core/bp-core-settings.php. It’s possible in theory to move all of this markup to the same file – say, edit.php.

    Then you’ll have to combine the form data handlers, which might be more tricky. When you save your settings panels, they are run through bp_core_screen_general_settings; you can find the code you need there. When you save the Edit Profile screen, it gets run through xprofile_screen_edit_profile() in buddypress/bp-xprofile.php. And the first stop for the Change Avatar page is xprofile_screen_change_avatar(), also in bp-xprofile.php. You’d have to merge all of these handlers somehow in order to get them to process data from the same HTML form.

    Good luck.

    #92142
    Roger Coathup
    Participant

    If you are wanting to mod CSS on a complicated theme, you should really work with a tool like Firebug in Firefox or developer tools in safari… It will save you an awful lot of time

    #92134
    christofian
    Participant

    sorry

    1. Which version of WP/MU are you running?
    wordpress 3.0.1

    2. Did you install WP/MU as a directory or subdomain install?
    3. If a directory install, is it in root or in a subdirectory?
    the directory that I installed it in is: mysite.com/site/wordpress

    4. Did you upgraded from a previous version of WP/MU? If so, from which version?
    no, this is a clean install

    5. Was WP/MU functioning properly before installing/upgrading BuddyPress (BP)? e.g. permalinks, creating a new post, commenting.
    yes

    6. Which version of BP are you running?
    buddypress 1.2.5.2

    7. Did you upgraded from a previous version of BP? If so, from which version?
    no

    8. Do you have any plugins other than BuddyPress installed and activated? If so, which ones?
    Akismet, BuddyPress Moderation, and Register Plus. I tried deactivating them to no avail.

    9. Are you using the standard BuddyPress themes or customized themes?
    the standard bp theme with a different header image

    10. Have you modified the core files in any way?
    Yes. Before this I was getting an error because of mysql_get_server_info on wp-db.com, so I changed line 1589 (or somewhere around there from `return preg_replace( ‘/[^0-9.].*/’, ”, mysql_get_server_info( $this->dbh ));` to `return preg_replace( ‘/[^0-9.].*/’, ”, mysql_query(“select version() as $this->dbh”) );`, and that error stopped.

    11. Do you have any custom functions in bp-custom.php?
    no

    12. If running bbPress, which version? Or did your BuddyPress install come with a copy of bbPress built-in?
    it came with bbpress build in.

    13. Please provide a list of any errors in your server’s log files.
    couldn’t find those: I will keep on looking though.

    14. Which company provides your hosting?
    000webhost.com

    15. Is your server running Windows, or if Linux; Apache, nginx or something else?
    linux with apache 2.0

    Thank you for your help.

    #92131
    Pisanojm
    Participant

    @r-a-y @mercime I just got this from @Brajesh and it is working great! Thank you both so much for your help with this.

    Add this to the buddypress/bp-groups.php, around line 476, in addition to the above suggested add (this is a core change, not a theme change):
    `
    //add this

    if(!empty($_POST[“topic_tags”]))
    bb_add_topic_tags($topic_id,$_POST[“topic_tags”]);//add the new tags
    //end add

    do_action( ‘groups_edit_forum_topic’, $topic_id );
    bp_core_redirect( bp_get_group_permalink( $bp->groups->current_group ) . ‘forum/topic/’ . $topic_slug . ‘/’ );
    }
    `

    Also, just for reference, here is the function I added to the functions.php to get the tags to go in a row. (associated with the code I posted above)…

    `
    //topic tags as row

    function bb_row_tags( $args = null ) {
    $defaults = array(
    ‘tags’ => false,
    ‘format’ => ‘row’,
    ‘topic’ => 0,
    );

    $args = wp_parse_args( $args, $defaults );
    extract( $args, EXTR_SKIP );

    if ( !$topic = get_topic( get_topic_id( $topic ) ) ) {
    return false;
    }

    if ( !is_array( $tags ) ) {
    $tags = bb_get_topic_tags( $topic->topic_id );
    }

    if ( !$tags ) {
    return false;
    }

    $r = ”;
    switch ( strtolower( $format ) ) {
    case ‘row’ :
    default :
    $args = ‘row’;
    foreach ( $tags as $tag ) {
    $r .= _bb_row_tag_item( $tag, $args );
    }
    break;
    }
    echo $r;
    }

    function _bb_row_tag_item( $tag, $args ) {
    $url = esc_url( bb_get_tag_link( $tag ) );
    $name = esc_html( bb_get_tag_name( $tag ) );
    if ( ‘row’ == $args ) {
    $id = ‘tag-‘ . $tag->tag_id . ‘_’ . $tag->user_id;
    return “t” . ‘‘ . $name . ‘‘ . “n”;
    }
    }
    `

    #92128

    In reply to: events plugin?

    milordk
    Participant

    @hnla
    It makes no sense to prove that it is better:) my plugin is being developed under my projects, it will evolve to a normal user, not a “how to calculate marketing .. You always have a choice – to use interface administrative panel of WordPress or normal and a lot of understandable for the user – the interface used by the theme …

    #92123

    In reply to: Theme won’t update

    strategicblend
    Participant

    Great – I’ll look into both mercime!

    #92110

    In reply to: Theme won’t update

    @mercime
    Participant

    I took BP Template Pack for a test spin a month or so ago, once, out of curiosity :-) Some notes:

    1. Need to make sure that you have ported the HTML div structure of original theme to template pack. Watch out for div iD’s and classes of content area and sidebar. There’s an error page on the link you provided. If I remember correctly from yesterday, it seems like you have not renamed the div surrounding your content and sidebar, otherwise the page layout would’ve looked like your regular pages even if the BP components were somewhat lacking in style

    2. If you’ve disabled the BP Template Pack CSS in options, copy the styles available in https://svn.wp-plugins.org/bp-template-pack/tags/1.0.1/bp.css to your active theme’s style.css then adjust to taste

    #92107
    @mercime
    Participant

    @chewbaker – assuming you’re using WP 3.0.1 and BP 1.2.5.2, deactivate all plugins except BuddyPress and then activate bp-default theme. If the errors do not disabpper then you have to give more info than what you posted.

    #92095

    In reply to: Theme won’t update

    Roger Coathup
    Participant

    Ok, so the problem is definitely with your custom theme.

    I’ll jump out now… hopefully someone who’s worked with the template pack can pick up on this one

    #92087
    philip
    Participant

    Jason at Primothemes answered this question. http://www.primothemes.com/forums/viewtopic.php?f=4&t=710&p=3170#p3170

    #92085

    In reply to: Theme won’t update

    strategicblend
    Participant

    Yeah you probably shouldn’t visit the URL – its a live staging site and always changing. I only placed it above per forum etiquette. If you need examples of actual code or the actual php files themselves I can certainly provide.

    (UPDATE: I’ve told the dev team to temporarily hault any activity so you should be able to see the fully rendered site at that URL and specifically note the pages aren’t changing).

    When I switch to the original BP theme everything DOES work. But just to note, I don’t have the option of using that theme – it has to be my own custom theme.

    #92082

    In reply to: Theme won’t update

    Roger Coathup
    Participant

    To help isolate the problem: what happens if you switch to the default BuddyPress theme – does everything work ok in that scenario?

    p.s. your original post said you just see the old styled pages, but when I visit your page, it’s actually a 404 page error that shows

    #92079

    In reply to: Theme won’t update

    strategicblend
    Participant

    Hey Roger – as I said above I used the BP Template Pack and followed their instructions exactly – so my file structure would mimic their setup. The theme is my own (hence the reason I used the BP Template Pack Plugin) and placed the “activity” “blogs” “members” “groups” and “forums” folders inside my theme root. When I try to edit any of the files the template pack designates (see below) nothing is updated on the site:

    * /activity/index.php
    * /blogs/index.php
    * /forums/index.php
    * /groups/index.php
    * /groups/create.php
    * /groups/single/home.php
    * /groups/single/plugins.php
    * /members/index.php
    * /members/single/home.php
    * /members/single/plugins.php
    * /registration/register.php

    Roger Coathup
    Participant

    Use something like firebug in firefox or developer tools in safari to find the CSS selectors for your menu, logo and navbar elements.

    Then dig out your CSS primer for details on how to set z-index levels on the appropriate selectors. You’ll need to set them in your css file – unfortunately, that will vary from theme to theme. If you can’t find it anywhere obvious, drop a support query to Woo themes.

    #92070
    Boone Gorges
    Keymaster

    Cool. Glad it works!

    #92067
    Matthew Holt
    Participant

    This was exactly what I was looking for @boonebgorges. That approach is perfect. As for a “stacked output,” we stacked the output activity as opposed to keeping it inline eg.
    default =
    [user] posted and update in the group [group name]
    stacked=
    User: [user]
    Group: [group name]

    Thank you again.

    #92046
    ericreynolds007
    Participant

    Running Rockettheme Affinity 1.2 on BP 1.2.5.2 via WP 3.0.1

    Paul, I have a similar issue. A registrant will click on the authentication email message and be taken to a white screen. Nothing happens. My server is running 64 MB of memory. Any words of advice?

    Eric

    CR
    Participant

    I posted this in another thread on the topic, but I thought I would post it here too in case it helps anyone. I don’t know if this was anyone else’s issue, but this was my problem and the solution I found.

    SET UP: Running BuddyPress on a single install (not MU) and using the default BuddyPress theme with an assortment of plugins (but removing all the plugins did not help my problem).

    PROBLEM: jcrop function wouldn’t work after an avatar was uploaded either on the registration or edit avatar pages within buddypress. The image and thumbnail would show, but there was no crop box to change what was selected for the thumbnail. Very frustrating.

    SOLUTION: stupidly simple once I finally found it – for some reason there was no link to the external jcrop javascript file appearing in the header of the pages! (This can be checked by viewing the page source of the problem pages via your browser) To fix this I edited the bp-core-cssjs.php file which is inside the bp-core folder inside buddypress. Right after this line:

    `$aspect_ratio = (int) constant( ‘BP_AVATAR_FULL_WIDTH’ ) / (int) constant( ‘BP_AVATAR_FULL_HEIGHT’ ); ?>`

    I added:

    `<script src="/wp-includes/js/jcrop/jquery.Jcrop.js”>`

    And now the crop tool is showing up and everything works perfectly! Note that you may need to change the path to the Jcrop.js file depending on your site setup. Before this I had also downloaded the latest version of jcrop from http://deepliquid.com/content/Jcrop.html and updated it on my site, so I don’t know if that plays in at all or not.

    Again, don’t know if that helps anyone else, it might have been something quirky in my set up maybe, but it did the trick for me so I figured I’d share it just in case.

    Roger Coathup
    Participant

    I don’t know anything about the woo theme aperture, but typically you could solve this sort of problem by setting appropriate z-index levels in your CSS file

    #92034

    In reply to: Theme won’t update

    Roger Coathup
    Participant

    You’ve not provided enough info on your file structure to provide help on this.

    Clearly, from your screen grab, your own theme and not the default is being used, so it’s picking up on those files.

    It might be an idea to list your full folder / file structure and also which amended file isn’t being picked up

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