MyBB Community Forums

Full Version: Vienna 1.8.7
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
Pages: 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35
(2017-01-16, 05:06 AM)Animus Wrote: [ -> ]Multiquote button does not work

An endless loop is showing and the quotes are not inserted in the quick reply box.

Might need an update for 1.8.10 unless it is a plugin causing it?
Try disable all plugins and see if you still get the problem.
my board version is already 1.8.10. Fresh install.
I try to disable plugins and see what happens.

This doesnt happen when i use the default mybb theme....

Edit: Disabled all plugins, but still multiquote  in Vienna does not work - although it works in default mybb theme...
(2017-01-18, 12:57 AM)Animus Wrote: [ -> ]my board version is already 1.8.10. Fresh install.
I try to disable plugins and see what happens.

This doesnt happen when i use the default mybb theme....

I meant the theme might need updating for 1.8.10.
This happens in many themes i have installed
(2017-01-18, 02:17 AM)Animus Wrote: [ -> ]This happens in many themes i have installed

Then it could be something on your site and not related to any theme.
See if doing this fixes your problem.
https://community.mybb.com/thread-207403.html
for 1.8.90 this must be added in the global.css for the theme your use!!!
try to add this your vienna theme and see of it works?

.deleted_post_hidden {
border-top: 2px solid #ccc;
padding: 15px;
}

.deleted_post_collapsed {
border-top: 3px solid #333;
padding: 15px;
}

.deleted_post_collapsed .show_deleted_post {
margin-top: -15px;
}

.deleted_post_collapsed .show_deleted_post a.button span {
background-position: 0 -400px;
}
Right it's bugging me now to find this and I can't seem to? :/

The edit box is all the down left... I'm trying to find the left & top css but it's not in the postbit_edit template..

[Image: nU7WZBU.png]

[Image: M4jOmGN.png]
Just installed it and I can't reproduce this.
Try reinstall or just copy/paste the dropdown code in global.css from the default theme.
Nevermind fixed the issue by pasting this in headerinclude..

<script>
 
 (function($){
    var current_popup = '';
    var PopupMenu = function(el, close_in_popupmenu)
    {
        var el = $(el);
        var popup = this;
        var popup_menu = $("#" + el.attr('id') + "_popup");
        if(typeof close_in_popupmenu == 'undefined')
        {
            var close_in_popupmenu = true;
        }
        // Opening Popup
        this.open = function(e)
        {
            e.preventDefault();

            if(popup_menu.is(':visible'))
            {
                popup.close();
                return;
            }

            // Setup popup menu
            var offset = el.offset();
            offset.top += el.outerHeight();

            // We only adjust if it goes out of the page (?)
            if((el.offset().left + popup_menu.outerWidth()) > $(window).width())
                var adjust = popup_menu.outerWidth() - el.outerWidth();
            else
                var adjust = 0;

            popup_menu.css({
                position: 'absolute',
            });

            popup_menu.show();

            // Closes the popup if we click outside the button (this doesn't seem to work properly - couldn't find any solutions that actually did - if we click the first item on the menu)
            // Credits: http://stackoverflow.com/questions/1160880/detect-click-outside-element
            $('body, .popup_item').bind('click.close_popup', function(e) {
                if(close_in_popupmenu)
                {
                    if($(e.target).closest("#" + el.attr('id')).length == 0) {
                        popup.close();
                    }
                }
                else
                {
                    if($(e.target).closest("#" + el.attr('id')).length == 0 && $(e.target).closest("#" + el.attr('id') + '_popup').length == 0) {
                        popup.close();
                    }
                }
            });
        }
        this.close = function(e)
        {
            popup_menu.hide();
        }
    }
    $.fn.popupMenu = function(close_in_popupmenu)
    {
        return this.each(function()
        {
            var popup = new PopupMenu(this, close_in_popupmenu);
            $(this).click(popup.open);
        });
    }
})(jQuery);
 
</script>
Beautiful theme. I'm amazed how MyBB themes are so perfect and for free or at low cost as compared to other forum software themes. It's such a neat and decent theme. I'm going to get this for my future forum.
Pages: 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35