Title: eegg's Replies | WordPress.org

---

# eegg

  [  ](https://wordpress.org/support/users/eegg/)

 *   [Profile](https://wordpress.org/support/users/eegg/)
 *   [Topics Started](https://wordpress.org/support/users/eegg/topics/)
 *   [Replies Created](https://wordpress.org/support/users/eegg/replies/)
 *   [Reviews Written](https://wordpress.org/support/users/eegg/reviews/)
 *   [Topics Replied To](https://wordpress.org/support/users/eegg/replied-to/)
 *   [Engagements](https://wordpress.org/support/users/eegg/engagements/)
 *   [Favorites](https://wordpress.org/support/users/eegg/favorites/)

 Search replies:

## Forum Replies Created

Viewing 6 replies - 1 through 6 (of 6 total)

 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[Simplelightbox] Arrows going in the wrong direction?](https://wordpress.org/support/topic/arrows-going-in-the-wrong-direction/)
 *  [eegg](https://wordpress.org/support/users/eegg/)
 * (@eegg)
 * [3 years, 1 month ago](https://wordpress.org/support/topic/arrows-going-in-the-wrong-direction/#post-16657977)
 * Yes, I can confirm this misbehavior.
 * for the buttons i have a quick fix:
 *     ```wp-block-code
       change line:5356 in file "simple-lightbox.legacy.min.js?ver=2.10.0" to this:
   
       return !e.currentTarget.tagName.match(/button/i) || (e.preventDefault(), r.controlCoordinates.swipeDiff = 0, void r.loadImage(e.currentTarget.classList.contains('sl-next') ? - 1 : 1))
       ```
   
 * but swiping is not fixed!
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[Simplelightbox] Image/Figcaption caption not working](https://wordpress.org/support/topic/image-figcaption-caption-not-working/)
 *  [eegg](https://wordpress.org/support/users/eegg/)
 * (@eegg)
 * [3 years, 1 month ago](https://wordpress.org/support/topic/image-figcaption-caption-not-working/#post-16657803)
 * Hi, thank you for this great plugin! 
   I really like it but sadly, your fix for
   the captions is not working.
 * I tried different approaches:
 * the Caption-Type settings is always
 *     ```wp-block-code
       text
       ```
   
 * These are inputs i tried for the Caption-Selector setting:
 *     ```wp-block-code
       '+ figcaption'
       ```
   
 * without quotes it also throws an error (Element.querySelector: ‘+ figcaption’
   is not a valid selector) :
 *     ```wp-block-code
       + figcaption 
       ```
   
 * if i just use
 *     ```wp-block-code
       figcaption
       ```
   
 * it does not throw an error, but it won’t show the caption.
 * Thank you for your support!
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[Ultimate Addons for Elementor] close mobile hamburger menu on click outside](https://wordpress.org/support/topic/close-mobile-hamburger-menu-on-click-outside/)
 *  Thread Starter [eegg](https://wordpress.org/support/users/eegg/)
 * (@eegg)
 * [5 years, 9 months ago](https://wordpress.org/support/topic/close-mobile-hamburger-menu-on-click-outside/#post-13381253)
 * you run this script before jquery is being imported. thats why it works works
   only when you’re logged in.
 * Please try this:
 *     ```
       wp_enqueue_script('jquery');
   
       function custom_script() {
       	?>
       		<script type="text/javascript">
        			jQuery(document).ready(function($) {			
   
       				$( document ).click( function( e ){
   
       					if( 'fas fa-align-justify' != $( e.target ).attr( 'class') ) {
   
       						var id = $( '.elementor-widget-navigation-menu' ).data( 'id' );
   
       						if( window.matchMedia( "( max-width: 767px )" ).matches ){
   
       							var $this = $( '.elementor-element-' + id + ' .hfe-nav-menu-icon' );
       							var $selector = $this.parent().next();
   
       							if ( $this.parent().hasClass( 'hfe-active-menu' ) ) {
   
       								var layout = $( '.elementor-element-' + id + ' .hfe-nav-menu' ).data( 'layout' );
       								var full_width = $selector.data( 'full-width' );
       								var toggle_icon = $( '.elementor-element-' + id + ' nav' ).data( 'toggle-icon' );
   
       								$( '.elementor-element-' + id).find( '.hfe-nav-menu-icon' ).html( toggle_icon );
   
       								$this.parent().removeClass( 'hfe-active-menu' );
       								$this.parent().attr( 'aria-expanded', 'false' );
   
       								if ( 'yes' == full_width ){
   
       									$this.removeClass( 'hfe-active-menu-full-width' );
   
       									$selector.css( 'width', 'auto' );
       									$selector.css( 'left', '0' );
       									$selector.css( 'z-index', '0' );
       								}				
       							} 		
       						}
       					}
       				});	
       			});
       		</script>
       	<?php
       }
       add_action( 'wp_footer', 'custom_script' );
       ```
   
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[Ultimate Addons for Elementor] close mobile hamburger menu on click outside](https://wordpress.org/support/topic/close-mobile-hamburger-menu-on-click-outside/)
 *  Thread Starter [eegg](https://wordpress.org/support/users/eegg/)
 * (@eegg)
 * [5 years, 9 months ago](https://wordpress.org/support/topic/close-mobile-hamburger-menu-on-click-outside/#post-13361982)
 * Hi, i made this script to solve this problem:
 *     ```
       jQuery(document).ready(function( $ ){
           $(".menu-item").click(function() {  //use a class, since your ID gets mangled
           $(".hfe-nav-menu__layout-vertical").toggleClass("menu-is-active");      //add the class to the clicked element
           $(".hfe-nav-menu-icon i").removeClass("fa-minus").addClass("fa-bars");
           $(".hfe-nav-menu__toggle").toggleClass("hfe-active-menu hfe-active-menu-full-width"); 
           $(".hfe-nav-menu__toggle").attr("aria-expanded","false");
         });
       });
       ```
   
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[HT Mega Addons for Elementor - Elementor Widgets & Template Builder] missing toolbar](https://wordpress.org/support/topic/missing-toolbar-7/)
 *  Thread Starter [eegg](https://wordpress.org/support/users/eegg/)
 * (@eegg)
 * [6 years, 2 months ago](https://wordpress.org/support/topic/missing-toolbar-7/#post-12610338)
 * after deleting cache, it still won’t show up.
    -  This reply was modified 6 years, 2 months ago by [eegg](https://wordpress.org/support/users/eegg/).
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[Swift Performance Lite] wrong cache-path – swift is not finding its cache ERR_ABORTED 404](https://wordpress.org/support/topic/swift-is-not-finding-its-cache-err_aborted-404/)
 *  Thread Starter [eegg](https://wordpress.org/support/users/eegg/)
 * (@eegg)
 * [7 years, 3 months ago](https://wordpress.org/support/topic/swift-is-not-finding-its-cache-err_aborted-404/#post-11280523)
 * I think this problem is connected with merge scripts and styles options

Viewing 6 replies - 1 through 6 (of 6 total)