Okay
  Public Ticket #2417217
A few small fixes
Closed

Comments

  • Nicholas started the conversation

    Hi guys,

    Bought the Bauman theme - really like it, great work.

    Just have a few small things I can't get right

    1. When I uploaded my logo, I had quite a big image and it was too big on the screen. I made a smaller img, but it then just blew it up to the same size as before so it was soft. Is this a bug?

    Anyway, I made a temporary fix by adding in additonal CSS

    #logo img {
      max-height: 15px;
    }

    But although the size is good, it doesn't line up vertically with the menu


    2. Is it an option in the theme to not have the hero image full screen in a portfolio item? I might anyway want it full screen, but would like to compare it to full width

    3. I would love the carousel images (Bauman Carousel) to move automatically. I did try changing

    autoplay:false,

    to

    autoplay:true, 

    in themes/bauman/js/scripts.js as per another thread, but that hasn't made any difference.

    changing items:3 to items:2 on wider screens did make a difference though.

    On another note and this was just for interest, why in the shortcodes.php file (in plugins>bauman-functionality-plugin/include there are shortcodes for both

    carousel_slide

    and

    carousel_slider

    though only the first one is used in Bauman Carousel and trying to use the second one manually gives an error

    4. The next link at the bottom of the portfolio items is working in reverse order at the moment - no3 has a link to no2 at the bottom etc

    5. How do I change the order of portfolio items on the home page? Do I manually change their published time and date? 

    I can give you a provate msg to my WIP site if helpful.

    Thanks for your help.

  •  1,810
    Support replied

    Hi Nicholas

    1. you can adjust the height of the logo

    #logo img {
        height: 40px;

    }

    in customizer -> additional CSS

    it will try to cover the available width so you can change just the height

    I hope it answers your question I need to inspect the site in case the pb is different

    2. the hero image is fullscreen however when you navigate to a portfolio item the code will automatically scroll it a bit so you can see the content. you can remove that effect if you want

    3. One of the shortcodes is for the carousel slider (container) and the second is for the slides (individual elements)

    4. try changing the the portfolio navigation order in customizer -> portfolio settings

    5. yes the safest way is to backdate the portfolio items

    https://www.wpbeginner.com/beginners-guide/how-to-back-date-your-wordpress-posts/

    Thank you.

    Clapat Support

    https://www.clapat.com/

    Review Envato Item Support Policy

  • Nicholas replied

    Hi guys

    So you were able to fix problems 3,4,5 which is good, but the other problems remain plus a new one

    1. On my home page https://nicklear.com/, somehow now the pattern is broken - the images should be 1/2 width + 1/2 width, full width, etc - but after 9 images that pattern stops. 

    2. The logo does not line up with the menu vertically, and it's worse on a phone

    3. You said "he hero image is fullscreen however when you navigate to a portfolio item the code will automatically scroll it a bit so you can see the content. you can remove that effect if you want" - can you tell me where the option is so I can try it.

    4. Is it possible for the carousel images to automatically move?

    5. The kerning is bad on the dash - see "Hi-Tec" on my home page

    Would you like to have my wordpress login to check it out properly?

  •  1,810
    Support replied

    Hi,

    yes, that would be good, send it plz in a private comment.

    Thank you.

    Clapat Support

    https://www.clapat.com/

    Review Envato Item Support Policy

  •   Nicholas replied privately
  • Nicholas replied

    Also, I'm regularly finding the site is down with this error - the hosting company claim it's not them. Can it be the theme?


    This site can’t be reached

    nicklear.com took too long to respond.

    Try:

    ERR_CONNECTION_TIMED_OUT


  • Nicholas replied

    Hi guys

    No news in the whole of the last week on my fixes?

  •  1,810
    Support replied

    Hello Nicholas, sorry about this, I had to escalate your ticket to our web designer, we will process your ticket today.

    Thank you.

    Clapat Support

    https://www.clapat.com/

    Review Envato Item Support Policy

  •  1,810
    Support replied

    Hello Nicholas,

    while we are waiting for the answer to the other points:

    3. You said "he hero image is fullscreen however when you navigate to a portfolio item the code will automatically scroll it a bit so you can see the content. you can remove that effect if you want" - can you tell me where the option is so I can try it.

    in original parent theme /js/scripts.js I commented out this bit

    if( $('#project-nav').length > 0 ){

    if ($("body").hasClass("smooth-scroll")) {
    TweenMax.to(scrollbar, 1.5, {scrollTo:120, delay:0.3, ease:Power4.easeInOut});
    } else {                    
    TweenMax.to(window, 1.5, {scrollTo:120, delay:0.3, ease:Power4.easeInOut});           
    }
    }



    4. Is it possible for the carousel images to automatically move?

    I added to parameters to the carousel slider shortcode initialisation:

    autoplay: true,
    autoplayTimeout: 5000,

    lines 1887, 1888

    that makes the carousel play in loop:

    https://nicklear.com/work/delivery/


    Hard refresh (Ctrl+F5) to see the changes

    Thank you.

    Clapat Support

    https://www.clapat.com/

    Review Envato Item Support Policy

  • Nicholas replied

    Thank you for getting back to me.

    Re point 3 - I am not seeing any difference, but I'm not bothered about this issue any more, so let's ignore it

    4. This is wokring now on desktop, thank you - it looks cool. Doesn't work on my phone though (Chrome Android). I'm guessing it's just not supported?

  •  1,810
    Support replied

    Hi Nicholas, make sure you hard refresh the page on both (Ctrl+F5 in desktop browser, clear cache on mobile)

    Thank you.

    Clapat Support

    https://www.clapat.com/

    Review Envato Item Support Policy

  • Nicholas replied

    Yes you're right, it does work on mobile.

    Any news on the other points?

  •  1,810
    Support replied

    Hi Nicholas,

    try to bring the logo down a bit with

    #logo {
        top: 28px;
    }

    and a bit more for mobile menu:

    @media only screen and (max-width: 1024px){
    #logo {
        left: 30px;
    }

    }

    in customizer -> additional CSS.

    These values are just suggestions - you can change them to adjust the logo position.


    Thank you.

    Clapat Support

    https://www.clapat.com/

    Review Envato Item Support Policy

  • Nicholas replied

    I played with it a bit and it lines up now, thanks

    Only issues now are the kerning on the dash and the grid. It's not the end of the world if you can't fix it, I don't mind it too much, but it looks a bit wrong I think

  •  1,810
    Support replied

    Hi,

    yes it's the kerning for capital T 

    I'm not sure how you can fix this unless you can change the letter spacing but the effect is not that great for example

    .hero-title {
        letter-spacing: 0.25em;
    }


    Thank you.

    Clapat Support

    https://www.clapat.com/

    Review Envato Item Support Policy

  • Nicholas replied

    Have your web devs given up on fixing this theme? Haven't heard anything back in 3 weeks.

    As a reminder, the problem is that the grid of the portfolio should alternate 2 then 1 then 2 then 1 images etc as per http://clapat.ro/themes/bauman-wordpress/portfolio-grid/

    But it is not working like that on mine: https://nicklear.com/

  •  1,810
    Support replied

    Hello Nicholas,

    you need to set the thumbnail size in the portfolio item options (Normal or Wide)


    Thank you.

    Clapat Support

    https://www.clapat.com/

    Review Envato Item Support Policy

  • Nicholas replied

    Ah, thank you, that worked.

  • Nicholas replied

    EDIT: Host has resolved this issue, so all is good.

    I have migrated my site over to a new host. The site is working fine, but I can't login to admin at all, it just brings up a blank screen (see attachment). Do you know what could cause that?

    This is the error that the new host sent me:

    ==
    [30-Jul-2020 08:14:27 UTC] PHP Warning: Cannot modify header information - headers already sent by (output started at /home/nicklear/public_html/wp-content/themes/bauman/include/default-theme-options.php:168) in /home/nicklear/public_html/wp-includes/pluggable.php on line 1281
    [30-Jul-2020 08:14:27 UTC] PHP Warning: Cannot modify header information - headers already sent by (output started at /home/nicklear/public_html/wp-content/themes/bauman/include/default-theme-options.php:168) in /home/nicklear/public_html/wp-includes/pluggable.php on line 1284
    ==

  •  1,810
    Support replied

    ok that’s great Nicholas

    Thank you.

    Clapat Support

    https://www.clapat.com/

    Review Envato Item Support Policy