In the never-ending quest to speed up load times: http://yellowlab.tools. It always makes me both happy and sad when I look at tools like these - I find so much more that needs work. (sighs with a smile)
Probably of limited value but thought I'd mention it just in case it gave anyone other ideas: 46 useful PHP code snippets.
Not a critical bug but on line 1398 in Hotaru.php, I believe it should be: Code: echo "<script type='text/javascript' src='" . $this->bootstrapJsUri . "' ></script>"; There's an unnecessary type for css in there currently and you don't need the closing tag.
Am looking at the current changes that have been made since the last version and at the moment it only really adds up to a minor version update. Have done some work on CSRF recently as well as the changes mentioned in this thread. What do people think is an important feature that might be included for a v1.8 release ?
The Big List of Naughty Strings is a list of strings which have a high probability of causing issues when used as user-input data. I ran through a bunch of them on my customized build and didn't see any problems but, if someone is good with testing tools like Selenium, it might be useful to create a test script that grabs each from the JSON file and tests each one as a post title, a post description, a tag, a comment, etc.
Profile menus posts comments Ranking These three contents are showing main page of the site. Not showing inside of the profile page.
Based on the limited information you provided, my guess is that you need to modify other templates to include the menus.
No when i click the comments button in profile page, comments are listed in site main page. how can i show that near by profile sidebar menu like Inbox and outbox etc.
I think what you're asking is to have the user_navigation on the left and the all_comments activity on the right, correct? If so, sadly, there isn't an easy way to do this for all plugins at once as each plugin lays out the page differently. For comments, replace line 772 of /plugins/comments/comments.php with: Code: if (isset($pagedResults->items)) { $h->template('users_navigation', 'users'); echo '<div class="col-md-9">'; ...and add this on line 780: Code: echo '</div>'; For posts, replace line 438 of /plugins/bookmarking/bookmarking.php with: Code: if (isset($h->vars['pagedResults']->items)) { if ($h->subPage == 'user') { $h->template('users_navigation', 'users'); echo '<div class="col-md-9">'; } ...and replace line 440 with: Code: echo $h->pageBar($h->vars['pagedResults']); if ($h->subPage == 'user') { echo '</div>'; } I'm not sure which plugin generates "ranking" so you'll need to let me know before I can figure out where to modify code.
letter/initial avatar like gmail http://uttesh.com/ngletteravatar/ https://github.com/tequilarapido/letter-avatar
Try to do this also. User message, comments, votes and flag notification on the navigation bar like fb notification. User online offline status like green dot or something else. Small device Categories change to drop down menu. Tab drop nice plugin http://www.eyecon.ro/bootstrap-tabdrop/ Maybe these scripts are useful for future hotaru project validation http://reactiveraven.github.io/jqBootstrapValidation/ complexyfy https://danpalmer.me/jquery-complexify/ File upload http://blueimp.github.io/jQuery-File-Upload/ Tags http://maxwells.github.io/bootstrap-tags.html Auto complete. http://sandglaz.github.io/bootstrap-tagautocomplete/ xeditable http://vitalets.github.io/x-editable/ Sticky js http://stickyjs.com/ responsive text http://fittextjs.com/ Chart http://www.chartjs.org/
some ideas 1. Remove the sidebar in Login, register and profile page . 2. Bookmarking_post page. move who voted and related post to sidebar or use bootstrap nav tabs. 3. Deprecate the domain result plugin. 4. Add initial.js 5. When we use Submit light plugin, we need post preview in submit 2 page. 6. Need to resize and compress the profile image.
pure css modal https://codepen.io/LFeh/pen/oEula/ switch https://codepen.io/mallendeo/pen/eLIiG tabs https://codepen.io/niklakhani/pen/yyapdR placeholder https://codepen.io/sivan/pen/alKwf
pure css 30 plugins without js and jquery. https://speckyboy.com/2010/04/26/30-pure-css-alternatives-to-javascript/