Forum Replies Created
-
AuthorPosts
-
June 11, 2018 at 3:10 am in reply to: GDPR / Google Web Fonts Replacement / Host Google Webfonts locally #970921
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,
IsmaelHi,
@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,
IsmaelHi,
Awesome! Glad that you did it! Let us know if you need anything else. :)
Best regards,
IsmaelHi,
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,
IsmaelHi,
Thanks for the update. We adjusted the above css code a bit. Please try it again.
Best regards,
IsmaelJune 11, 2018 at 2:13 am in reply to: Portfolio Grid displays preview text at footer, no longer plays videos #970913Hi,
“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,
IsmaelHi,
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,
IsmaelHi!
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,
IsmaelJune 11, 2018 at 1:57 am in reply to: Slider Revolution cannot be 100% slider height after 4.3 update #970910Hi,
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,
IsmaelHi,
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,
IsmaelHi,
Odd. Please try this plugin instead.
// https://wordpress.org/plugins/say-what/
Best regards,
IsmaelHi,
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,
IsmaelHi,
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,
IsmaelHi,
Thanks for the update.
The option is set to “Niet-bijgesneden” when I checked. How do you update the data?
Best regards,
IsmaelJune 8, 2018 at 3:52 pm in reply to: YouTube Video in fullwidth slider – iPad landscape mode not responsive #970110Hi,
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,
IsmaelHey!
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,
IsmaelHi,
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,
IsmaelHey 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,
IsmaelHi,
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,
IsmaelHi,
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,
IsmaelHi,
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,
IsmaelJune 8, 2018 at 12:50 am in reply to: How to customize config-wpml/config.php in child theme? #969881Hi,
Thanks for the update.
Looks like you managed to display the language code instead of the flags. :)
Best regards,
IsmaelHi,
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,
IsmaelHi,
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,
IsmaelHey 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,
IsmaelJune 8, 2018 at 12:31 am in reply to: Google AdWords Meldung: Anzeige abgelehnt (Enfold 4.4.1) #969876Hey 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,
IsmaelJune 8, 2018 at 12:14 am in reply to: Anchor link skipping to color section AFTER the anchor #969871Hi,
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,
IsmaelHi,
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,
IsmaelHi,
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 -
AuthorPosts
