XF 1.4 Problem with "SignupButton" on thread pages

CNK

Active member
Hello, I added sidebar to thread_view template (https://xenforo.com/community/threads/how-to-add-a-sidebar-to-any-forum-page.7860/) but if user is not registered signup button is hidden (after loading the page).

E.g.: https://forum.gsmx.pl/tematy/zalecane-hostingi-obrazkow-i-zdjec.61312/#post-272727
upload_2017-5-16_11-11-51.webp

Could you tell me why this button is hidden and how I can disable hiding it? :)



Edit:

Ok, I found this code in quick-reply.js:

Code:
! function(e, o, a) {
    e(o).on("ready QuickReplyComplete XFOverlay XFAjaxSuccess", function(o) {
        if (!a.visitor.user_id) {
            var r = e('.thread_view label[for="LoginControl"]');
            r.length && r.xfHide();
            var i = e("#QuickReply"),
                n = i.find(".bdSocialShare_Facebook"),
                d = i.find(".bdSocialShare_Twitter");
            n.length && n.xfHide(), d.length && d.xfHide();
            var l = e(".QRG_Overlay"),
                t = o.ajaxData || {};
            if (t.error && t.error == a.phrases.error_captcha) f();
            else if (l.length) {
                var c = l.find("input[type=reset]");
                c.on("click", function() {
                    f()
                })
            }
            var f = function() {
                window.ReCaptcha && window.Recaptcha.reload(), window.ACPuzzle && window.ACPuzzle.reload(), window.s_s_c_onload && window.s_s_c_onload.reload()
            }
        }
    })
}(jQuery, document, XenForo);

widget: [Nobita] Quick Reply For Guest (Pro)
 

Attachments

  • upload_2017-5-16_11-11-47.webp
    upload_2017-5-16_11-11-47.webp
    66.5 KB · Views: 1
Last edited:
Top Bottom