Show-Hide buttons in postbit.

Spartak

Well-known member
Member
Joined
9 yrs. 9 mth. 5 days
Messages
587
Reaction score
8,878
Wallet
0$
Show-Hide buttons in postbit.

Go to: ACP &gt; Templates &amp; Style &gt; Themes &gt; <span style="font-weight: bold;" class="mycode_b">global.css</span><br />
<br />
Add CSS code:<br />
<pre class="block-code line-numbers language-none"><code class="language-none">.buttons {
display: none;
margin-top: 10px;
}</code></pre><br />
Go to: ACP &gt; Templates &amp; Style &gt; Templates &gt; Post Bit Templates &gt; <span style="font-weight: bold;" class="mycode_b">postbit_classic</span><br />
<br />
Find:<br />
<pre class="block-code line-numbers language-none"><code class="language-none">&lt;div class=&quot;postbit_buttons author_buttons float_left&quot;&gt;
{$post['button_email']}{$post['button_pm']}{$post['button_www']}{$post['button_find']}{$post['button_rep']}
&lt;/div&gt;</code></pre><br />
Change to:<br />
<pre class="block-code line-numbers language-none"><code class="language-none">&lt;button onclick=&quot;FunctionButtons_{$post['pid']}()&quot;&gt;Options&lt;/button&gt;
&lt;div class=&quot;buttons&quot; id=&quot;buttons_{$post['pid']}&quot;&gt;
&lt;div class=&quot;postbit_buttons author_buttons float_left&quot;&gt;
{$post['button_email']}{$post['button_pm']}{$post['button_www']}{$post['button_find']}{$post['button_rep']}
&lt;/div&gt;
&lt;/div&gt;</code></pre><br />
At the end, add code:<br />
<pre class="block-code line-numbers language-none"><code class="language-none">&lt;script type=&quot;text/javascript&quot;&gt;
function FunctionButtons_{$post['pid']}() {
var x = document.getElementById(&quot;buttons_{$post['pid']}&quot;);
if (x.style.display === &quot;none&quot;) {
x.style.display = &quot;block&quot;;
  } else {
    x.style.display = &quot;none&quot;;
  }
}
&lt;/script&gt;</code></pre><br />
I only edited the buttons on the left side, or you can add all the variables on the left / right side.<br />
<br />
Demo:<br />
<iframe width="560" height="315" src="//www.youtube-nocookie.com/embed/hQbSN8YqEi4" frameborder="0" allowfullscreen="true"></iframe><br />
<hr class="mycode_hr" />
Sorry to edit the topic 9 times. I had a formatting problem.


Please, Log in or Register to view URLs content!
 
Top Bottom