Forum Replies Created
-
AuthorPosts
-
Hi,
I see that you are using a masonry element for your post grid on your “our blog” page, I was able to add a “read more” link after your excerpts with the following function in your child theme functions.php, but I see you would like it to be a button, do you have a button example of how you would like the button to look?/* Add a "read more" link" to masonry elements */ function ava_custom_script_mod(){ ?> <script> (function($){ $(window).on('av-height-change', function() { $('.av-masonry-entry').each(function() { var more = $(this).find('.av-masonry-read-more'); var cont = $(this).find('.av-masonry-entry-content'); if( more.length == 1 ) return; cont.append('<div class="av-masonry-read-more">Read more</div>'); }); }); })(jQuery); </script> <?php } add_action('wp_footer', 'ava_custom_script_mod');Best regards,
MikeHi,
Thanks for the feedback, the columns is the only thing I can find different between your failed post and my working version of the same post.
I will ask the rest of the team to take a look and help with what I’m missing.
Thank you for your patience.Best regards,
MikeHi,
Thank you for the link, when I look at your red button “Find out how to join our online sessions” the only difference seems to be the border-radius which gives the button the round corners, is this what you are seeing too?
to correct the border-radius, please change this in the css:
border-radius: 3px!important;
to this:
border-radius: 23px!important;
I don’t see a version of the black button so I’m not exactly sure what the border-radius is, but feel free to adjust to suit.Best regards,
MikeHi,
For the contact form please remove this part of the css:#top .main_color input[type="text"] { background-color: #e69d37; }so we can see how to adjust it, and also remove the code in the functions.php that I gave you that is causing the error.
It may be easier if we had an admin login so we can adjust these snippets.Best regards,
MikeHi,
When you check to see if the script is working are you looking at the “page source code” or are you looking at the “Dev Tools Inspector”?
The “page source code” will still show it there, such as in your screenshot, but that is not what the “Google Bot” will see, the Google Bot sees the page after the DOM has been executed, which is what the “Dev Tools” shows when you right-click on the page and choose “inspect” or F12 on a Windows keyboard.Best regards,
MikeHi,
Thank you for the link to your post, to remove the “next” & “prev” on your single posts, Try adding this code to the end of your functions.php file in Appearance > Editor:function custom_script(){ ?> <script> (function($){ $(document).ready(function(){ $("#top.single-post").each(function() { $('link[rel="next"]').remove() $('link[rel="prev"]').remove() }); }); })(jQuery); </script> <?php } add_action('wp_footer', 'custom_script');Best regards,
MikeHey KosmetikAndNails,
Please check your Enfold Theme Options > General Layout > Dimensions > Maximum Container width it may be set to 1310px or 1410px, increasing this will change how the layout on large screens will be.Best regards,
MikeHi,
Sorry, I have installed Enfold v4.7.3 on a new live server but still couldn’t reproduce the alt & title error for the alternative logo.
I have asked the rest of the team to try reproducing the error and offer suggestions to correct, but I have not had any feedback yet.
Thank you for your patience.Best regards,
MikeMarch 18, 2020 at 1:02 pm in reply to: Hello, In wich way i can remove default title h3 on archieve pages? #1194092Hi,
Sorry, I don’t see this error on your site. I recommend disabling the parts of the plugins I wrote about above, other than that I don’t have any customization suggestions for these plugins.
This thread has covered many different topics, so I recommend closing this thread and if you have any other questions please open a new thread so we can focus on one issue per thread.
Thanks for your understanding.Best regards,
MikeMarch 18, 2020 at 12:32 pm in reply to: Conflict with Enfold and Five Star Restaurant Menu plugin. #1194086Hi,
Thank you for the login, I looked at your Events, Pages, & Posts but I don’t see the error from your screenshot. If you continue to see this error I would recommend disabling your plugins to see if that helps. One plugin I question it your “Enfold – Repeatable Content” this third party plugin is about 4 years old now and a lot of changes has been made to the Advanced Layout Builder since then.Best regards,
MikeHi,
I see you have the latest version but in your update options in your theme panel your “Envato private token” field is empty, this is necessary for updates in the theme panel to work, but envato-market should also send you emails, you will have to ask envato-market why you are not getting these.Best regards,
MikeHi,
Please try this code in the General Styling > Quick CSS field or in the WordPress > Customize > Additional CSS field:#respond span.required { display: inline-block !important; } .commentlist #respond #comment { width: 100% !important; }and then add this code to the end of your functions.php file in Appearance > Editor:
function custom_reply_title(){ ?> <script> (function($){ $(document).ready(function(){ $("h3#reply-title").text("Liebes Publikum, schreib mir doch etwas Nettes :-)"); }); })(jQuery); </script> <?php } add_action('wp_footer', 'custom_reply_title');Best regards,
MikeMarch 17, 2020 at 1:42 pm in reply to: Conflict with Enfold and Five Star Restaurant Menu plugin. #1193790Hey spidercreations,
Sorry for the late reply, please try setting the “Classic Editor” as your default editor in the theme options at Enfold Theme Options > Select Your Editor > Use WP Classic Editor If you are using another “Classic Editor” plugin, please disable.
So you only see this error with the “Events Calendar” post types?
Please include an admin login in the Private Content area so we can examine closer.Best regards,
MikeHi,
This code:#top #wrap_all .comment-form-url { display: none; }is to hide the “website” field.
To change the color of the text when entered into your form so it is red and not the same orange as the background color, Please try this code in the General Styling > Quick CSS field or in the WordPress > Customize > Additional CSS field:#top .main_color input[type="text"], #top .main_color select { color: #720c10 !important; }Best regards,
MikeHi,
Thank you for the screenshot, I’m asking the rest of the team for thoughts on centering this better.
Thank you for your patience.Best regards,
MikeMarch 17, 2020 at 12:31 pm in reply to: Hello, In wich way i can remove default title h3 on archieve pages? #1193777Hi,
The errors were caused by your “Async JavaScript” & Autoptimize plugins, Async JavaScript needs to be set to “Defer” and Autoptimize needs to have ”
Ottimizzare il codice JavaScript?” and “Minify excluded CSS and JS files?” off, otherwise, the JQuery doesn’t load correctly.
This is common for Autoptimize.
I checked your homepage with a different keyword tool and “Agrave” was not found, so I’m not sure what to make of this.Best regards,
MikeHi,
Glad to help, unless there is anything else we can assist with on this issue, shall we close this then?Best regards,
MikeHi,
Glad to hear, unless there is anything else we can assist with on this issue, shall we close this then?Best regards,
MikeHi,
Thank you, glad we could help and if you have more questions in the future please feel free to open a new thread.
I took a look at your theme options for updating and it seems the token was working correctly, there was a link that said “manually check now” when I clicked it I got the message that an Update is Available.
Please check.

Best regards,
MikeHi,
As I recall we didn’t want to use the “main” id because some parts of the page wasn’t necessary to include, but you can use “main” if you wish.
To have the button created in English and French please try this function instead:function custom_screen_reader_script(){ ?> <script> (function($){ $(document).ready(function(){ if ( document.documentElement.lang.toLowerCase() === "fr-ca" ) { $( '<div>Passer au contenu principal</div>' ).insertBefore( '#top' ); }else{ $( '<div>Skip to main content</div>' ).insertBefore( '#top' ); } }); })(jQuery); </script> <?php } add_action('wp_footer', 'custom_screen_reader_script');Best regards,
MikeHi,
The option to use the Classic Editor is on the Enfold Theme Options panel, the first panel in the theme options.

This: “I would suggest that you update on a staging version of the site if you want to keep the production site safe”. means that if you want to keep your site live for your visitors, but also test whether the update will cause any issues, you can use a stagging clone of your site on a temp url to check.Check your webhost to see if you have the one-click staging site option, this is an option in most cPanels to create a staging clone of your site so you can test an update on it and your live site will stay up and running untouched. You can always ask your webhost to help you with setting this up if you want.
Here are some screenshots of what it would look like:


Best regards,
MikeHi,
Sorry we couldn’t assist more with a solution, but glad you have a working solution.Best regards,
MikeHi,
Try changing the number “12” in the url, it is the size for the image:
here it is at “12”li.av-social-link-tumblr a:before { content: url(https://img.icons8.com/officexs/12/000000/great-britain.png); } li.av-social-link-soundcloud a:before { content: url(https://img.icons8.com/color/12/000000/sweden.png); }here it is at “24”
li.av-social-link-tumblr a:before { content: url(https://img.icons8.com/officexs/24/000000/great-britain.png); } li.av-social-link-soundcloud a:before { content: url(https://img.icons8.com/color/24/000000/sweden.png); }“24” might be too big, try different numbers to suit.
Best regards,
MikeHey darryllevine,
Sorry for the late reply, as you see from the linked post we didn’t receive feedback for the final solution.
As I recall adding the ID “main_content” to the first element of content, such as after your slider was important to it working, because the function that adds the “Skip to main content” button links to the ID “main_content” I searched your page but didn’t find the ID “main_content”, but “tabing” though does seem to highlight the links down through the page.Best regards,
MikeHi,
Sorry for the late reply, I was hoping @romano2 would reply. Unfortunately, I don’t have much Varnish experience but I did find this list of common Varnish issues.
Hopefully, this will help.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,
This function will remove the titles only on the home page for the icongrid flip boxes.
Try adding this code to the end of your functions.php file in Appearance > Editor:function remove_icongrid_title_on_hover(){ ?> <script> (function($){ $("#top.home .avia-icon-grid-container a.avia-icongrid-wrapper").hover(function(){ $(this).removeAttr("title"); }); })(jQuery); </script> <?php } add_action('wp_footer', 'remove_icongrid_title_on_hover');After applying the function, Please clear your browser cache and check.
Best regards,
Mike -
AuthorPosts


