• Resolved fdias

    (@fdias)


    I would like to report a bug on the new version that removes the social icons and breaks the menu on mobile version of the site.

    I’ve tested on iPhone 5 using both Safari and Google Chrome and the same thing happens. Even the demo from the Themes and Co page still will not show the social icons and the menu closes before you can select any item.

    I hope I could explain the error properly.

    Thanks for a great theme!

Viewing 15 replies - 1 through 15 (of 18 total)
  • Theme Author presscustomizr

    (@nikeo)

    Thanks for reporting this @fdias. I am working on a fix for this.

    Theme Author presscustomizr

    (@nikeo)

    Hi @fdias
    Here’s a patch to fix the menu issue until the next release ( coming very quicly ).

    Paste this simple snippet into your functions.php file and this should fix the menu issue in responsive mode.

    add_action(‘wp_footer’ , ‘fix_menu_bug_3_2_1’);
    function fix_menu_bug_3_2_1() {
    if ( ! wp_is_mobile() )
    return;
    ?>
    <script id=”fix-menu-bug-3-2-1″ type=”text/javascript”>
    jQuery( function($) { $(document).off(‘touchstart.collapse.data-api’ , “**”);})
    </script>
    <?php
    }

    Theme Author presscustomizr

    (@nikeo)

    If you are not familiar with php, you can download and install a light patch plugin to fix the issue here.

    Thread Starter fdias

    (@fdias)

    Thanks a lot for the fix!

    Thread Starter fdias

    (@fdias)

    It fixed the menu issue, but still will not display the Social Icons on mobile.

    Could you please assist?

    Thanks again!

    Theme Author presscustomizr

    (@nikeo)

    Great!

    To display the social icons in your navbar header on mobile :
    1) go to appearance > customize > advanced options > custom CSS,
    2) and paste the following snippet :

    @media (max-width: 320px) {
     .navbar .navbar-inner .social-block {
      display: block;
     }
    }

    If this helped, please set this thread as resolved.
    Thanks!

    Thread Starter fdias

    (@fdias)

    Thank a lot. It′s working now!

    Thread Starter fdias

    (@fdias)

    Resolved! I’ll remove the code on the next update!

    Theme Author presscustomizr

    (@nikeo)

    Perfect. Thanks for the update.

    Thread Starter fdias

    (@fdias)

    I’m not sure it this is an issue or if it’s supposed to work like this, but I can only see the titles of the slides on the mobile version. The text below the title is not displayed.

    stellamaris5

    (@stellamaris5)

    Same issue, when reverted back to 3.1.24 it came back.

    I think I’m gonna stay on that for a bit

    nikeo is really doing an fantastic job on the support of this (FREE!) theme. I encountered several problems after updating, and I just waited for the fixes because I knew he would take care of it.

    That said, re: the mobile-version of the dropdown menu which is now fixed with 3.2.2. Mine is highly customized via css and PHP, but will it always be a scrolling menu? Is there an option (or snippet) for the full menu to display upon “click” (tap)?

    You can see what I mean at https://www.craftprocontracting.com

    Thanks for the amazing theme.

    Oxygen89

    (@oxygen89)

    I agree with fdias, I’m facing same issue also. The description is not visible after viewing the site on mobile version, only heading and read more button is visible. I hope nikeo knows about this.

    Thanks

    Theme Author presscustomizr

    (@nikeo)

    Hi @craftpronj, I understand your point regarding the scrolling menu. This is in the whislist of another user too. I will most probably make this optional in the next release.

    Thanks for your comment, I am glad you’re using the theme for your web presence!

    Theme Author presscustomizr

    (@nikeo)

    Hi @fdias and @oxygen89,
    Yes I know about this since it is a design choice. This can easily be customized/changed by adding this CSS code into the custom CSS customizer field or in your style.css file.

    @media (max-width: 767px)
    .carousel-caption .lead {
    display: block;
    }

    If this becomes a recurring request, I might add an option to display it back.

    Thanks for your feedback, it helps!

Viewing 15 replies - 1 through 15 (of 18 total)
  • The topic ‘BUG REPORT’ is closed to new replies.