Forum Replies Created
-
AuthorPosts
-
March 2, 2019 at 7:57 pm in reply to: Category page layout and single blog page navigation in mobile #1073711
Hi,
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,
MikeHi,
Thank you for the images, I will see what else I can adjust. Thank you for your patience.Best regards,
MikeHi,
Sorry for the late reply, the dev team has created a solution for an issue that is similar to yours and I believe it will help. Please include a admin login & FTP access in the Private Content area so that I can upload a updated version of the theme to see if it solves your issue.Best regards,
MikeHey burnair,
Sorry for the late reply, the dev team has created a solution for an issue that is similar to yours and I believe it will help. Please include a admin login & FTP access in the Private Content area so that I can upload a updated version of the theme to see if it solves your issue.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,
MikeHi,
Sorry for the late reply, I believe that you will need to enter the cookie notice text in your language, like this:

The reason is that you can enter any text into the field so there is no translation built into the theme, as with other elements.
Please let us know if there are other parts of the element that are not translated.Best regards,
MikeHi,
Sorry for the late reply, I checked your Home page and see that you are getting an error:/wp-admin/admin-ajax.php Failed to load resource: the server responded with a status of 404 (Not Found)I suspect that your “WPS Hide Login” plugin is blocking access to admin-ajax.php, or perhaps a different one is, please try disabling your plugins.
If this doesn’t help, try checking your server error log to find why this required file is giving a 404 (file not found)Best regards,
Mike -
AuthorPosts
