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
(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']}
This theme is really great, however one small issue (presumably to do with the language file) is that the board statistics layout across all themes is gone, it's just listed like:

4,797
Total Threads200,733
Total Posts
374

Any ideas what's causing it ?
(2016-11-23, 10:25 AM)talkhearts Wrote: [ -> ]This theme is really great, however one small issue (presumably to do with the language file) is that the board statistics layout across all themes is gone, it's just listed like:

4,797
Total Threads200,733
Total Posts
374

Any ideas what's causing it ?

There's a file called "List of templates with custom text.txt" inside the .zip file of the theme. If you open it you can read at the end:

Quote:There's also custom text and html in index.lang.php file, located in INC > Languages > English, used to style the board stats.

Is not an issue, I've edited the index.lang.php file to remove the text and use only the variables there, like IPB 4.x. If you don't like it, replace index.lang.php file with the default one of MyBB 1.8.x.
That's it - sorted, thanks !

Brilliant theme though - I love it.
(2016-11-23, 11:31 AM)talkhearts Wrote: [ -> ]That's it - sorted, thanks !

Brilliant theme though - I love it.

Well I just made it similar to the IPB 4.x default theme so... there's not much to thanks of but I'll appreciate it though.
Hello,

I need your help...with header
https://gyazo.com/bd183181ecdfa415c09a7efedbacf934 - i access forum
https://gyazo.com/19c2b389214ccc74a5dd12e0a7d7ef85 - now i access Shop

I want to appear white(background) when accessing Shop/Awards/etc
any guidance on how to add a background image to this theme?
Also, the avatar image is showing broken at the top right beside username... any fix?
(2016-12-01, 12:12 AM)AlexanderPep Wrote: [ -> ]Hello,

I need your help...with header
https://gyazo.com/bd183181ecdfa415c09a7efedbacf934 - i access forum
https://gyazo.com/19c2b389214ccc74a5dd12e0a7d7ef85 - now i access Shop

I want to appear white(background) when accessing Shop/Awards/etc

Go to the HTML template of the shop and replace <body> tag with this:

<body id="forum">

(2016-12-01, 08:06 PM)Sinnocent Wrote: [ -> ]any guidance on how to add a background image to this theme?
Also, the avatar image is showing broken at the top right beside username... any fix?

ACP > Templates & Styles > Styles > MyIPB > open Global.css

body {
	width: 100%;
	min-width: 100%;
	max-width: 100%;
	display: inline-table;
	
	background: #ebeef2;
	color: #262626;
	text-align: center;
	line-height: 1.4;
	margin: 0;
	font-family: 'Hind', sans-serif;
	font-size: 13px;
	overflow-y: scroll;
}

Change background property with your image, something like this:

body {
	background: url(images/myipb/yourimage.extension) no-repeat center;
    background-size: 100% 100%;
}

Don't know for the avatar, the last time I check it works perfectly. Check if you have uploaded the default_avatar image into images/MyIPB folder.
Thanks for the reply, about the avatar problem. Its when no one has an avatar set it looks like this:
[Image: b3af3770bf5348e1b869dd8bb08709fd.png]
How can install this https://community.mybb.com/thread-205046.html ?
Only IPB Theme has many problems...
Pages: 1 2 3 4 5 6 7 8 9 10 11 12 13 14