Please submit a private ticket if you need to share sensitive information, such as license details and admin credentials.

Okay
  Public Ticket #3573242
Would love to increase the thumbnails sizes
Closed

Comments

  •  3
    Titas started the conversation

    Purchased premium version. Would love to increase the thumbnails sizes on desktop view. Could you please give me a code to paste?

  •  767
    Janilyn replied

    Hi Titas,

    Thank you for contacting WPClever Support Forum. We’ve received your question.

    However, we need more information in order to help you with the custom codes. Please provide us with a link to your published product for checking? 

    We need to check the frontend in order to provide the proper CSS code for your needs.

    After receiving your information, I'll proceed to the next step. 

    Best regards. 

    Janilyn T. - WPClever Support Agent

  •  3
  •  767
    Janilyn replied

    Hi Titas,

    I have assigned one of our developers to help you with that. 

    He’ll be looking into your question and responding with specific instructions as soon as possible. 

    Please stay patient as we're having very heavy workloads, it might take some time for our developers to reach back.

    Best regards.

    Janilyn T. - WPClever Support Agent

  •  1,222
    Dustin replied

    Hi Titas,

    To change the image size for the list layout, please add below CSS code to WP-Admin → Appearance → Customize → Additional CSS:

    .woobt-layout-default .woobt-products .woobt-product .woobt-thumb {
        width: 90px;
        flex: 0 0 90px;
    }

    And the result https://app.screencast.com/6Aug8qzeDxKxt

    If you want to use the grid layout, please choose "2 columns" or "3 columns" then the image will be bigger.

    Best regards,
    Dustin

  •  3
    Titas replied

    Thank you very much, Dustin. All good with desktop. But if I choose the List Layout - which I love on desktop and choose that it would be possible to change quantity - which is a must. It completely messes up the mobile layout - please see "current outcome" attached - the price of the item doesn't fit anymore and become non-visible. Would it be possible to make that it would display everything nicely - something like in the "desired outcome" ? That everything would fit on the screen and look compact in the list order.

    Attached files:  Current Outcome.jpeg
      Desired Outcome.jpeg
      desktop I love it.PNG

  •  1,222
    Dustin replied

    Please enable this option https://app.screencast.com/VG9c8oKkx1bY9

    Then it looks like that https://app.screencast.com/yWVAjt5I4MqO3 on the mobile screen.

    Best regards,
    Dustin

  •  3
    Titas replied

    In this case, 2 accessories take up all the phone screen... That's just a terrible idea and doesn't look anything as the "desired income" I mentioned. It's not only me who is not happy with the Responsive mode layout - just in the forum I saw 10 similar posts - by making some upgrades it would help your plugin look better and to make more sales.

  •  1,222
    Dustin replied

    Please turn off the responsive option then add the below custom code (How to add custom code?):

    add_action( 'wp_footer', function () {
        ?>
        <style>
            .woobt-products .woobt-product .woobt-title .woobt-price, .woobt-products .woobt-product .woobt-title .woobt-quantity {
                text-align: start;
                width: 100%;
                max-width: 100%;
                flex: 0 0 100%;
                margin-top: 5px;
            }
        </style>
        <script type="text/javascript">
          (function($) {
            $(function() {
              woobt_reponsive();
            });
            $(window).on('resize', function() {
              woobt_reponsive();
            });
            function woobt_reponsive() {
              var w = $(window).width();
              $('.woobt-product').each(function() {
                var $this = $(this);
                if (w > 767) {
                  $this.find('.woobt-quantity').appendTo($this);
                  $this.find('.woobt-price').appendTo($this);
                } else {
                  $this.find('.woobt-price').appendTo($this.find('.woobt-title'));
                  $this.find('.woobt-quantity').appendTo($this.find('.woobt-title'));
                }
              });
            }
          })(jQuery);
        </script>
        <?php
    }, 99 );

    And the result https://app.screencast.com/HFeQFXJsi641x

    Best regards,
    Dustin

  •  3
    Titas replied

    I love how it looks now, you're amazing Dustin!!!! However, once pasted the code - on my header  (desktop and mobile) appears this strange code - attached "Strange Header". I've tried deleting the additional code I had, which was this one, but it didn't help, the issue remains:

    .label-new.menu-item>a:after, .label-hot.menu-item>a:after, .label-sale.menu-item>a:after, .label-popular.menu-item>a:after, .label-custom.menu-item>a:after {
    text-transform: uppercase;
    font-size: 9px;
    font-weight: bolder;
    padding: 4px;
    border-radius: 2px;
    line-height: 12px;
    top: 1px;
    letter-spacing: 0.05em;
    margin-left: 4px;
    display: inline-block;
    position: relative;
    }
    .label-new.menu-item>a:after {
    content: 'New' !important; /* Change Text */
    background-color: #6168F2;  /* Change BG color */
    color: #FFFFFF; /* Change Text color */
    }
    .label-hot.menu-item>a:after {
    content: 'Hot' !important;
    background-color: #35CE9D;
    color: #FFFFFF;
    }
    .label-sale.menu-item>a:after {
    content: 'Sale' !important;
    background-color: #FC6070;
    color: #FFFFFF;
    }
    .label-custom.menu-item > a:after {
    content: 'Custom';
    background-color: #262626;
    color: #FFFFFF;
    }
    .grecaptcha-badge { visibility: hidden; }

    .woocommerce-Price-amount {font-size: 18px;}

    .pi-edd{
        font-size:14px; 
    font-weight: bolder;
    }

    .woobt-layout-default .woobt-products .woobt-product .woobt-thumb {
        width: 90px;
        flex: 0 0 90px;
    }


    Attached files:  Stange Header mobile.jpeg
      I love it.jpeg
      Strange Header mobile 2.jpeg
      Strange Header Desktop.PNG

  •  1,222
    Dustin replied

    Where did you paste the code? 

    If it's CSS code, please place it into WP-Admin → Appearance → Customize → Additional CSS.

    If it's a snippet (PHP code), please follow this article https://wpclever.net/faqs/add-custom-code

    Best regards,
    Dustin

  •  3
    Titas replied

    Sorry, I have no coding knowledge - so I pasted it to CSS....

    Now once pasted to PHP - everything works and there are no errors.

    Again Thank you very much! It's a dream come true. Can I send you $20 for coffee or something like that, to show my gratitude ?

  •  1,222
    Dustin replied

    Thanks for your kind!

    Using the premium version of our plugin has been great for our work.

    If you are satisfied with our plugin and support, please reward it with a full five-star ★★★★★ rating.
    https://wordpress.org/support/plugin/woo-bought-together/reviews/?filter=5
    Thank you in advance! ♥

    Best regards,
    Dustin