• Hello,
    A few more questions!
    Once again, the website for reference: http://www.dressforchange.co/sample-page
    1. Is there any way of getting rid of the second ‘Outfits For Hire’ title that is part of the plugin? I tried to just delete the heading, but then I can’t click in on the back-end to edit the catalogue.
    2. I previously got some advice from you on how to edit the size of the images on the front page. It kind of worked, but then I tried uploading another product (the last item, titled KOOKAI Striped Ponte Skirt) and it didn’t fit to that size. Is there a way that I can make the image larger and then crop it so that the size is again uniform, rather than having white space on the side?
    3. In the tabbed product layout, is there a way to get rid of the Additional Information tab, or change what’s in it?
    4. I tried to make a ‘contact details’ tab. However, the font is bolded and it sits a bit higher than the other original tabs. Any way of fixing this?
    5. I tried to add a custom field to the contact details tab by using the code [custom-field-contactdetails] but it didn’t work. Not sure why that’s the case? I tried using all the other custom fields as well.
    6. Is there a way to make the images in the ‘related products’ or the ‘new items’ display widget larger?

    Not sure if some of these questions are within what should be asked in this forum but I thought I might as well ask anyway!
    Thank you so much!

Viewing 9 replies - 1 through 9 (of 9 total)
  • Hi Joey,

    1. You can use the “Show Catalogue Information” option (in the “Basic” area of the “Options” tab) to control this.

    2. That’s happening because your image is wider than it is tall. If you wanted, you could try stretching your image with some custom CSS. For example:

    div.upcp-thumb-image-div img {
    max-height: 150%;
    }
    

    3. By default, it will show the category, tag and custom field values. There’s no option to edit its content. You can hide it with the following CSS:

    .upcp-tabbed-addtl-info-menu, .upcp-tabbed-addtl-info {
    display: none;
    }
    

    4. If you look at the source code for your page, you’ll see that this is because your theme is applying a global font weight of 400 to all spans. You could try just wrapping your contact tab title in a span.

    i.e.

    <span>Contact Details</span>
    

    5. You don’t need the “custom-field” part in the shortcode, just [contactdetails].

    6. You could use custom CSS to make the boxes, and the images within the boxes, bigger. For example:

    .upcp-minimal-img-div {
    height: 100%;
    width: 100%;
    }
    .upcp-minimal-img {
    max-height: 100% !important;
    max-width: 100% !important;
    width: auto !important;
    height: auto !important;
    display: block;
    margin: 0 auto;
    }
    
    Thread Starter jumpingjoey

    (@jumpingjoey)

    Hi,

    Thanks for this again!
    Just a few responses regarding the previous questions and answers:
    2. Some of the other images on the page are definitely also taller than they are wide, but they have just cropped automatically. So I’m not sure why this one has not. I would probably prefer the image to crop rather than be stretched so is there any way of making this happen?
    4,6. Sorry, I’m quite amateur but where do I enter this custom css? Is it still in the Catalogue’s custom css part?

    Joey

    Hi Joey,

    #2
    The CSS cropping will only work if an image isn’t “too tall” or “too wide”.

    Anyway, the image for “KOOKAI Striped Ponte Skirt” is a bit too tall (and/or not wide enough), so in cases like this, I’d try cropping off excess space from the top/bottom. Here’s a version of that is 1368 x 1778 (instead of the original 1368 x 2048):
    Link to modified image

    #4:
    If you go to the Product Page tab, then you can replace the “Contact Details” Tab name text with this instead:
    <span>Contact Details</span>

    #5
    Also on the “Product Page” tab, use this code in the Content text box:
    [contactdetails]

    #6
    This CSS should be added to your Custom CSS box on the edit Catalogue page.

    Thread Starter jumpingjoey

    (@jumpingjoey)

    Hi,
    Thanks once again! This all worked, except #6. I put it in the custom CSS box on the edit Catalogue page and it didn’t affect the related products/recent products widget. I’m not well versed in CSS so just wondering what I may have to alter for it to work?

    I’ve got a few more questions, but I’m going to send them by email as I would like to send screenshots of a few things.

    Thanks,
    Joey

    Hi Joey,

    On what page(s) are you applying the related products/recent products widget?

    I’m asking because widget code is a little different, so we’d need to add some extra CSS to make it match the other styles we added.

    Thread Starter jumpingjoey

    (@jumpingjoey)

    Hi, I took it off because it wasn’t working, but just added it to the home page:
    http://www.dressforchange.co (at the bottom)

    I’d love the three recent products to fill the width of the site (and be of corresponding height) if that’s possible, for example, for the images to be the size of the images on the actual catalogue page!

    Joey

    Hi Joey,

    For the recent products widget on the homepage it actually won’t take the custom CSS that you specified on the edit catalogue screen because the catalogue isn’t being loaded on that page.

    You could try adding the CSS to your (child) theme’s style.css file. Alternatively, many themes offer a custom CSS or “Additional” CSS option in the WordPress Customizer.

    You would still need to use the same CSS as provided above.

    .upcp-minimal-img-div {
    height: 100%;
    width: 100%;
    }
    .upcp-minimal-img {
    max-height: 100% !important;
    max-width: 100% !important;
    width: auto !important;
    height: auto !important;
    display: block;
    margin: 0 auto;
    }
    
    Thread Starter jumpingjoey

    (@jumpingjoey)

    Hi,

    Thanks, it worked partially! The images are a tiny bit bigger. But now, the titles of the outfits aren’t there and when you click on them they don’t actually link up to the product pages. Just wondering why this may be the case?

    Also with the related products on the product pages, the titles of the outfits are similarly not found on each outfit image (http://www.dressforchange.co/sample-page?&SingleProduct=26). Also wondering how I may go about fixing this!

    Thanks,
    Joelle

    Hi Joelle,

    It looks like the container for the images is a little too tall (in several cases, it seems to be covering the titles).

    Here’s some CSS you can add to the bottom of your (child) theme’s style.css file:

    .upcp-minimal-product-listing {
    height: auto!important;	
    min-height: 330px;}

    For the link issue you mentioned on http://www.dressforchange.co/, what URL did you use in your Recent Products widget (i.e. in the “The URL of your catalogue:” section)?

Viewing 9 replies - 1 through 9 (of 9 total)

The topic ‘Formatting’ is closed to new replies.