Skip to:
Content
Pages
Categories
Search
Top
Bottom

Search Results for 'code'

Viewing 25 results - 30,426 through 30,450 (of 32,499 total)
  • Author
    Search Results
  • #55537

    In reply to: Hooks & Filters Docu

    Sam Bauers
    Participant

    Yes, we could set up a wiki – but to avoid (most of) the stated problem it would have to be a technical/developers wiki for now. We should also agree to move it’s contents to any official wiki when it comes along. I assume that an official wiki would use the same software as codex.wordpress.org which appears to be mediawiki, so to be compatible when the time comes we would have to use that too. My personal thought is that it is about time for this, and as the development community grows it is becoming necessary. I could set one up in half an hour (I’d be happy to host it – ad free). And we could work out the taxonomy of it here.

    To be slightly democratic, I say if ten people who we recognise as regulars/developers vote for it here, then we should go ahead. I’m also willing to hear arguments against the idea too.

    Should we vote on it?

    #55075
    fel64
    Member

    To make the fix work, thierry, you have to change the field to 0 and save with the plugin applied. It doesn’t automatically unmark them I think.

    #55074
    thierryyyyyyy
    Participant

    Actually, I said something wrong. New posts I wrote are now considered as bozo. I feel that as soon as a user is considered as bozo, all his posts (and also pasts posts) should be marked as bozo, no ?

    It seems that mdawaffe has lot to do on other projects. No correction after 1 mounth of bug submission, we feel abandonned.

    I used this SQL query to mark all my bozoed posts (from the poster who have id=1, which is usualy the keymaster) to “normal” post :

    UPDATE bb_posts
    SET post_status=0
    WHERE post_status=2 and poster_id=1

    my posts after this “update” has not been bozoed. My profile page still shows a “1”.

    #1769
    smurfdude
    Member

    When i was using author.php for my wordpress profile i used the following code to show the latest blog posts i had made

    <?php if ( have_posts() ) : while ( have_posts() ) : the_post(); ?>

  • ” rel=”bookmark” title=”Permanent Link: <?php the_title(); ?>”>

    <?php the_title(); ?> Posted @ <?php the_time(‘d M Y’); ?>

  • <?php endwhile; else: ?>

    <?php _e(‘Well well, it looks as if this user has no posts. Nevermind!’); ?>

    <?php endif; ?>

    This doesn’t work in my bbpress profile, even though i have the 2 integrated. Any ideas of how i could get it to work?

#55535

In reply to: Hooks & Filters Docu

Null
Member

It’s out of our hands, come sit with us, silent demonstration :D

#56690

In reply to: Plugin: Avatar Upload

Sam Bauers
Participant

I have found that there are many more mime-types out there. Heres a list of extension to mime-type associations that you might want to add. I have built up this list over the last few years of real world use of applications.

'png' => 'image/png'
'png' => 'image/x-png'
'png' => 'application/png'
'png' => 'application/x-png'

'jpg' => 'image/jpeg'
'jpg' => 'image/jpg'
'jpg' => 'image/jp_'
'jpg' => 'image/pjpeg'
'jpg' => 'image/pjpg'
'jpg' => 'image/pipeg'
'jpg' => 'application/jpg'
'jpg' => 'application/x-jpg'

'jpeg' => 'image/jpeg'
'jpeg' => 'image/jpg'
'jpeg' => 'image/jp_'
'jpeg' => 'image/pjpeg'
'jpeg' => 'image/pjpg'
'jpeg' => 'image/pipeg'
'jpeg' => 'application/jpg'
'jpeg' => 'application/x-jpg'

'gif' => 'image/gif'
'gif' => 'image/gi_'

.

Of course, you would have to adapt your code to handle multiple mime types for each extension like so (or similar)…

Line 31:

$allowed_types = array(
'gif' => array(
'gif' => 'image/gif',
'gif' => 'image/gi_'
),
'jpg' => array(
'image/jpeg',
'image/jpg',
'image/jp_',
'image/pjpeg',
'image/pjpg',
'image/pipeg',
'application/jpg',
'application/x-jpg'
),
'png' => array(
'image/png',
'image/x-png',
'application/png',
'application/x-png'
)
);

$allowed_types['jpeg'] = $allowed_types['jpg'];

.

Line 124:

if ($error == 0 && (!in_array($img_type, $allowed_types[$img_ext]) || !in_array($img_ext, $allowed_extns)) ) {

.

Then remove the next conditional block from line 130 to line 134 because that check is now covered in the previous conditional block.

#56689

In reply to: Plugin: Avatar Upload

fel64
Member

Now if only there was a way to display a default image if the user hasn’t uploaded one.

That’s the point of the identicon jobbie, it assigns everyone a unique and easily distinguishable image when they sign up. :)

Louisedade, bb_init is called before bb_head I think. In your avatar.php template file it should also be class="bbcrumb" rather than id="breadcrumb", at least if you want the same styling as everything else.

#56686

In reply to: Plugin: Avatar Upload

smurfdude
Member

W00t! I’ve figured out how to display the avatar next to comments in wordpress. Though the way I have done it i’m worried it’s going to cause problems.

Now if only there was a way to display a default image if the user hasn’t uploaded one. Not that it’s a big deal. Thanks :D

#57026
Null
Member

Plz do cause it doesn’t only effect hyperlinks, but also some hooks wich need to generate links. This one is not working for me:

<?php new_topic(); ?> It should show a link: Add to ad a new topic, but it won’t show…

Excample: http://www.bbportal.org

#56685

In reply to: Plugin: Avatar Upload

LMD
Participant

@Trent and ardentfrost: Thank you!

Trent, feel free to use the upload code for whatever! I stole it from myself anyway… it is adapted from a photo gallery application I wrote.

My previous message hinted at expanding the number of images that can be uploaded, although I only mean it within the context of multiple avatars. But somebody else is welcome to expand the code to a general image/file uploader.

#56684

In reply to: Plugin: Avatar Upload

LMD
Participant

Ok, I’ve now looked at the code and can see how it can be included without needing to branch the plugin too much (and all the maintenance issues involved with that!).

First of all I removed the identicon functions from the bb-avatar-upload.php file and placed them at the bottom of the identicon.php file, to keep them all together.

Secondly, I moved the if($_POST['identicon']){...} code from the avatar-upload.php file to the bottom of identicon.php and made it a function called by the ‘bb_head’ hook (I might eventually do this for the main upload functions too). Note: Is there a pre-head hook that fires before any headers are sent?

function useidenticon()
{
global $user;
//fel identicon
if( $_POST['identicon'] )
{
felapplyidenticon( $user->ID );
}
}

add_action( 'bb_head', 'useidenticon' );

You then only need to supply and maintain two files for the “branch”.

- my-plugins/identicon.php
- my-templates/avatar.php

The avatar.php template is the least likely file to change (it’s been modified slightly since version 0.1).

I’ve made the modifications and zipped them up for you to examine:

Identar Modified (this is minus my files, except the template file)

You will also need the updated version of Avatar Upload: Avatar Upload (version 0.2)

By keeping the Identicon and Avatar parts of the code separate, it should be easier to use Subversion to merge in – or simply replace – changes I make to the trunk code.

Regarding filename storage in the database – there are two reasons for this. The first is that I prefer to store the image dimensions along with the current avatar. The maximum width and height of the avatar is just that, maximums; the actual dimensions could be any size and any aspect ratio within that limit. I then include the height and width attributes in the <img> tag – it’s good practise because the browser makes space for the image when loading the page, instead of shifting everything after the page has loaded.

The second reason is more exciting – future proofing. A future version of this plugin will allow multiple file uploads, allowing users to upload more than one avatar image and select which one to use.

Since releasing version 0.1 of the plugin, I have reduced the number of DB calls in the profile pages and in the avatar-upload.php file by making use of the $user object and calling $user->avatar_file when I need to access the avatar info.

Although, when adding avatars to a user’s posts you still have to do a DB query. If I used your suggested method, it is still going to involve at least one call to the DB, either to get the user_login from the get_post_author_id() (and then grab the avatar file), or to get the avatar itself from the get_post_author_id().

#49619

In reply to: Emoticons For bbPress?

smurfdude
Member

I used this plugin and the row of smilies show beneath the edit form, but they are unclickable. An even when I just type in :) :( etc, they don’t appear in the post.

#56683

In reply to: Plugin: Avatar Upload

smurfdude
Member

Ah i was hoping it would be something simple like inserting a bit of code in the comments page rather than needing a plugin to call stuff from the database. Being rubbish at php that kind of thing just confuses me, so will have to cross my fingers that someone else does it :)

#55531

In reply to: Hooks & Filters Docu

Trent Adams
Member

Fair enough ;)

Trent

#56947
Trent Adams
Member

Sorry, wrong syntax, but it does work with:

https://bbpress.org/forums/rss/

http://onvertigo.com/rss/

fel64, you must think I am crazy today eh as I can’t seem to get anything straight the first time!! ;)

Trent

#57040
Calitoe
Member

I have visited your site, Trent, and I do appreciate the effort, but some of the ones listed don’t work with my installation. The “four” themes that I mentioned in my first post that worked for me were all taken from your site!

I guess now I have a strong reason to develop another skill: “bbPress themes” ;)

Thanks for your answers.

#55529

In reply to: Hooks & Filters Docu

fel64
Member

It’s not actually meant to be instructions, more like a list of hooks and filters Trent. I just included that as an aside for someone starting out.

I’m sure you two have seen some more filters or hooks yourself, so help out and add them please. The point is, rather than waiting around for documentation, start getting some makeshift documentation up ourselves.

post_text is a filter called on the text leaving the database I think, it’s what the emoticons use.

#56677

In reply to: Plugin: Avatar Upload

fel64
Member

Strange – what is the error?

Besides, the code should be this instead I think!

href="<?php bb_get_option( 'uri' ); ?>/avatar-upload.php?id=<?php echo $user->ID; ?>"

Small error in the documentation. If you’re feeling lazy, feel free to hard-code your forum’s URL in instead.

#56676

In reply to: Plugin: Avatar Upload

wmarcy
Member

Arggh, I think my webhost has to upgrade to php5, as I am getting errors in the <a href="avatar-upload.php?id=<?php echo $user->ID; ?>">Upload Avatar</a> include.

#57018
Trent Adams
Member

I see you resolved this. Just for others, I found the login code for WordPress and put that in the sidebar as it doesn’t matter if you login at bbPress or WordPress when you are integrated.

Trent

#57071
Trent Adams
Member

For adding custom profile additions, I use Macwise’s Custom Profile Plugin. You have to edit the actual plugin code to get your profile additions you want, but the ‘extra’ ones in it are ‘number of kids’ and you will figure out how to add more and change that one. As well, if they are marked as ‘1’ they are required and ‘0’ means not required.

As for avatars, you can have your users add their own URL to their avatar using Ardentfrost’s Avatar Plugin but it doesn’t have an interface yet for uploading avatars, just putting in the URL. If most of your users use Gravatar or MyBlogLog, you can try the other Avatar Plugin as it just uses the avatar from those services. There is a new plugin that allows uploading of avatars as well available here

That should get you going!

Trent

#1761

Topic: Plugin: bbPortal 1.2

in forum Plugins
Null
Member

bbPortal 1.2 is ready to download. You can download it here: http://www.bbportal.org/bb-downloads/bbportal1.2.zip

Changelog:

– Made bbPortal compatible with bbPress 8.0 +

– Rewritten most part of the code and fixed some small bugs

– Now using the bb_get_option API instead of creating a new database table

– Moved the plugin options in the admin area from “Content” to “Portal Management” in the main admin menubar

– bbPortal now uses the bbMenu plugin for its menu’s. This plugin is added into the .zip file

– Fixed the form processing bug (thanks to Sam Bauers)

Still to do:

– Fix the hyperlink bug

– Better CSS for the left and rightbars

– Widgets

– Being able to create new pages

– Being able to create new link tabs

_Null

#56673

In reply to: Plugin: Avatar Upload

wmarcy
Member

Fel, want to shoot the code over to me, I would love to integrate it into my bbPress sites.

#1759
Calitoe
Member

Hello,

Sorry if this has been resolved already, but I haven’t found the answer :-/

Is there a directory, viewer, site, post, whatever that lists bbPress themes available round there (similar to WordPress themes viewers-showcases)? I’ve only found like 4 bbPress themes that really work with my current installation (0.8.1) after searching virtually everywhere.

Of course, I can always try and make my own template, but if anyone else is developing and releasing themes, I would like to know and they deserve to be promoted.

Thanks in advance.

#56672

In reply to: Plugin: Avatar Upload

fel64
Member

A really useful plugin, it works very nicely. :) I’ve had my eye on Identicons for a while and wanted to integrate them, the result being that I hacked up Scott’s identicon plugin to only contain the class, wrote a function to make identicons for users and integrated it with your plugin (so, changes made to all three files). It assigns users identicons when they register, and they’re kept in the same way as you do things now. I personally love identicons. :D It’s running now at http://forums.loinhead.net/ – just look in any thread.

I was wondering, is there a reason for storing the metavalues in the database? An alternative is to go to the folder directly and look for all possible variants in turn (considering the standard naming, you’re just checking extensions), saving on the database read and writes – but I’m not sure which would be faster. You’d have to delete the old avatar of course in case you don’t overwrite it because of different filetypes.

There’s a final modification I want to make, purely aesthetic. Any idea how to get the avatar link into one of the profile tabs (like Edit or Favourites)?

Viewing 25 results - 30,426 through 30,450 (of 32,499 total)
Skip to toolbar