• Resolved satrixk

    (@satrixk)


    Hi,

    i`m using the Premium version.
    is it possible to change the detail view?

    standard is:
    picture — product name / description / custom fields — Price / details

    i want to change it like that:
    picture — product name / custom fields — Price / details
    or
    picture — product name / custom fields / description — Price / details

    and in the middle-row all informations (description / custom fields) having the same font size and so on. is it also possible to change that?

    Thank you in advance

    Sven

Viewing 1 replies (of 1 total)
  • Hi Sven,

    Currently, the description and custom fields are housed in the same div, and the description text doesn’t have its own div or span around it, which means it wouldn’t be possible to hide just the description, and not the custom fields, using just CSS (though, you could do the reverse).

    Whether you wanted to hide just the description, or you wanted to make the custom fields show before the description, you’d have to make these changes directly in the code (i.e. the “Shortcodes.php” file in the “Functions” folder). It’s important to note, though, that any changes made here would be overwritten if you update the plugin.

    For the font sizes, you should be able to do this with just CSS. You could start with something like the following and then tailor it to your needs:

    .upcp-detail-desc {
    font-size: 14px;
    }
    .upcp-custom-field-details {
    font-size: 16px;
    font-weight: bold;
    }
    
Viewing 1 replies (of 1 total)
  • The topic ‘detail view – customize option’ is closed to new replies.