We don't have a method to link to the comments itself right now. It's a good idea for a future feature though. Right now, the user would have to click into the article (by title, read more, etc) and then scroll to the comment box.also while on that subject. when i see the text with comment count. it just displays text. what also to add to make it clickable so it would go to them comments.
We fixed the jfbconnect errror:
Go to your_site/modules/mod_sclogin/tmpl/login.php and find:
echo '<script type="text/javascript">
if (typeof jfbcJQuery == "undefined")
jfbcJQuery = jQuery;
jfbcJQuery(document).ready(function() {
jfbcJQuery("#login-modal").appendTo("body");
});
jfbcJQuery("#login-modal").on("show", function() {
jfbcJQuery("#login-modal").css({"margin-left": function() {return -(jfbcJQuery("#login-modal").width() / 2)}})
});
</script>';
=>Edit to:
$doc->addCustomTag('<script type="text/javascript">
if (typeof jfbcJQuery == "undefined")
jfbcJQuery = jQuery;
jfbcJQuery(document).ready(function() {
jfbcJQuery("#login-modal").appendTo("body");
});
jfbcJQuery("#login-modal").on("show", function() {
jfbcJQuery("#login-modal").css({"margin-left": function() {return -(jfbcJQuery("#login-modal").width() / 2)}})
});
</script>');Join our newsletter to get alerts for Joomla releases, tips and tricks and extension updates.
