Skip to:
Content
Pages
Categories
Search
Top
Bottom

Search Results for 'theme'

Viewing 25 results - 22,676 through 22,700 (of 32,562 total)
  • Author
    Search Results
  • danbpfr
    Participant

    This change is not documented nor annouced in the update post on the BP blog.

    About this “some minor tweaks to the included theme”, nobody knows what to do,exactly to retrieve or edit this gravatar. Except here in this tread, which will be buried in the next 3 days in the deepness of this forum
    I consider this a bit unfair to find such a picture at this strategic place represented by the SWA page without any permission ! This change can also (as already mentionned) compromise some fine tuned template skills. And what to say about breaking long discuted graphical convention ?
    I want at minimum have the possibility to change it, like i can do it for my group avatar for ex.

    In 2009, we could choose to use wavarar, gravatar or monsterID from within the admin.
    Since 1.2.2 or so, Gravatar is gone (silently) from the admin interface. Now he’s back via SWA….

    What do we do(and think) tomorrow, if suddenly Gravatar.com send us an advertising icon instead of a graphic abstract as actually ?
    What the sense of all those thousands of millions of icons flying around the web ?
    Only to have pretty links or to organize some juicy statistics and server consumption ? The non GPL part of the trick i guess…. ;-)

    Josh McKenney
    Participant

    You’re a saint. I understand if you can’t get to it. If it helps at all, see where I drilled down to in the code on page two of this forum topic: https://buddypress.org/community/groups/how-to-and-troubleshooting/forum/topic/group-creation-error-are-you-sure-you-want-to-do-this.

    Also, is this plugin sanctioned as a goto method for creating buddypress themes? I know you are a core developer in Buddypress, but is this a Buddypress initiated plugin or something you saw as a need? I want to make sure i tackled the theming correctly. I was forced to go this way because I needed to use directorypress inside of buddypress and had to meld two designs together instead of starting with a child theme of bp default.

    #96064
    Roger Coathup
    Participant

    ok… two solutions:

    1. the nasty hacky – adding define (‘BP_DISABLE_ADMIN_BAR’, TRUE) in our theme’s functions.php

    Why nasty hacky: well it inserts inline CSS into our footer to hide the adminbar and remove the padding; that’s nastiest enough in itself, but it also uses !important to override anything we actually want to do – even nastier.

    2. the cleaner – adding remove_action( ‘init’, ‘bp_core_add_admin_bar_css’); in our theme’s functions.php

    That does the job!

    Unfortunately, we have to add that in the functions.php of any additional theme we want to use. Let’s get all this presentation stuff in the default theme where it belongs (not in the core)… I’ve said this a lot recently.

    #96060
    Hugo Ashmore
    Participant

    It should be in the theme not in core files but it needs to load at ‘init’ ? or does it? is it that it must load before theme loads

    #96058
    Roger Coathup
    Participant

    follow up – it’s actually being added in the function:

    bp_core_add_admin_bar_css()

    in bp-core-cssjs.php

    I can’t help but think this should be in the default theme, not in the core files.

    #96054
    Matt Edminster
    Participant

    OK, I’m stumped … and I haven’t been able to find anything that matches my issue in the forums. To help diagnose a bit, I took down all plugins I’ve recently updated or added … no effect. Since I recently upgraded to 1.2.6 I made sure that my theme was all patched up … still no effect. The only thing I can think of that may have triggered this was that I attempted to install gpress, ran into errors and uninstalled. Could gpress have screwed with the profile addresses?

    #96053
    Roger Coathup
    Participant

    @chouf1 – yes, I know where the adminbar.css file is. Coda is my friend :)

    The question was, why is adminbar.css being included in other themes (even none child ones) on a multisite network? What’s injecting it, and how do we turn it off.

    e.g. My theme doesn’t explicitly link to adminbar.css, here’s the snippet from the header.php:

    `

    <link rel="stylesheet" type="text/css" media="all" href="” />
    <link rel="pingback" href="” />
    <?php
    if ( is_singular() && get_option( ‘thread_comments’ ) )
    wp_enqueue_script( ‘comment-reply’ );

    wp_head();
    `

    No explicit inclusion of adminbar.css!

    But, here’s what actually gets rendered in the browser:

    `

    `

    The unwanted link to adminbar.css has been injected.

    I assume it must be something in wp-head() doing it – is there a hook to turn it off?

    #96051
    danbpfr
    Participant

    Hi Roger,
    the admin bar is constructed in bp-core/bp-core-adminbar.php
    the css file for this is in bp-themesbp-default_inccssadminbar.css

    notepad++ is my friend

    #96047
    Roger Coathup
    Participant

    @clojel

    You shouldn’t really mod the core files, as they’ll be overwritten if you upgrade. Is there any filter you can hook on to instead as an interim solution?

    Certainly though, this should be added to the trac as a potential bug to be looked at.

    We have the same problem with child themes in secondary sites – we’ve turned off the admin bar, we don’t have any admin bar css being included in our child theme, but still it pulls in admin bar css code from bp-default and inserts the unwanted padding.

    [As an aside: does anyone know where the code is that’s injecting the admin bar css include into the header of child themes? Is it a hook on wp-footer?]

    #96045

    In reply to: Who Owns BuddyDev ?

    Anonymous User 96400
    Inactive

    @whitbyglennk
    There is no WP ethos of free software for all. With all the licensing discussions going on, most people have completely misunderstood what it was all about. Free (as in the GPL software license) only means that any further development of GPL software has to be published under the same license (if the software is being released) and that, once you have the software, you can do whatever you please with it. Free does not mean, though, that you can get access to this software without paying. It’s perfectly ok to charge for GPL software.

    Most developers, who charge for a plugin or premium themes, still give back to the community by answering questions in forums or uploading other plugins and themes to the WP repository. For some plugins 50+ hours have been spent on development. That’s a lot of money and time right there, but people still expect not to pay anything.

    I guess we’ll be seeing more and more paid plugins and themes crop up over the next year. It’s not a bad thing, it’ll give users more choice (there usually is a free alternative around somewhere) and if someone buys a plugin/theme, then afterwards you can expect great support, which does not always happen with a free plugin.

    Just me 2 cents :)

    #96040
    danbpfr
    Participant

    bp-default/functions.php:252
    define( 'HEADER_IMAGE_HEIGHT', 125 );
    and css tweaked accordingly….

    Don’t forget to make these change from within a child theme

    #96038
    Roger Coathup
    Participant

    @hnla – I think I’d class it as a bug, as it breaks child themes on existing sites
    … or perhaps just a deprecated / implementation changed without clear warning mistake

    #96037

    In reply to: Who Owns BuddyDev ?

    Roger Coathup
    Participant

    Glenn… there is nothing new in charging for premium themes, it’s not a BuddyPress phenomenon… there are hundreds of people selling premium themes for WordPress (e.g. WooThemes, ThemeForest, …), and even more sites that are completely bespoke developments costing many thousands of pounds.

    If you don’t like what people are providing you for free, you don’t have to use their work. If you don’t like the price of their paid for work, don’t buy them. You can take the bp-default theme for free and extend it as you want.

    As I explained in one of your other threads about availability of themes, BuddyPress is extremely difficult to create distinctive generic themes for – it’s no wonder that some people charge a few pounds for their themes.

    #96036
    Hugo Ashmore
    Participant

    Please check over yesterdays threads as this issue has been covered in two threads and you’ll find the answers there. t’s not a bug but you will need to make some changes to your child theme files.

    #96034

    In reply to: Who Owns BuddyDev ?

    Glenn Kilpatrick
    Participant

    I spent all day yesterday installing this theme and making it look nice on the home page, I then browsed around to find that inside the theme there is a lack of functionality such as no activity streams in group, poor css making pages look messy, no new topic buttons in the forums. Then you start to look for assistance and its hard to get, then you find the theme author offers a premium version of the theme and a membership group with ongoing subscriptions. If I had known this before I started I wouldnt have bothered.

    Is it just me or are others finding it a little annoying that buddypress seems to be not in the keeping of the wordpress ethos of free software for all. Everyone seems to want to make money from it, which is fair enough at the right price, but monthly subscriptions have you by the balls.

    Is there anyone out there who makes a nice free theme or a premium theme with upgrades at one off fee or an acceptable yearly fee ?

    #96029
    Roger Coathup
    Participant

    Yes, there is a BuddyPress primary site … where you’d run a BuddyPress specific theme, that lets you view members directories, group directories, member profiles, etc.

    #96025
    danbpfr
    Participant

    @modemlooper. Your theme is realy OK. It was a mistake on my side. Every thing is well now.

    Tammie Lister
    Moderator

    If you do all those changes you should be on track but it’s hard to say really until do it on the theme if that makes sense? Just with the CSS changes remember CSS is cascading and some themes use !important to over-ride this. It’s best to just in testing add your new CSS to the last CSS file called to make sure it has a fighting chance (key term in CSS is cascading). Also consider the theme may have it’s own styling different from the default theme even if uses the basic structure of it.

    Roger Coathup
    Participant

    It’s not a question of whether you like it or not, the problem is that it breaks the design of existing sites – because their themes are using bp-default as a ‘much touted future proof’ parent theme.

    You expect bug and compatibility fixes in a theme upgrade, not presentation and design changes.

    If you’re changing the actual design, you’d expect that in a new theme. Much as you’ll expect WordPress to release 2011, and not simply overwrite 2010 with something different that changes the look of every child theme based on it.

    #96010

    In reply to: Add Author Bio to Post

    Round World Travels
    Participant

    @ nahummadrid This worked for me so thanks, I’m still sorting through it to dig out some stuff I don’t want but it is working and pulling the Bio.

    Thank you both of you. Boone I tried your solution and it didn’t work. I’m not sure why. I tried it two ways, using ‘Bio’ and then ’19’ which was the field Id. For some reason it don’t work with my theme. I am looking over the link you gave me thought to see if I can truncate the data.

    Thanks

    #96007
    modemlooper
    Moderator

    That child theme should be ok with 1.2.6 it’s just a couple page templates.

    #96006
    Avi M
    Participant

    The theme authors were notified and have an update out already!

    anindyaray
    Member

    Yes I am really a novice … :)
    Thank to @karmatosed and @DJPaul for you suggestion …
    I use the theme named Blogs-Mu … and my subscription to the theme source(WPMU DEV) has expired …
    :D , and I’m a bit short of cash :D
    So , I’m out of luck now ..
    But the link you provided is very help full …
    Thanks again, both of you

    Let me ask a question : I have checked the trac link provided by @DJPaul and found most similarity with old codes for bp default theme and Blogs-mu theme . Will making changes, according to the trac, suffice the need ? or is there anything extra that should be done ?

    Please help ? This is a question of life :D

    Boone Gorges
    Keymaster

    If everyone’s going to be friends with everyone else, I’d suggest just turning the Friends component off since it won’t be doing anything interesting. Dashboard > BuddyPress > Component Setup

    As for groups, you have a few options. If you make all groups public, then everyone will have access to everything. And if you hide all of the “my groups” and “join this group” buttons in the theme, people will never know (or care!) whether they’re a part of groups. They’ll just be auto-joined if they choose to post on the forums. A different method is to modify something like this: https://buddypress.org/community/groups/auto-join-groups/

    Roger Coathup
    Participant

    @djpaul

    Can we happily run the 1.2.5.2 default theme (and children thereof) on the 1.2.6 core? Thereby allowing all our existing child themes to continue to behave the same without any mods at all?

    And, as a corollary to this… is there an install option for 1.2.6 that won’t overwrite the 1.2.5.2 theme (other than copying it somewhere pre-install, and then re-instating)?

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