Forum Replies Created

Viewing 30 posts - 22,831 through 22,860 (of 35,208 total)
  • Author
    Posts
  • 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,
    Mike

    in reply to: Enable Related Posts #1073710

    Hey RobWestbrook,
    Sorry for the late reply,
    This is no longer available.

    Best regards,
    Mike

    in reply to: Socket with Line and Center #1073695

    Hi,
    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,
    Mike

    in reply to: Sidebar widget shortcode missing #1073656

    Hi,
    Please see in Private Content area.

    Best regards,
    Mike

    in reply to: Price and Quantity next to the shopping cart #1073649

    Hi,
    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,
    Mike

    in reply to: Wrong Category showing up on Menus #1073647

    Hi,
    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,
    Mike

    in reply to: Change background-image for mobile #1073640

    Hi,
    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 plugins

    Best regards,
    Mike

    Hi,
    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,
    Mike

    in reply to: Picture and text zoom on smartphone #1073625

    Hi,
    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,
    Mike

    in reply to: Issue with shopping buttons #1073621

    Hi,
    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,
    Mike

    Hey 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,
    Mike

    Hi,
    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,
    Mike

    in reply to: Content Element – Code Block #1073511

    Hi,
    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,
    Mike

    in reply to: Icon Grid : Flip #1073502

    Hi,
    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,
    Mike

    in reply to: Quickview plugins not showing quantity buttons #1073497

    Hi,
    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,
    Mike

    Hi,
    From other posts that I have seen, it works well.

    Best regards,
    Mike

    in reply to: Logo Not appearing as I'd like #1073487

    Hi,
    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,
    Mike

    in reply to: Mailchimp Widget (reply to Mike) #1073485

    Hi,
    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,
    Mike

    in reply to: Remove Highlighting from Main Menu Link for Posts #1073481

    Hi,
    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,
    Mike

    in reply to: Picture and text zoom on smartphone #1073476

    Hi,
    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 Updater

    Best regards,
    Mike

    in reply to: Sidebar widget shortcode missing #1073475

    Hi,
    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/PeiXwNHEJo0

    Best regards,
    Mike

    in reply to: Store is duplicated in the footer #1073474

    Hi,
    Ok, let us know if there is anything else we can assist with.

    Best regards,
    Mike

    in reply to: Issue with shopping buttons #1073473

    Hi,
    Are you saying that you have solved this?

    Best regards,
    Mike

    in reply to: Event Calendar Pro Embedded Theme Buttons #1073464

    Hi,
    @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

    in reply to: stick the header on mobile & iPad #1073181

    Hi,
    Thank you for the images, I will see what else I can adjust. Thank you for your patience.

    Best regards,
    Mike

    in reply to: Event Calendar Pro Embedded Theme Buttons #1073178

    Hi,
    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,
    Mike

    in reply to: Avia functionalities lost after update #1073177

    Hey 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,
    Mike

    in reply to: Translagte Read more to Lees meer #1073174

    Hi,
    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,
    Mike

    in reply to: Translating Cookie Settings #1072915

    Hi,
    Sorry for the late reply, I believe that you will need to enter the cookie notice text in your language, like this:
    2019-02-28-235037
    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,
    Mike

    in reply to: Avia builder not loading in Enfold 2017 demo pages #1072909

    Hi,
    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

Viewing 30 posts - 22,831 through 22,860 (of 35,208 total)