Static Block \"Victoria\" keeps loading…

This topic has 58 replies, 3 voices, and was last updated 7 years, 1 months ago ago by Rose Tyler

  • Avatar: Rose Tyler
    Rose Tyler
    Support staff
    August 23, 2017 at 10:38

    Hello,

    5. Unfortunately, I can’t see this button in browser so can’t inspect the code and provide custom css to disable the button.
    6.
    Simply open function.php file of your child theme and add this code:
    http://prntscr.com/gbznti

    add_filter( 'woocommerce_product_tabs', 'woo_remove_product_tabs', 98 );
    
    function woo_remove_product_tabs( $tabs ) {
    
        unset( $tabs['additional_information'] );  	// Remove the additional information tab
    
        return $tabs;
    
    }

    8. You may simply add size guide image in product Description or link to size guide image or to page with needed information.

    You may check our demo of Classico and other themes to find some new idea for your site https://themeforest.net/user/8theme/portfolio

    Regards

    Avatar: rfgroupab
    rfgroupab
    Participant
    August 24, 2017 at 07:36

    Hello again!

    5. It’s ok I fixed it!
    6. Thank you!
    8. That worked great thanks!

    I now have another 3 small problems I would need some help with.
    Here is a picture to help you understand what I mean https://prnt.sc/gcdife

    1. I have a text : “Your cart is currently empty” besides my other “Your shopping cart is empty”.
    Id like to remove “Your cart currently is empty” but I can’t find where it is located.

    2. Wonder how I can change the icon of the shopping cart. I think it looks very pixely on the phone.

    3. When I go to my inspiration page with alot of images and hover over an image, the name pops up under the pointer. I was wondering if there is a way to hide this?

    Thank you so much for all your help

    Warm regards
    Hugo

    Avatar: rfgroupab
    rfgroupab
    Participant
    August 24, 2017 at 20:06

    I would also like to add this font :
    <link href=”https://fonts.googleapis.com/css?family=Raleway:300&#8243; rel=”stylesheet”>

    But I don’t understand how I do it on this theme. Can you help me with this please?

    Thanks
    Hugo

    Avatar: Rose Tyler
    Rose Tyler
    Support staff
    August 25, 2017 at 09:42

    Hello,

    Please read this topic https://www.8theme.com/topic/gooogke-font-add-on-to-theme/

    Regards

    Avatar: rfgroupab
    rfgroupab
    Participant
    August 25, 2017 at 19:17

    Thank you but you still didn’t reply to my other questions:

    I now have another 3 small problems I would need some help with.
    Here is a picture to help you understand what I mean https://prnt.sc/gcdife

    1. I have a text : “Your cart is currently empty” besides my other “Your shopping cart is empty”.
    Id like to remove “Your cart currently is empty” but I can’t find where it is located.

    2. Wonder how I can change the icon of the shopping cart. I think it looks very pixely on the phone.

    3. When I go to my inspiration page with alot of images and hover over an image, the name pops up under the pointer. I was wondering if there is a way to hide this?

    Warm regards
    Hugo

    Avatar: rfgroupab
    rfgroupab
    Participant
    August 26, 2017 at 01:29

    And nope what was said in the forum post that you told me didn’t work at all..

    It said that I should copy the code in the functions.php folder under <head> but there is no such coding in my functions.php folder.

    Check for your self: https://prnt.sc/gd4l0d

    So how do I add the font?

    Regards
    Hugo

    Avatar: laranz
    Laranz
    Participant
    August 26, 2017 at 01:46

    Hi,

    1. Use this Cusotm CSS to hide the text,

    p.cart-empty {
        display: none;
    }
    

    2. To override or change the icon, use this Custom CSS.

    .cart-design-1 .shopping-cart-widget .ico-sum {
        background-image: url("http://example.com/userimage.jpg");
     }

    If you want to change that to something like fontawesome, then copy the function “etheme_top_cart” in wp-content/themes/xstore/framework/woo.php and change the name <i class='ico-sum'></i> to a fontawesome equivalent.

    3. That is the default browser behavior, you can override that using this CSS,

    .vc_single_image-img {
        pointer-events: none;
    }

    4. Which file or code snippet you want to copy? I didn’t understand that part.

    Let us know,

    Thanks,
    laranz.

    Avatar: rfgroupab
    rfgroupab
    Participant
    August 26, 2017 at 02:43

    Hi!

    1.2.3 Thank you!

    4. I want to add a font so I can change the text on my webbsite.
    This is the fontcode:

    <link href=”https://fonts.googleapis.com/css?family=Raleway:300&#8243; rel=”stylesheet”>

    I found it on this webbsite: https://fonts.google.com/specimen/Quicksand?selection.family=Raleway:300

    And when I check videos and forums how to edit a new font to your wordpress site. They tell you to copy that code into the functions.php folder in between the <head> </head>.
    But as you can see in this picture : https://prnt.sc/gd4l0d
    There is no <head> </head>. So how can I add this font to my site?

    Thanks!

    Avatar: laranz
    Laranz
    Participant
    August 26, 2017 at 03:08

    Hi,

    4. That is for HTML website, still you can do that for WordPress site, you can put that in header.php file. But I suggest you this way, add this in your functions.php

    add_action( 'wp_enqueue_scripts', 'YOURTHEMENAME_enqueue_styles' );
    function YOURTHEMENAME_enqueue_styles() {
       	wp_enqueue_style( 'YOURTHEMENAME_googleFonts', '//fonts.googleapis.com/css?family=Raleway' );
    }

    or Use some Google fonts plugin.

    Let us know,

    Thanks,
    laranz.

    Avatar: rfgroupab
    rfgroupab
    Participant
    August 26, 2017 at 15:52

    Ok great than you!

    I was also wondering if there is a possibility to only show numbers of items in the shoppingcart when you have more than 0. So when you enter the site and havn’t added any items to the cart there wont be a 0 above the cart.
    Is there a code, plugin or something I can add to fix this?

    Thanks
    Hugo

    Avatar: laranz
    Laranz
    Participant
    August 28, 2017 at 04:16

    Hi,

    Use this Custom CSS,

    #basket a[data-items-count="0"] .badge-number { display: none; }

    Let us know,

    Thanks,
    laranz.

    Avatar: rfgroupab
    rfgroupab
    Participant
    August 29, 2017 at 19:59

    Hi.

    Awesome thank you, that worked!

    I now only have 4 questions left I belive before I am satesfied with my website.

    Take a look at this picture here to make it easier to understand what I mean:
    https://prnt.sc/gelq83

    1. I’l like to add a circle behind the number of items in the cart to make it look more appealing. Is there a css code for this you could help me with?

    2. Forget number two it is fixed now.

    3. I’ve changed all the font settings to a font named “Quicksand”, but still there are a few places the font ins’t changed yet. Nuumber 3 is the price for all the products.
    Can you help me with changing the font to Quicksand on these?

    4. I was wondering about these payment and shipping methods pictures. Is there an Pluin for this or is it just to copy and paste the picture into your site?

    I give you our Private Content if you would be so kind and go in to the site and help us set this up!

    Thank you so much
    Hugo

    Please, contact administrator
    for this information.
    Avatar: rfgroupab
    rfgroupab
    Participant
    August 31, 2017 at 22:04

    Hello??

    Avatar: laranz
    Laranz
    Participant
    August 31, 2017 at 23:49

    Hi,

    Sorry for a late in response.

    1. Adjust all these values according to your needs, including, color, padding, margin, height, width,

    .badge-number {
        background-color: red;
        border: 1px solid #e3e3e3;
        border-radius: 50%;
        height: 24px;
        margin-right: -14px;
        padding: 2px;
        width: 24px;
    }

    2. Forgot. 😉

    3. Use this,

    .price, .amount {
        font-family: quicksand;
    }

    4. Exactly where you saw these images?

    Let us know,

    Thanks,
    laranz.

    Avatar: rfgroupab
    rfgroupab
    Participant
    September 3, 2017 at 01:13

    Hi.

    1. Awesome, it looks good!

    1.1 But I would like to change the color of the numbervalue inside the cirkle to white.
    I wrote my detail information so you can go in and change the css for me or if you tell me the code!

    1.2 I would also like to change the font of the numbervalue to a thicker one.

    1.3 And it looks bad on the phone, look at this picture: https://prnt.sc/gg20u7 it is positioned
    outside of the phone frame. Can you change this for me pls?

    4. Never mind, I figured it out!

    5. And another thing im trying to figure our which I find very difficult to find a good answer to but should be a super common quesion is:

    When I add a big picture on my wordpress site, it looks big and good on the Computer. BUT when I look at the phone the picture it is very very small. How do I do to take like a normal size image to not get so shrinked on the phone format?

    The image you see on: https://prnt.sc/gg20u7 is: 2800px x 1719px this is a huuuge image. It takes up my whole screen on the computer but on the phone it is much much smaller. I know this can’t be the right way to make big images on the phone. I would need to have like 10 000px x 10 000px if I’d like it to cover the whole Phone in this way.

    So my question is:
    How do I add an image to my wordpress site that looks big on the phone whitout having to upload a super huge image.

    Thank you!

    Please, contact administrator
    for this information.
    Avatar: laranz
    Laranz
    Participant
    September 4, 2017 at 07:04

    Hi,

    1.1. & 1.2. Use this Custom CSS,

    .badge-number { background-color: #fff; font-weight: bold; }

    1.3

    @media only screen 
      and (min-width: 320px) 
      and (max-width: 480px) {
    .badge-number { margin-right: 10px; padding-left: 7px; }
    }

    1.4 Can you show the actual URL where this happens?

    Let us know,

    Thanks,
    laranz.

    Avatar: rfgroupab
    rfgroupab
    Participant
    September 6, 2017 at 08:22

    Hello

    1.1-1.3
    Thank you!

    1.4

    If you take a look at this image here: https://prnt.sc/ghocvs
    You can see that “BILD1” (1168x624pxl) is alot smaller than “BILD2″(2800x1719pxl) on the PC. But when you look at the phone they are basically the same size even though BILD2 should be ALOT bigger right?

    I would like to add an image to be the same size as “Pic3” (a picture that almost covers the whole phone) but only on the phone then ofcourse. How can I do this?

    These are the urls of the pictures that you asked for.

    BILD1: https://www.roseandflores.com/wp-content/uploads/2015/04/bild.png 1168x624pxl
    BILD2: https://www.roseandflores.com/wp-content/uploads/2015/04/MOBILbildtop2.jpg 2800x1719pxl

    Thank you so much!

    Avatar: Rose Tyler
    Rose Tyler
    Support staff
    September 8, 2017 at 09:38

    Hello,

    Sorry for the delay.
    Please try to add this code in Custom css for mobile:

    .bild-banner img {
        min-height: 600px;
    }

    Regards

    Avatar: rfgroupab
    rfgroupab
    Participant
    September 8, 2017 at 23:24

    Hi.

    Okey thank you that workder!

    But then I tried to do the same code to this image: MOBILbildtop2
    Like this:

    .MOBILbildtop2-banner img {
    min-height: 600px;
    }

    And it didn’t work.
    Why?

    Regards

    Avatar: Rose Tyler
    Rose Tyler
    Support staff
    September 11, 2017 at 08:51

    Hello,

    I’ve added custom class http://prntscr.com/gjokwu Please check.

    Regards

    Avatar: rfgroupab
    rfgroupab
    Participant
    September 13, 2017 at 05:56

    Hey!

    Okey thanks!

    I’ve now noticed another problem.

    When I go into this page on my phone: https://www.roseandflores.com/return-and-exchange/
    It looks like this: https://prnt.sc/gki59b (on the right side)

    So the text insn’t visible at all and when I press the arrows nothing happens.
    So how can I fix this so the page doens’t look totaly blank?
    I think it is a problem with the elemnt FAQ!

    On the left side is this url: https://www.roseandflores.com/common-questions/
    I don’t want these images to be uneven like this. Can you help me fix so that they are right on top of eachother?

    You have my information down below if you would need it!

    Please, contact administrator
    for this information.
    Avatar: Rose Tyler
    Rose Tyler
    Support staff
    September 13, 2017 at 09:01

    Hello,

    1. You added this http://prntscr.com/gkjk7n, so on mobile, you have the current result. I’ve removed this padding, so please check Return & Exchange page now.
    2. On this page you have the similar problem http://prntscr.com/gkjlmk
    I’ve made some changes. Please check.

    Regards

    Avatar: rfgroupab
    rfgroupab
    Participant
    September 15, 2017 at 08:42

    Hi.

    Thank you so much again.

    I need help now and please as fast as possible, I am just about to launch the site.

    But now I have a serious problem. When I go into my checkoutpage the detailinformation is already filled in with a person and my phonenumber and a mail.

    Look here: https://prnt.sc/gle0x8 this is how it looks right after I enter the page. It even does so for my friend who entered it from his computer.

    I contacted my hostingprovider and they cleared the chace but it didn’t help. They said that you should know what to do and help me.

    Please help me out with this. If you can go in to my wordpress and fix it would be great, I added my information below.

    Thanks!

    Please, contact administrator
    for this information.
    Avatar: Rose Tyler
    Rose Tyler
    Support staff
    September 15, 2017 at 09:02

    Hello,

    You’re welcome!
    Please do not worry, it is not a bug or problem. The same situation you may see with Storefront theme (official WC theme). These fields are filled automatically by information from your profile that you may see in Dashboard > Users.

    Regards

    Avatar: rfgroupab
    rfgroupab
    Participant
    September 15, 2017 at 13:49

    Hey.

    I dom’t understand. So this won’t show up for other users? If I still want to remove this, how can I do it?

    Regards
    Hugo

    Avatar: Rose Tyler
    Rose Tyler
    Support staff
    September 15, 2017 at 14:06

    Hello,

    For others users, there will be shown their own information or nothing, it depend on if it is his first purchase or they already bought something on your site and have appropriate information on http://prntscr.com/glhs7k As I said before, the same situation persists with default theme so it doesn’t relate to our theme so you may contact woocommerce support to remove this.

    Regards

    Avatar: rfgroupab
    rfgroupab
    Participant
    September 15, 2017 at 14:29

    Okey.

    I had my https://www.roseandflores.com/my-account/ in the trash before. Should I have it activated or in draft, or does that not matter at all?

    And this is what the username is: https://prnt.sc/gli6cf

    That is not what is shown when I enter the checkout, then the name is Anton Kreum ?? 😮

    Regards
    Hugo

    Avatar: Rose Tyler
    Rose Tyler
    Support staff
    September 15, 2017 at 14:44

    These questions relate to woocommerce functionality, not strictly to our theme, so contact woocommerce support to sort out.

    Regards

  • 1 2
    Viewing 58 results - 31 through 58 (of 58 total)

You must be logged in to reply to this topic.Log in/Sign up

8theme customization service
We're using our own and third-party cookies to improve your experience and our website. Keep on browsing to accept our cookie policy.