Viewing 12 posts - 1 through 12 (of 12 total)
  • Author
    Posts
  • #671081

    Hi

    1. I want to display products image size to 300×300 and i have uploded an image with the same size but the product page is displaying image bigger. I have used Regenerate Thumbnails and still the same. Went to Woocommerce setting and set product size to 300×300 and still the same.

    2. Is there a way to not display SKU and categories links?

    3.When click on category link it goes to a page (Link bellow) how to edit that page. So or i can eddit that page or i have to eliminate the link of category that shows on the product detail so i can create my own link to other page.\

    4. How to deactivate related product on product page.

    5. What would be the recommended size for Product Category Image (the one that appears as header).

    Thank you very much

    • This topic was modified 8 years, 3 months ago by hdpcr.
    #672427

    Hey hdpcr,

    Thank you for using Enfold.

    1.) The image size is correct. http://fantasyrooms.com/wp-content/uploads/2016/08/co%C3%B1aca_courvoisier_300x300-200×200.jpg

    2.) Add this in the Quick CSS field:

    .product_meta {
        display: none;
    }

    3.) Refer to number 2.

    For more questions, please create a single thread or post for each inquiry. Thank you.

    Best regards,
    Ismael

    #672782

    Hi

    About number onr image is correct becasue i found a solution arround after 4 days awaiting an answer
    About N2 only that css hides part of the info the rest is still shown again as i cannot wait 4 days until you give me part of the answer and wait another 4 day to have the rest

    At least be kind answer last questions instead of having me opeing other thcket and wait a few days.

    Thanx

    #673715

    Hi :)

    2- Categories do not show up on single product page on my end at the moment, have you figured out that one?

    4- Please add following code to Functions.php file in Appearance > Editor

    function avia_remove_related_products( $args ) {
    	return array();
    }
    add_filter('woocommerce_related_products_args','avia_remove_related_products', 10); 

    5- 300x300px would be fine. Currently placeholder images are being displayed at 291x291px

    Best regards,
    Yigit

    #673765

    Hi Yigit

    You cannot see meta because i looked arround and i found a CSS. I wanted to hide them because i when clic on category link it takes me to categories pages witch i cannot customize and its displays weirds. Please read last pst #673502 and you will understand what i needed.

    Thank you very much.

    #673905

    Hi,

    Alright, i will check the your other thread regarding #2.
    Has 4 and 5 worked fine?
    If so, we will close the thread so we can continue on the other one :)

    Best regards,
    Yigit

    #673917

    Hi Yigit

    Just to make sure if its ok this is what i found arround tell me if its ok and not sure if it covers categories too.
    Thank you very much

    About image sizes im still confused because it displays in individual product i think 400×400 and when i click over the image it goes back to uploaded size witch is 300×300.
    /*Remove Categoties in product*/
    .sku {
    display: none;
    }

    .posted_in {
    display: none;
    }

    .tagged_as {
    display: none;
    }

    .product_meta {
    display: none;
    }

    • This reply was modified 8 years, 3 months ago by hdpcr.
    #673921

    Hey!

    You can group them into one code as following

    .sku, .posted_in, .tagged_as, .product_meta {
    display: none;
    }

    Now that column count is different, category images are 221x221px and images in single product page are 387x387px. They are both square so size does not matter as long as you upload them in square format. You can use 500×500 for example

    Best regards,
    Yigit

    #673948

    Hi Yigit

    Thank you for the tip. So it covers categories and tags too?? About categories i hided them temporary while i get response for other ticket. So i’m not sure if .product.meta { is for categories. After All i may need that link but i couldnt figure out how to customize category page because i need to put some extra headers and special menu etc..

    About image size it ok but the main issue was that i have simple products with no description so product placeholder is too big as its as ou said 400×400 and i wanted to have smaller one.. I found this CSS works fine in some screen resolutions but not in small desktop screens or mobile.
    Maybe I’m too design square :) i expect layouts will align in diferent sizes :)
    Please advice about private.

    .single-product-main-image {
    width: 20%;
    }

    #675237

    Hi,

    1.) Yes, that code should remove all post meta info including the sku, categories, tags etc but the previous code should work the same.

    .product_meta {
        display: none;
    }

    2.) The css code should decrease the image container.

    .single-product-main-image {
        width: 20%;
    }

    3.) I’m not sure if a different theme for the shop page is a good idea because it might conflict with the theme.

    Best regards,
    Ismael

    #675404

    Hi
    Im not saying a new theme, its the same Enfold but instead of the detault it will be shop.

    Thank you

    #675419

    Hi!

    I think it would be a better idea to keep the shop on your main site as well.
    Otherwise, you can simply go to Appearance > Menus and add a new Custom Link and link it to your shop site which is a subdomain. All products, related products etc. would be displayed there, you would just have a link on your site.

    Cheers!
    Yigit

Viewing 12 posts - 1 through 12 (of 12 total)
  • You must be logged in to reply to this topic.