Forum Replies Created

Viewing 30 posts - 29,341 through 29,370 (of 67,591 total)
  • Author
    Posts
  • Hi,

    That filter allows you disable the theme’s google font feature completely which is not recommended because it will render the font options useless. Try this filter.

    add_filter('avf_output_google_webfonts_script', 'avf_output_google_webfonts_script_mod', 10, 1);
    function avf_output_google_webfonts_script_mod($font) {
    	$font = false;
    	return $font;
    }
    

    OR

    add_filter('avf_output_google_webfonts_script', function() {
    	return false;
    });
    

    Best regards,
    Ismael

    in reply to: Image as hotspot #970920

    Hi,


    @blafoley
    : Check this thread. https://kriesi.at/support/topic/enfold-4-4-update-image-hotspot-rollovers-broken/


    @nikishavardaam
    : Disable the “image_hotspots.php” file in the child theme folder temporarily. Let us know if it helps.

    Best regards,
    Ismael

    in reply to: Footer not displaying #970917

    Hi,

    Awesome! Glad that you did it! Let us know if you need anything else. :)

    Best regards,
    Ismael

    in reply to: Logo + Header Social Icons + Burger Menu overlapping #970916

    Hi,

    Thanks for the update. Please try this filter in the functions.php file.

    add_filter( 'wp_nav_menu_items', 'avf_add_search', 9999, 2 );
    function avf_add_search( $items, $args ) {
    	$social = avia_get_option('social_icons');
    	$icons = '';
    	if ($args->theme_location == 'avia')
    	{
    		foreach($social as $icon) {
    			$icons .= '<li class="menu-item menu-item-social social_bookmarks_'.$icon['social_icon'].' av-social-link-'.$icon['social_icon'].' only-mobile menu-item-'.$icon['social_icon'].'"><a target="_blank" href="'.$icon['social_icon_link'].'" aria-hidden="true" '.av_icon_string($icon['social_icon']).'><span class="avia_hidden_link_text">'.$icon['social_icon'].'</span></a></li>';
    		}
    		
    		$items = $icons . $items;
    	}
    	return $items;
    }
    
    

    Add this css code.

    @media only screen and (min-width: 989px) {
      /* Add your Desktop Styles here */
      .only-mobile {
        display: none !important;
      }
    }

    Best regards,
    Ismael

    in reply to: Full screen slider is not responsive on iPad #970914

    Hi,

    Thanks for the update. We adjusted the above css code a bit. Please try it again.

    Best regards,
    Ismael

    Hi,

    “Insert Headers and Footers” plugin we have installed that just adds in some of our tracking and analytics scripts

    Thanks for the update. Please disable the “Insert Headers and Footers” plugin temporarily. Move the analytics and tracking code in the theme’s Google Services panel.

    Best regards,
    Ismael

    in reply to: GravityForms not working #970912

    Hi,

    Thanks for the info. And I’m very sorry for the late response. Please disable the admin script merge. Add this code in the wp-config.php file.

    define('CONCATENATE_SCRIPTS', false );
    

    This should isolate the form issue. Post the FTP login details in the private field so that we could test it.

    Best regards,
    Ismael

    in reply to: Error "Error 404 Page" #970911

    Hi!

    Thanks for the update. @Gunter created new filters to take care of this particular issue but they’re not merged in the core yet. We’ll update you once the modifications are included in the theme. Sorry for the inconvenience.

    Regards,
    Ismael

    Hi,

    The latest version is 4.4.1. Please upgrade to that version. Could you provide a screenshot of the “cropping” issue? I got caught up with the “whitespace” issue so I didn’t notice that one.

    Best regards,
    Ismael

    in reply to: WPML flags missing #970909

    Hi,

    Thanks for the update. We’re still not sure why the parameter is missing so we had to add this code in the functions.php file as a temporary solution.

    
    add_action('wp_footer', 'ava_custom_script');
    function ava_custom_script(){
    	?>
    	<script type="text/javascript">
    		(function($) {
    			$(document).ready(function() {
    				$('.avia_wpml_language_switch li').each(function() {
    					var code = $(this).find('.language_code').text();
    					$(this).find('a img').attr('src', 'http://pearl.mediaplanering.online/wp-content/plugins/sitepress-multilingual-cms/res/flags/' + code + '.png');
    				})
    			});
    		})(jQuery);
    	</script>
    	<?php
    }
    

    Best regards,
    Ismael

    in reply to: Fixing the checkout page on mobile #970907

    Hi,

    Odd. Please try this plugin instead.

    // https://wordpress.org/plugins/say-what/

    Best regards,
    Ismael

    in reply to: Enfold google maps widget saturation #970906

    Hi,

    Thanks for the update. This works when I put the saturation value directly in the map data (line 1697).

    $data = array(
    	'hue'					=> '',
    	'zoom'					=> $zoom,
    	'saturation'			=> -50,
    	'zoom_control'			=> true,
    //							'pan_control'			=> true,				not needed in > 4.3.2
    	'streetview_control'	=> false,
    	'mobile_drag_control'	=> true,
    	'maptype_control'		=> 'dropdown',
    	'maptype_id'			=> $type
    );
    

    Please try it again.

    Best regards,
    Ismael

    in reply to: Enqueue jquery #970904

    Hi,

    I’m sorry for the late response. The forms are displaying properly over and under 990px screens when I checked. Could you create a test / draft page without this workaround? Post the login details in the private field so that we can check it.

    Best regards,
    Ismael

    in reply to: do not crop thumbnail not working , woocommerce #970117

    Hi,

    Thanks for the update.

    The option is set to “Niet-bijgesneden” when I checked. How do you update the data?

    Best regards,
    Ismael

    Hi,

    Thanks for the update. Did you set the background attachment property of the fallback image to “fixed”? There is no option for that by default but maybe, you’ve found a way to change it via css or something.

    Best regards,
    Ismael

    in reply to: Contact form not sending auto-reply emails #970108

    Hey!

    Awesome! Glad @Mike helped. When you have the time, please remove the modifications temporarily then use these filters instead.

    add_filter('avf_form_from', 'avf_form_from_mod', 10, 3);
    function avf_form_from_mod($from, $new_post, $form_params) {
    	global $enfold_custom_from_header;
    	$enfold_custom_from_header = $from;
    	$from = " (Email address hidden if logged out) ";
    	return $from;
    }
    
    add_filter('avf_form_autoresponder_from', 'avf_form_autoresponder_from_mod', 10, 3);
    function avf_form_autoresponder_from_mod($from, $new_post, $form_params) {
    	global $enfold_custom_from_header;
    	return $enfold_custom_from_header;
    }
    

    Regards,
    Ismael

    in reply to: Adding Custom CSS wrapper element to LayerSlider #969901

    Hi,

    Thanks for the update. Edit the layer and then add the css properties in the Style > Custom CSS field. You can also apply a unique id to the layer in the “Link & Attributes” panel. If you want this layer to display on every slide, make sure that the “Transition” > “Other Settings” > “Keep this layer” is set to “Forever”.

    Best regards,
    Ismael

    in reply to: DataTables 1.10 and jQuery 1.7 in Enfold #969898

    Hey adamsml,

    Thank you for using Enfold.

    The jQuery version is 1.12.4 when I check. What are the errors when you load version 1.7? Please provide a link to the test page.

    Best regards,
    Ismael

    in reply to: Enfold 4.4 Update – Image Hotspot Rollovers Broken #969896

    Hi,

    Thank you for using Enfold.

    . The shortcodes.css file is actually shorter by over 4000 lines of code.

    It’s shorter because the shortcode or elements has its own css and js files now. This is probably just a cache issue. Have you tried to toggle any settings in the new Performance panel? Disable the js and css compression temporarily. You may also need to purge the cache and re-minify the scripts and stylesheets.

    Best regards,
    Ismael

    in reply to: Best way to Update from 4.2.3 to 4.4? #969894

    Hi,

    Thanks for the update.

    Enable the error logs and then activate the latest version of the theme. Post the content of the error logs on pastebin.com.

    // https://codex.wordpress.org/Debugging_in_WordPress#WP_DEBUG_LOG

    In the wp-config.php file, add this code.

     // Enable WP_DEBUG mode
    define( 'WP_DEBUG', true );
    
    // Enable Debug logging to the /wp-content/debug.log file
    define( 'WP_DEBUG_LOG', true );
    
    // Disable display of errors and warnings 
    define( 'WP_DEBUG_DISPLAY', false );
    @ini_set( 'display_errors', 0 );
    
    // Use dev versions of core JS and CSS files (only needed if you are modifying these core files)
    define( 'SCRIPT_DEBUG', true );

    Best regards,
    Ismael

    in reply to: Masonry element – flickering on Load More #969885

    Hi,

    Thank you for using Enfold.

    The issue is cause by the loading icon as it turned it out. Please try this css code temporarily.

    .avia_loading_icon {
        display: none !important;
    }

    Best regards,
    Ismael

    Hi,

    Thanks for the update.

    Looks like you managed to display the language code instead of the flags. :)

    Best regards,
    Ismael

    in reply to: Portfolio Lightbox #969880

    Hi,

    Thanks for the update.

    Use this css code to change the color of the title. The previous one is being overridden by the advanced styling options.

    #top #wrap_all .main_color .grid-entry-title {
        color: #cccccc;
    }

    And use this css code to create more space between the portfolio items.

    #top .isotope-item {
        padding: 20px;
    }

    Adjust the value as needed.

    Best regards,
    Ismael

    in reply to: show child pages in menu #969878

    Hi,

    Thank you for using Enfold.

    Where are you testing this? Please provide links to the parent and child page so that we can see the difference.

    Best regards,
    Ismael

    in reply to: Edit column insert image does not function #969877

    Hey tallypeled,

    Thank you for using Enfold.

    There seems to be a problem with your ssl certificate. I can’t get in to the site without getting a security warning. Please contact your hosting provider regarding the issue and then update us once it’s solved.

    Best regards,
    Ismael

    Hey thh22,

    Thank you for using Enfold.

    The site is not loading properly. The following article might help. Please take note of “Step 3” and provide a screenshot of the detected urls.

    // https://woorkup.com/fix-google-adwords-site-suspended-due-malware/

    Best regards,
    Ismael

    in reply to: Anchor link skipping to color section AFTER the anchor #969871

    Hi,

    Yes, that will affect the entire site. Unfortunately, the current burger menu script doesn’t accept any parameters so you can’t apply it to other elements aside from the default menu.

    Let us know if you need help with something else. :)

    Best regards,
    Ismael

    in reply to: Logo settings for mobile/ tablet #969868

    Hi,

    Thanks for the update. Adjust the code a bit.

    @media only screen and (min-width: 990px) {
    .html_header_top #top .av_logo_right .logo {
        right: auto;
        left: 50%;
        transform: translateX(-50%);
        position: relative;
    }
    
    #header_main {
        height: 120px;
    }
    
    .responsive #top #wrap_all .main_menu {
        left: 0;
        right: auto;
    }
    }

    Best regards,
    Ismael

    in reply to: Need more buttons in fullscreen slider, #969866

    Hi,

    If you have any additional questions at this time we kindly ask that you open them up in a separate thread. The longer threads get in the forum, they become more difficult to support as they tend to drift off topic and they also make it troublesome for users trying to search for solutions. Keeping threads relevant to their original inquiry ensures that we can keep better track of what has been resolved and that users can more effectively find answers to similar issues they might be experiencing.

    Thanks!

    Best regards,
    Ismael

    in reply to: Search bar inside burget menu #969863

    Hi,

    Thanks for the update.

    I couldn’t see the search bar inside the mobile menu container. Did you remove the script?

    Best regards,
    Ismael+

Viewing 30 posts - 29,341 through 29,370 (of 67,591 total)