This topic has 32 replies, 5 voices, and was last updated 7 years, 3 months ago ago by Olga Barlow
Hello,
I still get error 500 when my page setting as portfolio.
Could you help me with this?
Hello,
Check now, please.
Regards
It’s working! Many thanks 😉
But I have another question.
Is it possible to make a single product page like this?
https://www.vescom.com/pl/dessin/clark
In first image (picture) should be shown visualisation. Other images should be shown patterns (samples). But in shop page should be shown pattern image. Is it possible?
https://www.vescom.com/dessins-wallcovering-pl–0-0—0—0—0–83
Thanks!
you can choose template / layout for single product page in,
8theme options >> e-commerce >> single product page >> page layout
these are the only available options for single page layout for now.
there are are 9 layouts.
Thanks, it’s working.
Now I have a main question.
Is it possible to create product page like this?
https://www.vescom.com/pl/dessin/tessera
I need a product page with name of grouped product name.
In this product page should be (like in link):
variations products of this group which customer can buy. You cannot buy grouped product but their variations like in link.
This example product have a name:
Tessera 1071.01 – 1071.34
when you open that product page you can buy variations form number 1071.01 to 1071.34?
Is it possible to make?
Hello,
I think you are looking something like color swatch plugin, for example https://docs.woocommerce.com/document/woocommerce-color-and-image-swatches/ or https://codecanyon.net/item/wooswatches-woocommerce-color-or-image-variation-swatches/7444039
or any similar.
And also you’ll be able to use similar layout of the single product page https://www.8theme.com/demo/xstore/bike/product/ullamcorper-condimentum-ullamcat/
Regards
Ok thanks 🙂
Another questions
1) Is it possible to change product gallery images to 98x98px? I set that dimensions in WooCommerce options and I still get 98x45px
http://vadowallcoverings.com/product/vado-vinyl-01001/
https://postimg.org/image/y67aml9pr/
2) How to delete additionals informations? 🙂
3) I would like to delete links to single portfolio item. I need only same images with no link to single portfolio item.
Thanks!
Hello,
1) Go to WooCommerce > Settings > Products > Display > set 98×98 + enable Hard crop option in thumbnails settings. After that install and activate Regenerate Thumbnails plugin and go to Tools > regenerate thumbnails > regenerate all.
2) Follow the instructions and use WC snippet in child theme function.php to remove Additional Information tab https://docs.woocommerce.com/document/editing-product-data-tabs/
3) Add the following code in Theme Options > Styling > Custom CSS
.portfolio-image > a, .portfolio-descr {
pointer-events: none;
}
Regards
Thank you. It’s working 🙂
But I have antoher question:
Why this image in red circle have diffrent size than others? It should be 98x98px.\
https://postimg.org/image/b9j48crav/
Thanks for help.
Hello,
It’s because hard crop option was not enabled when you uploaded image http://prntscr.com/fjqyig
Set the necessary dimensions and choose hard crop for the thumbnails if you want to crop them. After that install and activate Regenerate Thumbnails plugin and regenerate thumbnails.
Regards
It won’t work 🙁
I did everyting as you said but still the same size of image…
And another question – is it possible to show more photos in product gallery? Now I have 4. I would like to decrease padding beside the photos but i don’t know how.
Could you help me?
Hello,
It’s strange. Provide me, please, FTP access. We’ll try to help you.
Regards
Login and pass below.
Hello,
I need FTP access to your site:
FTP host, FTP username and FTP pass.
Regards
Here’s the access.
Hello,
I can’t connect to your server
Response: 530 Login incorrect.
Regards
Fort me it works.
Try use encryption in FileZilla:
Use explict FTP over TLS if available.
Hello,
Sorry for the delay.
Make sure that you provided the correct password. Still without luck
Regards
Please give me your IP and I give you access to FTP. No I have restriction problems with FTP…
Hello,
IP of expert who will work with you is 176.98.70.175
Regards
Please check now.
Hello,
Done.
Regards
It works 🙂 Thanks.
Sorry to intetrrupt you again but I’ve instaled Loco Translate and my translations don’t work. Could you see where is the problem? 🙁
Hello Olga again 🙂
I have two more things:
1) Is it possible to set title under the thumbnails?
https://postimg.org/image/7ytnpeyzf/
2) Is it possible to hide all prices from my shop? All products in my shop can be order as as sample. Therefore they should be for free. Would that possibile to hide all prices? https://postimg.org/image/gspqwlf6h/
Thanks for your help.
Hi,
1. You can change this file, /woocommerce/single-product/product-thumbnails.php in your child theme. If you don’t have this file, create that along with the folder structure and use this content http://take.ms/UQf7g I just made the changes, you can take this customization further to match your requirement. ( after making this change, make sure you have alt text for your thumbnails. Fill this area: http://take.ms/hxbaT )
2. You can try adding something like this in the functions.php
remove_action( 'woocommerce_after_shop_loop_item_title', 'woocommerce_template_loop_price', 10 );
add_filter( 'woocommerce_variable_sale_price_html', 'businessbloomer_remove_prices', 10, 2 );
add_filter( 'woocommerce_variable_price_html', 'businessbloomer_remove_prices', 10, 2 );
add_filter( 'woocommerce_get_price_html', 'businessbloomer_remove_prices', 10, 2 );
function businessbloomer_remove_prices( $price, $product ) {
$price = '';
return $price;
}
Likewise, this is just the starting point, you can take this customization and build your requirement. 🙂
Let us know if you have any other questions,
Thanks,
laranz.
Hello Laranz,
1) I did everything like u said but still don’t see the titles under the thumbnails. I set alt on images on this pages: http://vadowallcoverings.com/produkty/vado-vinyl-01001/
Here is my php file, please check what’s wrong:
https://ufile.io/k3zzu
2) I added this code but I still see the prices:
https://postimg.org/image/ewotdt14p/
https://postimg.org/image/rmogd5jp5/
https://postimg.org/image/wwtf4g3y1/
Thansk!
Hi,
1. You missed few things in the edit, did you use the file I gave? I edited that using the AceIDE plugin in to the theme, you can check now.
2. Like I said, it has take so many things to hide the price in woocommerce, you can check this answer for that, https://wordpress.stackexchange.com/a/90993 or hopefully find a plugin that do this task for you.
Let us know,
Thanks,
laranz.
You must be logged in to reply to this topic.Log in/Sign up