Viewing 19 posts - 1 through 19 (of 19 total)
  • Author
    Posts
  • #852279

    HI Guys,

    I have a bit a problem and I’m pretty sure there is a fix for it. If I use the enhanced product pages with the layout builder and the Review Widget.

    For some reason, the Review Widget won’t show the Reviews with Yotpo. However, it works with the normal product page when I am not using the Review widget. Meaning the default product picks up the Yotpo reviews.

    Do you guys have a fix?

    Thanks in advances.
    Did

    #852763

    Hey dhuet,

    Would you mind providing us with login credentials so we can take a closer look? To do this, you can make a post with the following info:

    – Link to your site
    – WordPress Admin username / password
    – FTP credentials

    Don’t forget to select Set as private reply. This ensures your information is only visible to our staff.

    Best regards,
    John Torvik

    #852781

    Ok, Thanks.

    #853931

    Any luck?

    #854020

    Hi,

    I checked it – the integration of the plugin is not working properly
    I would consider – hire a freelancer who will be able to help you out with it better

    Best regards,
    Basilis

    #854027

    it seems that there was another post regarding that issue I don’t know if there were able to resolve that issue.

    #855159

    Hi,

    I’m sorry but we don’t provide support for third party plugins as stated on our support policy. As mentioned on the previous thread, the plugin is probably using the default woocommerce template hooks which is not available when the advance layout builder is used. Please switch to the default editor or contact the plugin author.

    Best regards,
    Ismael

    #855421

    Hi,

    Thanks for trying. I have another question unrelated to this matter.
    I have set up a custom font via cloud.typography.com. The setup seems to be correct on the Font host server. I have placed the code below in the function.php.

    function typography_stylesheet(){ ?>
    <link rel=”stylesheet” type=”text/css” href=”https://cloud.typography.com/6989574/678608/css/fonts.css&#8221; />

    <?php
    }
    add_action(‘wp_head’, ‘typography_stylesheet’);

    I have assigned a style for it.

    body{
    font-family: “Gotham Narrow A”, “Gotham Narrow B” !important;
    font-style: normal;
    font-weight: 300;
    color: #444;
    -webkit-text-size-adjust: 100%;
    font-weight: normal !important;

    }

    However, the style is not applying on the body tag. Am I missing something here?

    Thank you.

    #855666

    Hi,

    Please replace the code with the following.

    function typography_stylesheet() {
      echo '<link rel="stylesheet" type="text/css" href="https://cloud.typography.com/6989574/678608/css/fonts.css"/>';
    }
    add_action('wp_head', 'typography_stylesheet');

    Best regards,
    Ismael

    #855902

    For some reason, it still does not acknowledge the font. I have also noticed something very strange on Safari vs Chrome. My H1 to H6 tag has a line on the left. I can’t figure that out. I have disabled style.css on the child theme. Any thoughts?

    #855919

    I am including a couple of screenshots.

    #856310

    Hi,

    The font is not working because the access to it is forbidden. Did you buy the font? Please upload it in your server then use the fontface code.

    An error (403 Forbidden) has occurred in response to this request.

    // https://www.w3schools.com/cssref/css3_pr_font-face_rule.asp

    Best regards,
    Ismael

    #856473

    Yes, I have the purchased the license and I have followed the steps by step as suggested on typrography.com

    #857234

    Hi,

    Yo should use the following url instead of the previous one.

    http://woocommerce-61529-316864.cloudwaysapps.com/607363/FA7D305635D43D080.css
    

    Make sure that the font family declaration looks something like this.

    body { font-family: 'Gotham Narrow A'; }
    

    Best regards,
    Ismael

    #857371

    Hi Ismael,

    Right now this the way is it. Should I do as you mentioned vs the way I did it.
    Thanks,
    Did
    .body {
    font-family: “Gotham Narrow A”, “Gotham Narrow B” !important;
    font-style: normal;
    font-weight: 300;
    color: #444;
    -webkit-text-size-adjust: 100%;
    font-weight: normal !important;

    }

    .body {
    font-family: ‘Gotham Narrow A’, ‘Gotham Narrow B’ !important;
    font-style: normal;
    font-weight: 300;
    color: #444;
    -webkit-text-size-adjust: 100%;
    font-weight: normal !important;

    }

    #857848

    Hi,

    The selector is invalid. Remove the dot before the “body” selector.

    Best regards,
    Ismael

    #857850

    HI Ismael,

    I just did it. I don’t think it did anything.

    body {
    font-family: ‘Gotham Narrow A’, “Gotham Narrow B” !important;
    font-style: normal;
    font-weight: 300;
    color: #444;
    -webkit-text-size-adjust: 100%;
    font-weight: normal !important;

    }

    or
    body {
    font-family: “Gotham Narrow “‘, “Gotham Narrow B” !important;
    font-style: normal;
    font-weight: 300;
    color: #444;
    -webkit-text-size-adjust: 100%;
    font-weight: normal !important;

    }

    #858170

    I think it’s working now.

    #858375

    Hi,

    Glad it is working. Is it cached? Did you do something different?

    Best regards,
    Ismael

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