The MyBB Humanization Project - Printable Version +- MyBB Community Forums (https://community.mybb.com) +-- Forum: Extensions (https://community.mybb.com/forum-201.html) +--- Forum: Themes (https://community.mybb.com/forum-103.html) +---- Forum: Theme Development (https://community.mybb.com/forum-105.html) +---- Thread: The MyBB Humanization Project (/thread-122216.html) |
RE: The MyBB Humanization Project - Johnny S - 2013-03-15 There is no download link.This isn't a theme. RE: The MyBB Humanization Project - brad-t - 2013-03-15 (2013-03-15, 06:50 PM)Elitis Wrote: Whats the download link? Thanks, you made my day. Will have some new stuff to add to this thread soon. RE: The MyBB Humanization Project - Breixo - 2013-04-06 Firstly, thanks Brad for sharing your work. It's a really nice project that can encourage more visitors to become members and participate. I'm trying to implement some of your changes, but I'm no expert at all. (2012-10-05, 11:41 PM)brad-t Wrote: It's adapted from the Block & Blue theme. Originally the theme is set up to call the login window when the login ID link is clicked, but I edited the jQuery to also open it on the click of a specific class. Then I changed all guest links using template conditionals to the class needed to call the menu. It took longer than expected, altogether. hahaI was looking to solve this issue, to get the Block&Blue login window after a guest click on "new post" or "new reply". I though it was easier but after reading your message I've no idea how to do it. Can you share the details or make a tutorial? (2012-11-20, 03:49 PM)brad-t Wrote: That said, for people who don't have the ability to code their own themes from scratch, I plan to release a skeleton theme in 2013 that will take on a lot of the functionality presented here. It will be very minimally styled, as the intent would be to customize it while retaining the functionality and templates that make it useful.Loooking fordward for it! Will you wait until 1.8 release? Thanks for your great support! Auto-reply: as an alternative I edited "error_nopermission" in Block & Blue Templates to make it more "Human" friendly RE: The MyBB Humanization Project - brad-t - 2013-04-06 You need to change the javascript in theme-js.js to open with a class instead of an ID so you can have multiple instances on the page. Then just something like this ... forumdisplay_newthread
RE: The MyBB Humanization Project - Breixo - 2013-04-12 Thanks! I'll try to play around with that, don't feel confident modifying a .js Great job! PS: looking forward for your future theme release RE: The MyBB Humanization Project - Tecca - 2013-04-16 Would you mind sharing how you used CSS to make your forumdisplay td's clickable without javascript, Brad? I have a rough idea of how to go about it, but if you're willing to share it then I'd rather save a little time. RE: The MyBB Humanization Project - Krytic - 2013-04-16 Tecca, AFAIK you do this:
Not tried in MyBB though. RE: The MyBB Humanization Project - Eric - 2013-04-16 Edit: hm, I might have read that wrong. x.x Edit2: Yep xD RE: The MyBB Humanization Project - brad-t - 2013-04-16 (2013-04-16, 03:17 AM)Tecca Wrote: Would you mind sharing how you used CSS to make your forumdisplay td's clickable without javascript, Brad? I have a rough idea of how to go about it, but if you're willing to share it then I'd rather save a little time. The key is this:
Then you set the position of all other link elements in the td to relative. RE: The MyBB Humanization Project - Tecca - 2013-04-16 Awesome, thank you. I'll do this when I get the chance (working on a new theme but currently have no plans or niche for it, so I've been a little slow). |