Forum Replies Created
-
AuthorPosts
-
Hey djsmbd,
Was it one background image for the whole page, or each section had a background image?
Do you happen to have a screenshot of how it was?Best regards,
MikeHi,
I thought the problem was that spambots are targeting your site and contact form?
Google Recaptcha is not 100%, no captcha is, even a honeypot is not 100% but it should help.
Unfortunately we don’t have this as an option in Enfold yet.Best regards,
MikeDecember 1, 2018 at 6:59 pm in reply to: Custom 404-Page is redirected with wrong HTTP-Status-Code #1039718Hi,
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 under Enfold sub forum and we will gladly try to help you :)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 under Enfold sub forum and we will gladly try to help you :)Best regards,
MikeDecember 1, 2018 at 6:48 pm in reply to: Contakt form: Autoresponder does not generate eMail #1039710Hi,
Sorry for the late reply, I have tested your contact form using the WP Mail Log plugin that you installed, what it shows is that the contact form is sending the first message but not the autoresponder, which would show in the mail log plugin, but it is not giving any errors, also you are not getting ant errors from the page/site.
This tells me that the error is in WordPress itself, not in the mail server. I didn’t find any customizations in the functions.php
I suspect your Redux plugin since that is just about your only plugin, but typically Redux is part of something else, which is why it doesn’t have an un-installer. Please try to un-install.Best regards,
MikeHi,
Sorry for the late reply, Please link to the page that has you masonry element, I didn’t find one in the source of your homepage.
The masonry element does have the author included and typically just requires some css like this:.av-masonry-text-sep.text-sep-author, .av-masonry-author { display: block !important; }Best regards,
MikeDecember 1, 2018 at 4:49 pm in reply to: Custom 404-Page is redirected with wrong HTTP-Status-Code #1039682Hi,
Sorry for the late reply, I see that the dev team has opened a issue for this and is working on it. I’m sure they will post here once they have a solution, but I will also try to keep you informed of updates.Best regards,
MikeHey VizuallElisa,
Sorry for the late reply, are you using the Smart Variations Images plugin? I was researching your question and found that was the issue for someone else
Here is another possible solution
Have you tried disabling your plugins? This is the solution for many people, if this resolves the issue, reactivate each one individually until you find the cause.Best regards,
MikeHi,
Here is a idea to block the spambots, try using the Contact Form 7 plugin with the Contact Form 7 Honeypot when a spambot fills in a hidden field that valid users can’t see it verifies that the submitter is a spambot, and the form is rejected as spam.
Spambots blindly fill in all fields, regardless of if the field should be filled in or not.Best regards,
MikeHi,
Glad to hear, unless there is anything else we can help with on this issue, shall we close this then?Best regards,
MikeHi,
Try adding this code to the end of your functions.php file in Appearance > Editor:function change_logo_zindex_on_menu_hover(){ ?> <script> (function($){ $(function() { $('.main_menu li a').hover(function() { $('.logo').css('z-index', '0'); }, function() { $('.logo').css('z-index', '1'); }); }); })(jQuery); </script> <?php } add_action('wp_footer', 'change_logo_zindex_on_menu_hover');Please see the screenshot in Private Content area.
Best regards,
MikeHi,
Please try this code in the General Styling > Quick CSS field or in the WordPress > Customize > Additional CSS field:.wpcf7#wpcf7-f468-p367-o1 p:nth-child(even) { width: 100% !important; float: left !important; }If this doesn’t help, please include a admin login in the private content area so we can take a closer look.
Best regards,
MikeDecember 1, 2018 at 8:01 am in reply to: Remove Bottom Border for Blog Posts (Single Author, Big Preview Pic) #1039532Hey kamcmillan,
Please include the url to the page in question so we can take a closer look, I don’t seem to have this border on my demo.Best regards,
MikeHi,
Thanks for the link it did help lead me to the correct function, so what you will need to do is ensure that WordPress > Settings > General > Timezone is set correctly, there is a info box that tells you what WordPress thinks is the local time which updates when you save the settings:

Then change the function to this one:function mm_post_date_time( $formatted, $format, $the_post = false ) { if ( ! $the_post ) { global $post; $the_post = $post; } $post_date = get_post_time( 'M d Y g:i:s a', $gmt = 0, $the_post); $output = $post_date; return $output; } add_filter( 'the_time', 'mm_post_date_time', 10, 2 ); add_filter( 'get_the_time', 'mm_post_date_time', 10, 3 ); add_filter( 'the_date', 'mm_post_date_time', 10, 2 ); add_filter( 'get_the_date', 'mm_post_date_time', 10, 3 );Best regards,
MikeHey xxtita,
Please try this code in the General Styling > Quick CSS field or in the WordPress > Customize > Additional CSS field:@media only screen and (max-width: 767px) { .responsive #top #wrap_all #header { position: fixed !important; } .responsive #top #wrap_all #header #header_meta { z-index: 1 !important; } .responsive #top #wrap_all #header .social_bookmarks { float: none !important; } .av-burger-menu-main.menu-item-avia-special { top: -60px !important; } .responsive #top #wrap_all #header #header_main { height: 0px !important; } .responsive #top .logo { display: none !important; } }Then please clear your browser cache and check.
Please see the expected results screenshot in Private Content area.Best regards,
MikeHey Gareth Strangemore-Jones,
For technical support please register here kriesi.at/support/register with your item purchase code .Go to https://kriesi.at/support/ select the theme you purchased bookmark the URL.
Example: https://kriesi.at/support/enfold
Scroll to the bottom of the page to open a new ticket.
We will be more than happy to assist, when you create your support ticket for this issue, Please include a admin login & FTP access in the Private Content area so we can examine why you are having trouble installing the theme.
Best regards,
MikeHey KellyKilgallon,
Thanks for the login, which page was this happening on? I created a test page in hopes to recreate your issue, but it didn’t. Please try the url in the Private Content area.Best regards,
MikeHi,
I didn’t do anything, it must have been one of the previous things you did and once the server cache cleared it was resolved.Best regards,
MikeHi,
To change the format edit the ‘M d Y g:i:s a’ part, following the link above. This works on my localhost, so it should work for you too. Or see if changing the format at WordPress > Settings > General > Date Format makes a difference, it does not for me.
What format are you trying for?
As for local time vs server time, I will have to research this more.Best regards,
MikeNovember 30, 2018 at 2:24 pm in reply to: [re-open]How to remove space below logo+main menu area? #1039310Hi,
Thank you for the image, I believe you are referring to a space that only shows when the screen is below 374px, Please see the screenshot in Private Content area.
This is caused by the padding of the first element, to correct Please try this code in the General Styling > Quick CSS field or in the WordPress > Customize > Additional CSS field:@media only screen and (max-width: 375px) { #top.home .flex_column_div.first.avia-builder-el-first { padding-top: 0px !important; } }Best regards,
MikeHi,
CSS can’t assign tags, but it can match the font size to your h3 tags. To give it a H3 you could use jQuery, but if this is for SEO I don’t believe that Google will see the h3 because the bot doesn’t allow jQuery when it loads a page.
If you would like help with the css or jQuery, please link to the page in question so we can examine the structure.Best regards,
MikeHi,
opps, good catch. I restore that code now, Please clear your browser cache and check.Best regards,
MikeHi,
I found a code example to base this function on at this GitHub The example turned the date into a time and then calculated how long “ago” the post was posted, I removed the final calculation and was left with the date and exact time of the post. The date & time can be adjusted using the standard WordPress date & time format.
Try adding this code to the end of your functions.php file in Appearance > Editor:function mm_post_date_time( $formatted, $format, $the_post = false ) { if ( ! $the_post ) { global $post; $the_post = $post; } $post_date = get_post_time( 'M d Y g:i:s a', true, $the_post ); $output = $post_date; return $output; } add_filter( 'the_time', 'mm_post_date_time', 10, 2 ); add_filter( 'get_the_time', 'mm_post_date_time', 10, 3 ); add_filter( 'the_date', 'mm_post_date_time', 10, 2 ); add_filter( 'get_the_date', 'mm_post_date_time', 10, 3 );Best regards,
MikeHey williamslyd,
To add more custom image sizes, Try adding this code to the end of your functions.php file in Appearance > Editor:// add new size add_image_size( 'bigger-square', 250, 250, true ); add_image_size( 'another-square', 350, 350, true ); add_image_size( 'yet-another-square', 450, 450, true ); // make the new size available in the media library (and image element etc.) add_filter( 'image_size_names_choose', 'my_custom_sizes' ); function my_custom_sizes( $sizes ) { return array_merge( $sizes, array( 'bigger-square' => __( 'Bigger Square' ), 'another-square' => __( 'Another Square' ), 'yet-another-square' => __( 'Yet Another Square' ), ) ); }To adjust your new image sizes so they are cropped the way you would like, please read this article
Best regards,
MikeHey sdigit,
Your solution sounds very good, I had thought of using Advanced Custom Fields to create a second title to be shown, but when looking into this it seems like it would be very involved. Another option would be to use jQuery to change to title but you would need to write each one out, which would be just as “hacky”
So your solution may be best.Best regards,
Mike -
AuthorPosts



