Home Forums Basel support forum Wishlist and categories

Wishlist and categories

Viewing 11 posts - 1 through 11 (of 11 total)
  • Author
    Posts
  • #18504

    yvo010
    Participant

    Hi,

    I have a problem.
    The wishlist button is behind the category tags on some pages:
    WRONG: https://ibb.co/cXZq6k
    GOOD: https://ibb.co/c71Re5

    and also another question,
    I real like your new theme how the login looks like, (with a kind of popup screen)
    Is it maybe possible to achieve this in the Basel theme?

    #18511

    Artem Temos
    Keymaster

    Hi,

    Please, send us a link where we can see it. Sorry, but Basel theme doesn’t have such a login popup window. Maybe we will consider adding this feature in the future.

    Regards

    #18515

    yvo010
    Participant
    #18528

    Bogdan Donovan
    Keymaster

    Hi,

    Try to add the following code snippet to the Custom CSS area in Theme Settings to fix this issue.

    .product-design-alt .yith-wcwl-wishlistaddresponse {
    	display: block;
    }
    
    .single-product .website-wrapper .product-design-alt .entry-summary div.product_meta {
    	margin-top: 15px;
    }

    Regards

    #18589

    yvo010
    Participant

    Hi,
    It did not help..
    Look, it is only when I have it in 2 categories..
    2 Categories: https://ibb.co/d8TxnQ
    1 Category: https://ibb.co/hcZEZ5

    And another thing, maybe you could help me with this:
    https://ibb.co/hffhMk
    As you see the cookie law info is under the chat icon, maybe I can put it more to the left?

    #18590

    yvo010
    Participant

    It is just on some products, I don’t know why.. maybe it is on cache ? But I don’t think so..

    #18608

    Bogdan Donovan
    Keymaster

    Hello,

    Please replace the previous snippet code with the code snippet below.

    .single-product .website-wrapper .product-design-alt .entry-summary  .yith-wcwl-add-to-wishlist {
    	display: block;
    	margin-bottom: 0;
    }
    
    .single-product .website-wrapper .product-design-alt .entry-summary div.product_meta {
    	margin-top: 15px;
    }
    
    @media (min-width: 769px) {
    
    	.basel-cookies-inner {
    	  margin-right: 70px;
    	}
    }

    Regards

    #18630

    yvo010
    Participant

    Thank you so much. It worked!

    I have one small thing:
    how can i change the share button style of the share buttons for product pages?
    I like the grey icons. But if i turn on the share product options, the icons are colored.

    Thanks!!

    #18631

    Artem Temos
    Keymaster

    You can do this only customizing the file basel/woocommerce/content-single-product.php. Change the code

    basel_shortcode_social( array( 'type' => basel_get_opt( 'product_share_type' ), 'size' => 'small', 'align' => 'left' ) );

    to

    basel_shortcode_social( array( 'type' => basel_get_opt( 'product_share_type' ), 'size' => 'small', 'align' => 'left', 'style' => 'colored' ) );

    #18632

    yvo010
    Participant

    https://demo.xtemos.com/basel/social-buttons/
    I want the Grey one,
    not the colorod, so what do i need to fill in in stead of : ‘colored’ ?

    #18633

    Artem Temos
    Keymaster

    OK, replace to this one

    basel_shortcode_social( array( 'type' => basel_get_opt( 'product_share_type' ), 'size' => 'small', 'align' => 'left', 'style' => 'circle' ) );

Viewing 11 posts - 1 through 11 (of 11 total)