Recent content by KidCactus

  1. K

    XF 1.2 How do I set a fixed width?

    Is this expected behavior? I disable the Responsive Design, and set the Non-Responsive Minimum Width to 940px, but it rescales the page upwards anyway. I want a static forum width, otherwise it screws up my header.
  2. K

    QuoteME !

    Do I have to do anything special to get this to work on iPad?
  3. K

    Users recent activity in database

    Ok, then I know, thanks. :)
  4. K

    Users recent activity in database

    Yeah, I know that only contains the last week, and the avatar_date field says 0. I guess it does that if an avatar has been removed but no new one is set?
  5. K

    Users recent activity in database

    Where in the database is it logged when a user changes their avatar?
  6. K

    XF 1.1 Remove [IMG] & [media] BBCodes from quoted post

    Of course this is just a workaround, that won't be a suitable solution for everyone, but for me it works just fine. I'm just sick and tired of my users hitting Reply by default and never ever edit the quote. My forum is tiny, so resource management isn't an issue. Me getting annoying is, though...
  7. K

    XF 1.1 Remove [IMG] & [media] BBCodes from quoted post

    Finally found a decent solution regarding images in quotes. Add this to your EXTRA.css, and quoted images won't be visible (they will still be in the post, though): /* Block images from quotes*/ .bbCodeBlock .bbCodeImage { display: none !important; } Adapted from this...
  8. K

    [bd] Widget Framework

    For some reason, I can't seem to change the text "Today is user's birthday.". I've edited the phrases that seem to correspond with this text, but I still get it in English: Isn't this a phrase? If I search for it now I don't find anything matching it. Any ideas? Edit: Never mind...
  9. K

    [WGBB] Daily Post Count

    Thanks, got it! Just looking at the folder structure add-on package I would assume it would go in the root folder, though.
  10. K

    [WGBB] Daily Post Count

    To which folder should this be uploaded?
  11. K

    XF 1.1 Remove [IMG] & [media] BBCodes from quoted post

    That is exactly what I want too.
  12. K

    XF 1.1 Remove [IMG] & [media] BBCodes from quoted post

    Well, replacing this in Post.php: . trim(XenForo_Helper_String::stripQuotes($post['message'], $maxQuoteDepth)) with: . trim(XenForo_Helper_String::bbCodeStrip($post['message'], $maxQuoteDepth)) kind of works, but it leaves a [ img ] or [ media ] opening tag in the quoted post, and...
  13. K

    XF 1.1 Remove [IMG] & [media] BBCodes from quoted post

    I've also changed Reply to Quote, or rather Citera in Swedish, but that still doesn't stop my users from constantly clicking it and re-posting images and media. This gets very annoying, especially when the same Youtube video appears in several posts in a row. But that "Strips BB code from a...
  14. K

    XF 1.1 Remove [IMG] & [media] BBCodes from quoted post

    Has anyone gotten something like this to work yet? Could this be used in some way, found in String.php? /** * Strips BB code from a string * * @param string $string * @param boolean $stripQuote If true, contents from within quote tags are stripped * * @return string...
Top Bottom