1
0
mirror of https://github.com/e107inc/e107.git synced 2025-08-04 21:57:51 +02:00

Disabled google-plus share button. Bootstrap 4 button size fix.

This commit is contained in:
Cameron
2019-08-22 14:45:33 -07:00
parent 2e5cf680e3
commit 2f5cfda4d4
2 changed files with 3 additions and 3 deletions

View File

@@ -110,7 +110,7 @@ class faqs_shortcodes extends e_shortcode
if($this->share == true)
{
$text .= "<div class='faq-share'>".$tp->parseTemplate("{SOCIALSHARE: size=xs&type=basic&url=".$url."&title=".$question."&tags=".$this->var['faq_tags']."}",true)."</div>";
$text .= "<div class='faq-share'>".$tp->parseTemplate("{SOCIALSHARE: size=sm&type=basic&url=".$url."&title=".$question."&tags=".$this->var['faq_tags']."}",true)."</div>";
}
$text .= "</div></div>
@@ -132,7 +132,7 @@ class faqs_shortcodes extends e_shortcode
$url = e107::url('faqs','item', $this->var, 'full');
$question = $tp->toHTML($this->var['faq_question'],true,'TITLE');
return $tp->parseTemplate("{SOCIALSHARE: size=xs&type=basic&url=".$url."&title=".$question."&tags=".$this->var['faq_tags']."}",true);
return $tp->parseTemplate("{SOCIALSHARE: size=sm&type=basic&url=".$url."&title=".$question."&tags=".$this->var['faq_tags']."}",true);
}