Forum Replies Created

Viewing 30 posts - 21,841 through 21,870 (of 34,223 total)
  • Author
    Posts
  • in reply to: Titles and breadcrumbs not looking right #1073727

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

    in reply to: Logo Center, Menu Below #1073724

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

    in reply to: Event date isn't working – impossible to set #1073720

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

    in reply to: Masonry Gallery: Image doesn’t open in lightbox #1073718

    Hi,
    Sorry for the late reply, I took a look at your site and settings and found that your lightbox setting was disabled, or un-checked:
    2019-03-02-134235
    I enabled it for you and now your galleries open in a lightbox, please check.

    Best regards,
    Mike

    in reply to: explorer header menu move to the right #1073714

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

    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

Viewing 30 posts - 21,841 through 21,870 (of 34,223 total)