-
AuthorPosts
-
September 14, 2017 at 7:16 pm #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.
DidSeptember 16, 2017 at 3:25 am #852763Hey 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 credentialsDon’t forget to select Set as private reply. This ensures your information is only visible to our staff.
Best regards,
John TorvikSeptember 16, 2017 at 5:44 am #852781Ok, Thanks.
September 19, 2017 at 4:36 pm #853931Any luck?
September 19, 2017 at 8:19 pm #854020Hi,
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 betterBest regards,
BasilisSeptember 19, 2017 at 8:43 pm #854027it seems that there was another post regarding that issue I don’t know if there were able to resolve that issue.
September 22, 2017 at 5:57 am #855159Hi,
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,
IsmaelSeptember 22, 2017 at 4:39 pm #855421Hi,
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” /><?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.
September 23, 2017 at 3:35 am #855666Hi,
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,
IsmaelSeptember 23, 2017 at 8:59 pm #855902For 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?
September 23, 2017 at 10:28 pm #855919I am including a couple of screenshots.
September 25, 2017 at 5:59 am #856310Hi,
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,
IsmaelSeptember 25, 2017 at 1:41 pm #856473Yes, I have the purchased the license and I have followed the steps by step as suggested on typrography.com
September 27, 2017 at 3:58 am #857234Hi,
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,
IsmaelSeptember 27, 2017 at 8:54 am #857371Hi 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;}
September 28, 2017 at 5:32 am #857848Hi,
The selector is invalid. Remove the dot before the “body” selector.
Best regards,
IsmaelSeptember 28, 2017 at 5:37 am #857850HI 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;}
September 28, 2017 at 6:18 pm #858170I think it’s working now.
September 29, 2017 at 10:09 am #858375 -
AuthorPosts
- You must be logged in to reply to this topic.