MyBB Community Forums

Full Version: MyIPB theme
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
Pages: 1 2 3 4 5 6 7 8 9 10 11 12 13 14

MikeInToshx

Nice, are there notes of what has been changed?
(2016-10-26, 02:49 PM)MikeInToshx Wrote: [ -> ]Nice, are there notes of what has been changed?

I just update only the affected templates of the theme. You can do the same going to ACP > Templates & Styles > Templates > Find Updated Templates

In each template you can select the "Diff Report" option to see what's new and what's not. I've just updated the version of the .js files only, because you see also the default html (and we don't want to change that). Also I've replaced all the jQuery script in modcp_reports template (you can get the code with the diff report option too).

Cheers.

MikeInToshx

I am just curious but, I would like to see some forums that are based on this theme, anyone willing to show it?
( modified )
Nice theme!
I using this theme on my forum Smile
10/10
Is the drop down broken?, in the top right corner where your name is.

EDIT: Fixed it myself, i added this code and got it working
Quote:<script>
jQuery(document) .ready(function() {    
$('.enmenu').on('click', function(){
        $('.ensettings').slideToggle('100');
        return false;
    });
    $('html, body').on('click',function(){
        $('.ensettings').slideUp('100');
    });
    $(".ensettings").click(function(e){
        e.stopPropagation();
    });
});
</script>
(2016-11-20, 05:05 PM)xatpaul Wrote: [ -> ]Is the drop down broken?, in the top right corner where your name is.

EDIT: Fixed it myself, i added this code and got it working
Quote:<script>
jQuery(document) .ready(function() {    
$('.enmenu').on('click', function(){
        $('.ensettings').slideToggle('100');
        return false;
    });
    $('html, body').on('click',function(){
        $('.ensettings').slideUp('100');
    });
    $(".ensettings").click(function(e){
        e.stopPropagation();
    });
});
</script>

It comes with the theme in a separate .js file.
(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
I've maybe missed it - how do my members give rep/neggys in the theme ?
(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.
(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.
Pages: 1 2 3 4 5 6 7 8 9 10 11 12 13 14