MyBB Community Forums

Full Version: how to edit stuff in square theme
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
hello i want to change "please ignore this message" and about thatPlease ignore this mess
Hello.
Your message is not very detailed.
If you want to change specific text in your theme.
In your control panel - style templates - templates - Square templates - index templates - index.

. find the text in the codes '' please ignore this message'' and write whatever you want .
be careful to not touch important codes.
I hope i was helpful.
(2020-11-30, 11:49 AM)grouparrow Wrote: [ -> ]Hello.
Your message is not very detailed.
If you want to change specific text in your theme.
In your control panel - style templates - templates -  Square templates - index templates - index.

. find the text in the codes '' please ignore this message'' and write whatever you want .
be careful to not touch important codes.
I hope i was helpful.
 All i see is: <html>
<head>
<title>{$mybb->settings['bbname']}</title>
{$headerinclude}
<script type="text/javascript">
<!--
 lang.no_new_posts = "{$lang->no_new_posts}";
 lang.click_mark_read = "{$lang->click_mark_read}";
// -->
</script>
</head>
<body>
{$header}
{$forums}
<br class="clear" /><br />
{$boardstats}
{$footer
Try footer template if that text is not in index.
You can fin it in header template
<template name="header" version="1822"><![CDATA[<div class="scrolltotop"><i class="fa fa-caret-up fa-2x"></i></div>

<div id="container">

	<div id="header">
		<div class="wrapper">
          	<div class="logo"><div class="logo2"><i class="fa fa-cube fa-fw"></i></div> Square</div>
          	<div class="menu">
              	<ul>
                  	<li><a href="{$mybb->settings['bburl']}/index.php"><i class="fa fa-comments fa-2x"></i><br />Index</a></li>
                  	<li><a href="{$mybb->settings['bburl']}/search.php"><i class="fa fa-search fa-2x"></i><br />Search</a></li>
                  	<li><a href="{$mybb->settings['bburl']}/memberlist.php"><i class="fa fa-users fa-2x"></i><br />Members</a></li>
                  	<li><a href="{$mybb->settings['bburl']}/calendar.php"><i class="fa fa-calendar-o fa-2x"></i><br />Calendar</a></li>
                	<li><a href="{$mybb->settings['bburl']}/misc.php?action=help"><i class="fa fa-question-circle fa-2x"></i><br />Help</a></li>
              	</ul>
          	</div>
		</div>
	</div>
  
	<div id="panel">
  		<div class="wrapper">
			<div class="news">
				<div class="announcements"><i class="fa fa-microphone fa-2x"></i></div>
					<div class="automsj">
						<ul>
                          	<li class="quotes">¡Welcome to Square Theme!</li>
							<li class="quotes">This news are in header template.</li>
                          	<li class="quotes">Please ignore this message.</li>
						</ul>
					</div>
			</div>
        	<div class="usersection">
				{$welcomeblock}
        	</div>
		</div>
	</div>
      
		<div id="content">
			<div class="wrapper">
              	<br />
              	<navigation>
				{$pm_notice}
				{$remote_avatar_notice}
				{$bannedwarning}
				{$bbclosedwarning}
				{$modnotice}
				{$pending_joinrequests}
				{$awaitingusers}
				<br />]]></template>