Forum Replies Created

Viewing 12 posts - 31 through 42 (of 42 total)
  • Author
    Posts
  • in reply to: Bug in Site Name Display in Emails #1106349

    I think you misunderstand. This is a bug report, not a support request. There’s nothing for you to see in my admin area. Let me try to explain again:

    The Enfold Contact Form module pulls the Site Title as RAW DATA from the database to use as the Sender (FROM). It doesn’t convert it to HTML entities, so if the Site Title is

    “Wings & Things”

    it shows up as

    “Wings &amp ; Things” (space added before semicolon to allow display of RAW data)

    in the recipient’s inbox.

    • This reply was modified 5 years, 5 months ago by betaphase.
    in reply to: Form submission filter flaw (or feature request ;-)) #1105751

    Close away! Thanks.

    in reply to: Form submission filter flaw (or feature request ;-)) #1105658

    Yeah that makes sense. Thanks for passing it along!

    in reply to: Form submission filter flaw (or feature request ;-)) #1105391

    This isn’t a support request, rather, I’m explaining why the position of the line below is flawed. It is only reliable IF reCAPTCHA is disabled, and will fail if it’s enabled. You should fix this.
    $proceed = apply_filters( 'avf_form_send', true, $new_post, $this->form_params, $this );

    • This reply was modified 5 years, 5 months ago by betaphase.

    Hi Guys,

    I’m actually wanting the opposite – I have 6 video slides and I want them to rotate based on the “Slideshow autorotation duration” seconds, NOT the length of the video. Not concerned about audio. That way they don’t suddenly stop before the next slide is transitioned in and the transition will be more seamless. The videos are hosted on the website’s server. Is there an easy fix for this?

    Ideally I would want the next video to already be playing but a half-second or so as it transitions in, but this is not as important.

    Thanks!
    Andy

    in reply to: Mobile Settings and Tab Section #926348

    Guys the tabs section feature should never have been released without “swipe” functionality for mobile – the shear volume of threads on this topic proves this to be true, This should get immediate attention as a bug fix instead of simply directing all complainants to a feature request page. Don’t get me wrong, the tab section is awesome on desktop but without swipe for mobile, it’s sort of a dud because the user sees them and intuitively wants to swipe over them to advance or retreat.

    • This reply was modified 6 years, 8 months ago by betaphase.
    in reply to: Content Slider same height and button on the bottom #900348

    Ismael’s code works great, but only after you change one line in the Javascript:

    Change:
    return $(this).height();
    to:
    return $(this).outerHeight();

    in reply to: Fullwidth Easy Slider with video doesn't work on mobile #900098

    I set this up and looks promising, but I’m getting “Warning: Illegal string offset ‘id’ in /xxx/wp-content/themes/enfold/config-templatebuilder/avia-shortcodes/slideshow_layerslider.php on line 97”. All my software is update todate. I’ll just stick with the full width slider with the background image fallback. Thanks anyway!

    in reply to: Fullwidth Easy Slider with video doesn't work on mobile #898401

    I can’t use the Video element in the background and full width, and there is no ‘layer slider’ – only ‘Fullwidth Easy Slider’, ‘Easy Slider’, ‘Fullscreen Slider’, ‘Advanced Layer Slider’ and ‘Featured Image Slider’, none of which remotely do what I need the Fullwidth Easy Slider to do. Any other ideas, Sparky? Enfold has called me Sparky enough times, I figure I can return the favor ;-)

    in reply to: Fullwidth Easy Slider with video doesn't work on mobile #898010

    Or add an actual video element for mobile view.
    That statement is unclear because It IS a video element. Could you elaborate? Are you suggesting a 3rd party plugin?

    in reply to: Fullwidth Easy Slider with video doesn't work on mobile #896669

    I’d like to override whatever’s preventing the video from playing, by copying the related files to my child theme. Is that possible?

    I love this theme and have used it on several sites, but this really seems like a huge flaw.

    • This reply was modified 6 years, 10 months ago by betaphase.
    in reply to: Burger menu missing on mobile. #856445

    Hello,

    Suggestion for a upgrade-proof work-around:

    • Copy header.php to a child theme and name it the same as your menu in wordpress (in slug-format, lower case, replace spaces with dashes, etc: header-newmenu.php)
    • Copy includes/helper-main-menu.php to child theme – you can also rename it helper-newmenu-menu.php for identification purposes.
    • Open header-newmenu.php and look for get_template_part( ‘includes/helper’, ‘main-menu’ ); (around line 71) and change ‘main-menu’ to ‘newmenu’, save and upload.
    • Open includes/helper-newmenu.php
      • find $avia_theme_location = ‘avia’; Change ‘avia’ to ‘newmenu’
      • Find $avia_menu_class = $avia_theme_location . ‘-menu’; Change to $avia_menu_class = ‘avia-menu’;
    • Find the following block of code in the functions-enfold.php file in the main Enfold template folder and copy it to your child theme’s functions.php file:
      if(!function_exists('avia_append_burger_menu'))
      {
      	//first append search item to main menu
      	add_filter( 'wp_nav_menu_items', 'avia_append_burger_menu', 9998, 2 );
      	add_filter( 'avf_fallback_menu_items', 'avia_append_burger_menu', 9998, 2 );
      
      	function avia_append_burger_menu ( $items , $args )
      	{	
      	    if ((is_object($args) && $args->theme_location == 'avia') || (is_string($args) && $args = "fallback_menu"))
      	    {
      	        $class = avia_get_option('burger_size');
      	        
      	        $items .= '<li class="av-burger-menu-main menu-item-avia-special '.$class.'">
      	        			<a href="#">
      							<span class="av-hamburger av-hamburger--spin av-js-hamburger">
      					        <span class="av-hamburger-box">
      						          <span class="av-hamburger-inner"></span>
      						          <strong>'.__('Menu','avia_framework').'</strong>
      					        </span>
      							</span>
      						</a>
      	        		   </li>';
      	    }
      	    return $items;
      	}
      }
      
    • Change the following line from:
      if ((is_object($args) && $args->theme_location == ‘avia’) || (is_string($args) && $args = “fallback_menu”))
      to:
      if ((is_object($args) && in_array($args->theme_location, array(‘avia’,’newmenu’))) || (is_string($args) && $args = “fallback_menu”))
      Using in_array so you can conveniently add more menus as needed.

    Note: this won’t add the search magnifying glass.

    • This reply was modified 7 years, 2 months ago by betaphase.
Viewing 12 posts - 31 through 42 (of 42 total)