MyBB Community Forums

Full Version: Need help
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
Hello, So I'm newbie at using Mybb & need help
First, How to add social links to this ? 
[Image: CCTjyLH.png]

Second, When I installed I-Game theme, Edit-bar disappeared & Logo cannot be changed.
[Image: 62QKlpo.png]

Third, My site is hosted on 000website, So When I install the shout-box it says PHP version 5.3 needed, While 000website PHP version is 5.2, Is there any chance to change it? 
Regards,
IceCuBe
cPanel see if you have options where you can change PHP version of some web hosts you can, but i don't think you can do that on 000webhost.
Yeah Ik, I'm asking if there's any chance to edit it on another way, Or there is another shout-box which works on PHP Version 5.2 ?  Confused
for the social dropdown menu, providing your forum url will be useful to check it

for editor issue, ACP >> Themes >> select igame theme >> Edit Theme Properties section >> Editor Style
change the style and check if it works.. if not, please share your headerinclude template (ACP >> Templates >> igames's templates >> Ungrouped Templates >> headerinclude)
(2015-07-06, 07:50 AM)mmadhankumar Wrote: [ -> ]for the social dropdown menu, providing your forum url will be useful to check it

for editor issue, ACP >> Themes >> select igame theme >> Edit Theme Properties section >> Editor Style
change the style and check if it works.. if not, please share your headerinclude  template (ACP >> Templates >> igames's templates >> Ungrouped Templates >> headerinclude)

Url : http://clan-hl.ml/

No didn't work, My headinclude : 
<meta http-equiv="Content-Type" content="text/html; charset={$charset}" />
<meta http-equiv="Content-Script-Type" content="text/javascript" />
<link rel="alternate" type="application/rss+xml" title="{$lang->latest_threads} (RSS 2.0)" href="{$mybb->settings['bburl']}/syndication.php" />
<link rel="alternate" type="application/atom+xml" title="{$lang->latest_threads} (Atom 1.0)" href="{$mybb->settings['bburl']}/syndication.php?type=atom1.0" />
<link href='http://fonts.googleapis.com/css?family=Lato:100,300,400,700,900,100italic,300italic,400italic,700italic,900italic' rel='stylesheet' type='text/css' />
<link href='http://fonts.googleapis.com/css?family=Roboto+Condensed:300italic,400italic,700italic,400,300,700' rel='stylesheet' type='text/css' />
<link href='http://fonts.googleapis.com/css?family=Oswald:400,300,700' rel='stylesheet' type='text/css' />
<link href='//maxcdn.bootstrapcdn.com/font-awesome/4.1.0/css/font-awesome.min.css' rel='stylesheet' type='text/css' />
<link href='http://fonts.googleapis.com/css?family=Source+Sans+Pro:200,300,400,600,700,200italic,400italic,600italic' rel='stylesheet' type='text/css' />
{$stylesheets}
<script type="text/javascript" src="{$mybb->asset_url}/jscripts/jquery.js?ver=1800"></script>
<script type="text/javascript" src="{$mybb->asset_url}/jscripts/jquery.plugins.min.js?ver=1800"></script>
<script type="text/javascript" src="{$mybb->asset_url}/jscripts/general.js?ver=1800"></script>
<script type="text/javascript" src="{$mybb->settings['bburl']}/images/igame/jquery.tipsy.js"></script>
<script type='text/javascript'> 
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});
});
</script>


<script> 
if (navigator.userAgent.toLowerCase().indexOf("chrome") >= 0)
{
    var _interval = window.setInterval(function ()
    {
        var autofills = $('input:-webkit-autofill');
        if (autofills.length > 0)
        {
            window.clearInterval(_interval); // stop polling
            autofills.each(function()
            {
                var clone = $(this).clone(true, true);
                $(this).after(clone).remove();
            });
        }
    }, 20);
}
</script>



<script type="text/javascript">
<!--
	lang.unknown_error = "{$lang->unknown_error}";

	lang.select2_match = "{$lang->select2_match}";
	lang.select2_matches = "{$lang->select2_matches}";
	lang.select2_nomatches = "{$lang->select2_nomatches}";
	lang.select2_inputtooshort_single = "{$lang->select2_inputtooshort_single}";
	lang.select2_inputtooshort_plural = "{$lang->select2_inputtooshort_plural}";
	lang.select2_inputtoolong_single = "{$lang->select2_inputtoolong_single}";
	lang.select2_inputtoolong_plural = "{$lang->select2_inputtoolong_plural}";
	lang.select2_selectiontoobig_single = "{$lang->select2_selectiontoobig_single}";
	lang.select2_selectiontoobig_plural = "{$lang->select2_selectiontoobig_plural}";
	lang.select2_loadmore = "{$lang->select2_loadmore}";
	lang.select2_searching = "{$lang->select2_searching}";

	var cookieDomain = "{$mybb->settings['cookiedomain']}";
	var cookiePath = "{$mybb->settings['cookiepath']}";
	var cookiePrefix = "{$mybb->settings['cookieprefix']}";
	var deleteevent_confirm = "{$lang->deleteevent_confirm}";
	var removeattach_confirm = "{$lang->removeattach_confirm}";
	var loading_text = '{$lang->ajax_loading}';
	var saving_changes = '{$lang->saving_changes}';
	var use_xmlhttprequest = "{$mybb->settings['use_xmlhttprequest']}";
	var my_post_key = "{$mybb->post_code}";
	var rootpath = "{$mybb->settings['bburl']}";
	var imagepath = "{$theme['imgdir']}";
  	var yes_confirm = "{$lang->yes}";
	var no_confirm = "{$lang->no}";
	var MyBBEditor = null;
	var spinner_image = "{$theme['imgdir']}/spinner.gif";
	var spinner = "<img src='" + spinner_image +"' alt='' />";
// -->
</script>
Social Links can be found in your header template under div "id=sociallink_popup" add additional items as required..

and for editor issue, make sure you have uploaded all the jscript files that came with mybb and your theme correctly... seems like few jscripts files are returning 404...
(2015-07-07, 11:10 AM)mmadhankumar Wrote: [ -> ]Social Links can be found in your header template under div "id=sociallink_popup" add additional items as required..

and for editor issue, make sure you have uploaded all the jscript files that came with mybb and your theme correctly... seems like few jscripts files are returning 404...

done, Still didn't work ._. 
worked Big Grin
now what's left is the logo cannot be changed.
(2015-07-06, 02:00 AM)IceCuBe Wrote: [ -> ]Second, When I installed I-Game theme, Edit-bar disappeared & Logo cannot be changed.
(2015-07-08, 11:50 PM)IceCuBe Wrote: [ -> ]now what's left is the logo cannot be changed.

Which logo?
Can you supply a link where the problem can be seen.
(2015-07-09, 08:10 AM)Ad Bakker Wrote: [ -> ]
(2015-07-06, 02:00 AM)IceCuBe Wrote: [ -> ]Second, When I installed I-Game theme, Edit-bar disappeared & Logo cannot be changed.
(2015-07-08, 11:50 PM)IceCuBe Wrote: [ -> ]now what's left is the logo cannot be changed.

Which logo?
Can you supply a link where the problem can be seen.

Solved guys thanks. only what's left is the shoutbox & php 5.4 needed so..