Forum Replies Created
-
AuthorPosts
-
Hi,
The login url doesn’t seem to be working right now, please check
Is your new YouTube icon function like this:function avia_add_custom_icon_play($icons) { $icons['youtube-play'] = array( 'font' =>'fontawesome', 'icon' => '61802'); return $icons; } add_filter('avf_default_icons','avia_add_custom_icon_play', 10, 1); function avia_add_custom_social_icon_play($icons) { $icons['youtube-play'] = 'youtube-play'; return $icons; } add_filter('avf_social_icons_options','avia_add_custom_social_icon_play', 10, 1);Best regards,
MikeHey makni1,
Sorry, there isn’t. How are you trying to order?
If Date didn’t work perhaps Last modified will?Best regards,
MikeHey Rafael,
Sorry for the late reply, Try adding this code to the end of your functions.php file in Appearance > Editor:add_image_size( 'materia', 1200, 670, true ); add_image_size( 'r7-imagem', 660, 360, true ); add_image_size( 'veja-mais', 157, 112, true ); add_filter( 'image_size_names_choose', 'my_custom_sizes' ); function my_custom_sizes( $sizes ) { return array_merge( $sizes, array( 'materia' => __('Materia','avia_framework'), 'r7-imagem' => __('R7 Imagem','avia_framework'), 'veja-mais' => __('Veja Mais','avia_framework'), ) ); }I tested this and the sizes showed in my media sizes while using the “Simple Image Sizes” plugin to display the media sizes.

Best regards,
MikeHi,
Glad we were able to help, we will close this now. Thank you for using Enfold.For your information, you can take a look at Enfold documentation here
For any other questions or issues, feel free to start new threads in the Enfold forum and we will gladly try to help you :)Best regards,
MikeHi,
I’m so glad this is working for you :) While it was hard, I now have that satisfied feeling :)
We will close this and look for your next “easy” question ;)Best regards,
MikeHi,
@Isotopper If I understand correctly you are using a “Getresponse” plugin which gets the “title” from the data “description” when using the Advanced Layout Builder.
Yet it works correctly when you use the Classic Editor?
I’m not sure what we can do to change this behavior, many plugins can not read our Advanced Layout Builder shortcodes correctly, so this is probably what the issue is.Best regards,
MikeMarch 22, 2020 at 5:25 pm in reply to: Links / One time with underline and on the other not…why is that so? #1195263Hi,
Very good, so how do you want the links to look “on-hover” and not “on-hover”?Best regards,
MikeHi,
Your MonsterInsights seems to load slowly on your dashboard, have you tried disabling your plugins to find which one is hogging the resources?
Have you asked your web host for help changing the memory limit?
I have not seen any sites having trouble with the layerslider with a Memory Limit of 256M.Best regards,
MikeHi,
Sorry, I don’t have an iPhone, but please try this css in the General Styling > Quick CSS field or in the WordPress > Customize > Additional CSS field:@media only screen and (max-width: 767px){ .responsive #top .slideshow_caption { left: 50% !important; width: 70% !important; } .slideshow_align_caption > H1.avia-caption-title { font-size: 20px !important; } }Best regards,
MikeHi,
Thank you for the login, first, your popup didn’t have a trigger set, so I added the “click” trigger to it, then the “popup maker” plugin seems to try executing the shortcodes outside the builder so it is necessary to set the option Enfold Theme Options > Performance > Disable Template Builder Elements > Always load all elements so the shortcodes will fire.
and then add this function to your functions.php, which I did for you.
Now the “accordion” works in your popup, but not your “animated numbers”, probably because the animation for the numbers was fired on page load, not on popup load.
You may wish to try a popup plugin such as WP Popups which seems to work fine “out-of-the-box”.Best regards,
MikeHi,
Glad to hear this helps. As for the “answer-mode” title, I’m having trouble because the two modes are actually combined and it seems that anything I add was braking it.
But I believe I have it working with this function:function custom_hard_script(){ ?> <script> (function($){ $(document).click(function(){ if ($('.commentlist #reply-title').css('display') == 'block'){ $("#reply-title").html(function() { return $(this).html().replace("Schreibe einen Kommentar", "Liebes Publikum"); }); } else {} }); })(jQuery); </script> <?php } add_action('wp_footer', 'custom_hard_script');just change “Liebes Publikum” in the code to what you wish.
Try adding this code to the end of your functions.php file in Appearance > Editor and Then clear your browser cache and any cache plugin, and check.
I also believe that you may need to log out from admin to see the “answer-mode”Best regards,
MikeHi,
Sorry, I see that the page I was looking at is not an Enfold page, /baumschule/. So, I tested our navigation widget that allows you to choose a menu as a widget and show it in a sidebar, and with this function the menu is given a “toggle” to expand & collapse the menu:function custom_widget_nav_menu(){ ?> <script> (function($){ $(document).ready(function(){ $('.widget_nav_menu li.menu-item-has-children').click(function(e) { e.preventDefault(); }); $('.widget_nav_menu li.menu-item-has-children').find('ul').hide(); $('.widget_nav_menu li.menu-item-has-children').click(function () { $('.widget_nav_menu li.menu-item-has-children').not(this).find('ul').hide(); $(this).find('ul').toggle(); }); }); })(jQuery); </script> <?php } add_action('wp_footer', 'custom_widget_nav_menu');This may need adjusting to work with your site, one downfall is when you build your sidebar menu please make the parent menu items have no link so when you click on them to expand the menu you don’t go to that page.
In the code above I addede.preventDefault();to avoid this behavior, but it would be better to have the parent menu items have no link.
Please try building a sidebar navigation with this function to see if it suits your needs.Best regards,
MikeHi,
Thank you for explaining, your first css is correct for hiding the “feature image” on regular postsbig-preview
But your archive posts don’t use thebig-previewlayout.
So the css you are using to hide the excerpts on the archive posts is also hiding the feature image:.archive .entry-content { display: none; }because the image is inside of
entry-content
So to hide the content and show the feature image on the archive posts you could replace the above css with this:#top.archive #wrap_all #main .entry-content p,#top.archive #wrap_all #main .entry-content h2,#top.archive #wrap_all #main .entry-content > div:not(.avia-image-container),#top.archive #wrap_all #main .entry-content ul,#top.archive #wrap_all #main .entry-content h3,#top.archive #wrap_all #main .entry-content h6 { display: none; }But this is not the best because we have to guess what elements are going to be in the
entry-contentsuch as “p”, “h2”, “h3”, etc.
Instead, I recommend moving the image before theentry-contentso it won’t be hidden and you can target the content easily withentry-content.
Try adding this code to the end of your functions.php file in Appearance > Editor:function custom_image_script(){ ?> <script> (function($){ $(window).load(function(){ $( '#top.archive #wrap_all #main .post-entry' ).each(function() { $( this ).find( '.avia-image-container' ).insertBefore( $(this).find('.entry-content')); }); }); })(jQuery); </script> <?php } add_action('wp_footer', 'custom_image_script');So with this function you can leave your current css as is.
Best regards,
MikeHey obedj,
I believe that this css doesn’t work because “.notialign” is not the correct class. Please link to your page so we can examine the elements and help get this working.Best regards,
MikeMarch 22, 2020 at 12:34 am in reply to: How Can I Remove the Thumbnail from Displaying on Related Posts? #1195165Hey havi,
To have the related posts not show the image, Please try this code in the General Styling > Quick CSS field or in the WordPress > Customize > Additional CSS field:#top.single .related_entries_container span.related_image_wrap { display: none !important; }Best regards,
MikeHi,
Sorry for the late reply and thanks for the login, I see that you are using a child theme so I added the function that was causing the error and adjusted the link, this is what I added:if(!function_exists('avia_set_profile_tag')) { /** * generates the html profile head tag * @return string the html head tag */ function avia_set_profile_tag($echo = true) { $output = apply_filters('avf_profile_head_tag', '<link rel="profile" href="https://gmpg.org/xfn/11" />'."\n"); if($echo) echo $output; if(!$echo) return $output; } add_action( 'wp_head', 'avia_set_profile_tag', 10, 0 );It is from the
\enfold\framework\php\function-set-avia-frontend.phpfile.
Please try checking your source code now.Best regards,
MikeHi,
Thanks for the login, I downloaded your file “updated-20-march-20.zip” and found it contains no fonts, only svg’s, which will not work, you must have the icon fonts.Best regards,
MikeHi,
Sorry for the late reply, the error:The theme is missing the style.css stylesheet
means that you are uploading the theme file that includes the “extras” and is not the theme itself.
The “enfold.zip” you want to upload has these files:

Try looking in your theme file for another zip file named “enfold.zip”, that will be the one you want to upload.Best regards,
MikeHi,
Glad to hear you have this sorted out, shall we close this then?Best regards,
MikeMarch 21, 2020 at 11:47 pm in reply to: No Updates available. You are running the latest version! (4.0.5) #1195160Hi,
With version 4.0.5 you will have to update manually via FTP. Envato changed how the license is checked with the newer versions, they no longer use the “API” and now use a “Token”
After you update via FTP you can enter your “Token” and then update from within the theme options for future versions.
The easiest and safest way to update via FTP is to download the newest version from Theme Forest and rename your current theme folder to “enfold-old” via ftp then upload the new “enfold” folder and check that your site is working correctly.
Should for some reason you wish to roll-back to the old version, it’s easy to do, simply rename the new “enfold” folder to “enfold-new” via ftp and then rename “enfold-old” to “enfold” then refresh your page.
Once you are happy you can delete the “enfold-old” folder via ftp, (not the WP theme page)
Please don’t try to overwrite the theme folder, as this will leave old files behind and cause errors.Best regards,
MikeHi,
You can purchase a new license and download the new theme from the Envato download area to update your theme.Best regards,
MikeHi,
Sorry for the late reply, when updating your site please note that you should not try to overwrite your theme directory, this can leave old files behind that can cause errors, you need to delete the old theme directory and then add the new one.
Once you do this you may still get errors because your PHP version probably still needs to be updated to v7.3 and your WordPress also probably needs to be updated.Best regards,
MikeMarch 21, 2020 at 10:56 pm in reply to: Links / One time with underline and on the other not…why is that so? #1195152Hey Carsten,
Sorry for the late reply, I believe that the difference is due to the custom css used for the demo that was used as the base. Neither is really wrong, as some people link to have the links have the underline all of the time to make the links stand out.
If you would like them to all be the same then we will need to see the links live to determine which class is triggering which style so we can adjust.Best regards,
MikeMarch 21, 2020 at 10:26 pm in reply to: How To Get Home Page Image with Moving Text on Top? #1195149Hi,
To adjust the caption over a bit please adjust this css:.caption_right .slideshow_caption { right: 0px; }to something like this:
.caption_right .slideshow_caption { right: 50px; }This moves the caption to the left a litle.
Best regards,
MikeHi,
To change the font size to 40px you will also need to adjust the margin of the “before” like this:.iconbox_content div.iconbox_icon:before { margin-left: -6px !important; } .iconbox_content div.iconbox_icon { font-size: 40px !important; }Please adjust to suit.
Best regards,
MikeHi,
Sorry for the late reply, and the login link, but it seems the login link is not working, please check.Best regards,
Mike -
AuthorPosts

