This topic has 58 replies, 3 voices, and was last updated 7 years, 1 months ago ago by Rose Tyler
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
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
I would also like to add this font :
<link href=”https://fonts.googleapis.com/css?family=Raleway:300″ rel=”stylesheet”>
But I don’t understand how I do it on this theme. Can you help me with this please?
Thanks
Hugo
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
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
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.
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″ 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!
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.
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
Hi,
Use this Custom CSS,
#basket a[data-items-count="0"] .badge-number { display: none; }
Let us know,
Thanks,
laranz.
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
Hello??
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.
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!
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.
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!
Hello,
Sorry for the delay.
Please try to add this code in Custom css for mobile:
.bild-banner img {
min-height: 600px;
}
Regards
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
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!
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
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!
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
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
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
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
These questions relate to woocommerce functionality, not strictly to our theme, so contact woocommerce support to sort out.
Regards
Tagged: best selling, persuasive, static block, victoria, woocommerce themes
You must be logged in to reply to this topic.Log in/Sign up