2016-11-21, 06:46 PM
(2016-11-21, 05:41 PM)talkhearts Wrote: [ -> ](2016-11-21, 05:00 PM)eNvy Wrote: [ -> ](2016-11-21, 08:56 AM)xatpaul Wrote: [ -> ](2016-11-21, 04:26 AM)eNvy Wrote: [ -> ]It comes with the theme in a separate .js file.
oh it does? I never installed it, my friend did and helped him on some stuff and this was one of the issues
Inside the theme images folder there's a new folder called "Custom", there you have the tipsy.js library and also the jQuery.js library which contains this:
/** * Author: eNvy * Ver. 1.0. * Description: All the custom jQuery scripts. * Credits: Jason (Tipsy), Envira (Dropdown menu). * ATTENTION: DO NOT MODIFY OR DELETE ANYTHING HERE IF YOU DON'T KNOW ABOUT JQUERY AND HOW IT WORKS. */ /* Tipsy - Start */ jQuery(function() { jQuery("a").tipsy({gravity: jQuery.fn.tipsy.autoNS}); jQuery("title").tipsy({gravity: jQuery.fn.tipsy.autoNS}); jQuery("img").tipsy({gravity: jQuery.fn.tipsy.autoNS}); jQuery("i").tipsy({gravity: jQuery.fn.tipsy.autoNS}); jQuery("span").tipsy({gravity: jQuery.fn.tipsy.autoNS}); jQuery("div").tipsy({gravity: jQuery.fn.tipsy.autoNS}); jQuery("label").tipsy({gravity: jQuery.fn.tipsy.autoNS}); jQuery("input").tipsy({gravity: jQuery.fn.tipsy.autoNS}); }); /* Tipsy - End */ /* Dropdown menu - Start */ jQuery(document) .ready(function() { $('.enmenu').on('click', function(){ $('.ensettings').show(); return false; }); $('html, body').on('click',function(){ $('.ensettings').hide(); }); $(".ensettings").click(function(e){ e.stopPropagation(); }); }); /* Dropdown menu - End */
(2016-11-21, 04:28 PM)talkhearts Wrote: [ -> ]I've maybe missed it - how do my members give rep/neggys in the theme ?
In the postbit, down below the username you have a plus symbol and the amount of the user reputation. If you click there it goes to the reputation page where you can see all the reputations of the user and also you can rate the user clicking on the "Rate" button in the upper right corner.
Yep - found that, however that's for Rating a User and not Rating the Post.
javascript:MyBB.reputation(xx,xxxxxx); is missing from the postbit.
Oh I get it.
Yes, not all the things from Mybb are there, and that's because IPBoard 4.X default style doesn't have that. You can add the missing button if you want.
Just go to ACP > Templates & Styles > Templates > MyIPB Templates > Post Bit Templates > open postbit_classic
Search this:
<div class="button_container">
{$post['button_multiquote']}{$post['button_quote']}{$post['button_edit']}{$post['button_quickdelete']}{$post['button_quickrestore']}{$post['button_reply_pm']}{$post['button_replyall_pm']}{$post['button_forward_pm']}{$post['button_delete_pm']}{$post['button_warn']}{$post['button_purgespammer']}
</div>
And add:
{$post['button_rep']}