• 1

Read this first!

We do not monitor these forums. The forum is provided to exchange information and experience with other users ONLY. Forum responses are not guaranteed.

However, please submit a ticket if you have an active subscription and wish to receive support. Our ticketing system is the only way of getting in touch with RSJoomla! and receiving the official RSJoomla! Customer Support.

For more information, the Support Policy is located here.

Thank you!

TOPIC: Label disappears in new Bootstrap layout

Label disappears in new Bootstrap layout 8 years 3 months ago #33703

Hello, in v1.51.2 the labels are disappeared after mouse hover, in the new Bootstrap layout.
It automatically adds {style="display: none;"} in label after hover. Why?
The administrator has disabled public write access.

Label disappears in new Bootstrap layout 8 years 3 months ago #33704

  • alexp
  • alexp's Avatar
  • OFFLINE
  • RSJoomla! Official Staff
  • Posts: 2253
  • Thank you received: 180
We actually tried to replicate this, but without success. Having this into consideration, the issue might be generated by a third party script / CSS.

Can you post a link to the form so we can have a look ?
Please note: my help is not official customer support. To receive your support, submit a ticket by clicking here
Regards,
RSJoomla! Development Team
The administrator has disabled public write access.

Label disappears in new Bootstrap layout 8 years 3 months ago #33711

You can see it here.
The administrator has disabled public write access.

Label disappears in new Bootstrap layout 8 years 3 months ago #33730

  • alexp
  • alexp's Avatar
  • OFFLINE
  • RSJoomla! Official Staff
  • Posts: 2253
  • Thank you received: 180
This looks like a template related issue. You can easily test this by loading the component standard template:

http://37.61.238.4/~poep/index.php/eggrafi-seminariou?tmpl=component

You should contact the template developer for more details on this.

PS: Most likely a JS is in place that performs this for specific CSS classes or elements.
Please note: my help is not official customer support. To receive your support, submit a ticket by clicking here
Regards,
RSJoomla! Development Team
The administrator has disabled public write access.

Label disappears in new Bootstrap layout 7 years 11 months ago #34978

  • ipipunic
  • ipipunic's Avatar
  • OFFLINE
  • Fresh Boarder
  • Posts: 5
Hi info43581, I have same problem as you and I am useing RSForms on helix 3 template. Have you found resolution for this problem?
The administrator has disabled public write access.

Label disappears in new Bootstrap layout 7 years 5 months ago #36004

  • mojtabapordel
  • mojtabapordel's Avatar
  • OFFLINE
  • Fresh Boarder
  • Posts: 15
  • Thank you received: 6
ipipunic wrote:
Hi info43581, I have same problem as you and I am useing RSForms on helix 3 template. Have you found resolution for this problem?

In Helix Template, I inserted this code into Custom JavaScript text box in template administration and the problem solved:
//remove conflict of mootools more show/hide function of element
(function(){
    if(window.MooTools && window.MooTools.More && Element && Element.implement){
 
        var mthide = Element.prototype.hide,
            mtshow = Element.prototype.show,
            mtslide = Element.prototype.slide;
 
        Element.implement({
            show: function(args){
                if(arguments.callee &&
                    arguments.callee.caller &&
                    arguments.callee.caller.toString().indexOf('isPropagationStopped') !== -1){ //jquery mark
                    return this;
                }
 
                return $.isFunction(mtshow) && mtshow.apply(this, args);
            },
 
            hide: function(){
                if(arguments.callee &&
                    arguments.callee.caller &&
                    arguments.callee.caller.toString().indexOf('isPropagationStopped') !== -1){ //jquery mark
                    return this;
                }
 
                return $.isFunction(mthide) && mthide.apply(this, arguments);
            },
 
            slide: function(args){
                if(arguments.callee &&
                    arguments.callee.caller &&
                    arguments.callee.caller.toString().indexOf('isPropagationStopped') !== -1){ //jquery mark
                    return this;
                }
 
                return $.isFunction(mtslide) && mtslide.apply(this, args);
            }
        })
    }
})();
The administrator has disabled public write access.
The following user(s) said Thank You: semmerket, a.amselem, suas, ipipunic

Label disappears in new Bootstrap layout 6 years 7 months ago #37387

Work perfect for me using templaten helix3.

Thanks!!
The administrator has disabled public write access.

Label disappears in new Bootstrap layout 3 years 7 months ago #40579

This worked for me too using the Shape5 Template – Content King.

Just don't forget to add the SCRIPT tags before and after for it to work.
The administrator has disabled public write access.
  • 1

Read this first!

We do not monitor these forums. The forum is provided to exchange information and experience with other users ONLY. Forum responses are not guaranteed.

However, please submit a ticket if you have an active subscription and wish to receive support. Our ticketing system is the only way of getting in touch with RSJoomla! and receiving the official RSJoomla! Customer Support.

For more information, the Support Policy is located here.

Thank you!