Forum Replies Created
-
AuthorPosts
-
Hi,
When I look at your page the title font is 30px & the breadcrumbs are white in Chrome,
Please see the screenshot in Private Content area.
Please clear your browser cache and check, or perhaps I misunderstood the request?Best regards,
MikeHi,
Sorry for the late reply, if I understand correctly, you would like your logo to have a minimum height of 250px, but you also don’t want any extra space between the logo and the menu.
Please try this code in the General Styling > Quick CSS field or in the WordPress > Customize > Additional CSS field:span.logo img { min-height: 250px !important; } .html_header_top.html_header_sticky #top #wrap_all #main { padding-top: 300px !important; } #header_main .av-logo-container { min-height: 250px !important; height: 250px !important; }Best regards,
MikeHey studiohf,
Sorry for the late reply, I took a look at your site, but you don’t seem to be using Enfold, nor do you have it installed, so I can’t really assist you. If you choose to use Enfold, please let us know.Best regards,
MikeHi,
Sorry for the late reply, and thank you for the screenshot. I took a look at your page and at first, I saw the error but while I was examining your css and settings I discovered that your logo began floating the left. Perhaps this was a caching issue because the logo is now showing correctly.
Please see the screenshot in Private Content area.
Please clear your browser cache and check again.Best regards,
MikeMarch 2, 2019 at 7:57 pm in reply to: Category page layout and single blog page navigation in mobile #1073711Hi,
Sorry for the late reply, the post nav buttons are disabled for mobile devices, to enable, 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 .avia-post-nav { display: block !important; } }Best regards,
MikeHey RobWestbrook,
Sorry for the late reply,
This is no longer available.Best regards,
MikeHi,
Sorry for the late reply, and thank you for the link, I see that your socket text and hr link is centered, but from your mockup it looks like you would like the hr line to be almost full width, this css should do that:#socket > div.container,#socket .copyright { max-width: 100% !important; width: 100% !important; }Best regards,
MikeHi,
Glad to hear, it was probably clearing your browser cache. We will close this now as requested. 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 to hear that you unset the “Blog Page” in the theme options, this overrides a few settings because it thinks that you have only one page as the blog, unlike yours.
I have a solution to highlight a menu item of choice based on category, first is to add a category class to the page, because right now there is nothing in the code of each page or post as to which category it belongs to.
Try adding this code to the end of your functions.php file in Appearance > Editor:add_filter('body_class','add_category_to_single'); function add_category_to_single($classes) { if (is_single() ) { global $post; foreach((get_the_category($post->ID)) as $category) { // add category slug to the $classes array $classes[] = $category->category_nicename; } } // return the $classes array return $classes; }Then we will need to add some css to highlight the correct menu item, so I will need a list of your categories and which menu item you want highlighted.
It would be best to ensure at least one category is unique for each menu item.Best regards,
MikeHi,
The sidebar is showing the demo widgets because you have no widgets in the sidebar “Pages” I added a empty HTML widget into the sidebar which hides the demo content.
Please check and add the widgets you would like to show on those pages.
As for your search results, the built-in search engine for WordPress is limited, most people use one of the many search plugins to improve their search results. Here is a article that lists woocommerce search pluginsBest regards,
MikeMarch 2, 2019 at 4:38 pm in reply to: Saving Enfold Contact Form to Database (Finally Solved!!) #1073627Hi,
What PHP version are you using?Did you also try this one? I just to make sure you saw that there are two plugins that work with the Enfold contact form.
Best regards,
MikeHi,
I took a look at the page in the Private Content area, and found that your image “titles” are like this “Link a: 3512406586 Anna”
so I thought that you are adding links to your “titles” or what you might be calling your “image labels”, but links are removed from there. I tried to login to see but WordFence locked me out.Please try to add some screenshots of what you are calling “image labels” because I might call it something else. I just want to be clear what we are working on.
Best regards,
MikeHi,
The syntax is correct, and it should not affect other elements. I wish I could help more, but I know I can’t see your page.
Please let us know once your page is live, I will be more than happy to assist with any issues.Best regards,
MikeMarch 2, 2019 at 7:10 am in reply to: Previous and next post navigation – want to add another 2 categories #1073533Hey Vasilis,
Sorry for the late reply, I changed your function so that it will add a class to two category types:add_filter( 'body_class', 'add_category_class' ); function add_category_class( $classes ) { if( is_single() && has_category('Τελευταία νέα') ) $classes[] = 'news-cat'; if( is_single() && has_category('Συγγραφείς') ) $classes[] = 'writers-cat'; return $classes; }But because you want to hide the post nav on all pages except the ones with the classes I had to write another function to add the css. The original css is limited for “if” & “else” statements, where this javascript can handle it better. This means that you can remove the css used before from your Quick CSS, I have disabled it for now, so this function will work.
function hide_post_nav_css(){ ?> <script> (function($) { $(document).ready(function(){ if ($("body").hasClass("news-cat")) { $('.avia-post-nav').css({ 'display': 'block' }); } else if ($("body").hasClass("writers-cat")) { $('.avia-post-nav').css({ 'display': 'block'}); } else { $('.avia-post-nav').css({ 'display': 'none'}); } }); })(jQuery); </script> <?php } add_action('wp_footer', 'hide_post_nav_css');Please be sure to clear your browser cache, and check your posts, also remember that the “post nav” will only show if the category has more posts to show, and the classes above are present.
Best regards,
MikeMarch 2, 2019 at 6:02 am in reply to: Background image of (some) content blocks aren't visible any more after update #1073516Hi,
Sorry for the late reply, the dev team has released a bug fix version has solved a couple of issues, and perhaps one of these issues is related to your issue. Please include FTP access in the Private Content area so we can try uploading this version to your site.Best regards,
MikeHi,
Sorry for the late reply, please ask your webhost to look at the server logs to see if they can tell why you are getting a 404 on the admin-ajax.php file.
There can be a few reasons why this may be happening and the server logs will help identify the cause.Best regards,
MikeHi,
That is great news, I tried to isolate the problem with borders, but have not yet. Will the css be satisfactory as a solution?Best regards,
MikeHi,
Thank you for the FTP access, I wanted to test a new version that the dev team gave me to solve some recent issues. I renamed your current theme to “enfold-old” then I uploaded the new “enfold” and checked that your site is working correctly. Please also check for yourself.
Once you are happy you, (or I) can delete the “enfold-old” via ftp, (not the WP theme page)
Should for some reason you wish to roll-back to the old version, it’s easy to do, simply rename the new “enfold” to “enfold-new” via ftp and then rename “enfold-old” to “enfold” then refresh your page.
Please take a look to see if this solved your issue.Best regards,
MikeMarch 2, 2019 at 4:39 am in reply to: Saving Enfold Contact Form to Database (Finally Solved!!) #1073489Hi,
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,
Thank you for the FTP access, I renamed your current theme to “enfold-old” then I uploaded the new “enfold” and checked that your site is working correctly. Please also check for yourself.
Once you are happy you, (or I) can delete the “enfold-old” via ftp, (not the WP theme page)
Should for some reason you wish to roll-back to the old version, it’s easy to do, simply rename the new “enfold” to “enfold-new” via ftp and then rename “enfold-old” to “enfold” then refresh your page.The contact form is now working, Please see the screenshot & link in Private Content area.
Please clear your browser cache and check.Best regards,
MikeHi,
That is half of the css solution that I posted, it is to remove the highlighted button for the “current-menu-item” which you didn’t want highlighted. The other half of the css highlights the button you did want highlighted. But both require that the javascript part of the solution works to add the correct class.
If you change the word “destinations” it will do nothing, because it will be broken.
In order to get this to work, I need to see why the function is not working as I wrote it.Best regards,
MikeHi,
Are you using the Google Lighthouse tool for optimization? Please see this explanation to see this is what you are talking about.
If so perhaps this plugin will help: jQuery UpdaterBest regards,
MikeHi,
No, your WordPress login works fine, but I need FTP access in order to upload the new files. Please see this video about what FTP is to help understand what I mean: https://youtu.be/PeiXwNHEJo0Best regards,
MikeHi,
@tjjones thank you for the login, I was able to use the WP admin & FTP access.
I renamed your current theme to “enfold-old” then I uploaded the new “enfold” and checked that your site is working correctly. Please also check for yourself.
Once you are happy you, (or I) can delete the “enfold-old” via ftp, (not the WP theme page)
Should for some reason you wish to roll-back to the old version, it’s easy to do, simply rename the new “enfold” to “enfold-new” via ftp and then rename “enfold-old” to “enfold” then refresh your page.It seems that your site is working correctly, but I’m not sure where your buttons are, please check and let us know if this helped. Please be sure to clear your browser cache before examining the page.
Best regards,
Mike -
AuthorPosts

