Woocommerce star rating bug











up vote
0
down vote

favorite












I am trying to make a woocommerce theme, but the star ratings aren't working properly.



This is the code for showing the star rating.



<div class="rating-custom">
<?php wc_get_template( 'single-product/rating.php' ); ?>
</div>


This is my CSS



.woocommerce-product-rating {
margin-bottom: 1.618em;
line-height: 2;
}
.woocommerce-product-rating .star-rating {
margin: 0.5em 4px 0 0;
float: left;
font-family: star;
}
.woocommerce-product-rating::after, .woocommerce-product-rating .rating-custom, .woocommerce-product-rating::before {
content: " ";
display: table;
}
.star-rating {
float: right;
overflow: hidden;
position: relative;
height: 1em;
line-height: 1;
font-size: 1em;
width: 5.4em;
font-family: star;
}
.star-rating::before {
content: "SSSSS";
color: #d3ced2;
float: left;
top: 0;
left: 0;
position: absolute;
}
.star-rating span {
overflow: hidden;
float: left;
top: 0;
left: 0;
position: absolute;
padding-top: 1.5em;
}
.star-rating span::before {
content: "SSSSS";
top: 0;
color: red;
position: absolute;
left: 0;
}


But my result is only "$$$"



actual result



Can someone help me on how to make this work the way i want?










share|improve this question







New contributor




Gabriel Antonio is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
Check out our Code of Conduct.
















  • 2




    Your font-family doesn't appear to be coming through. Have you referenced the font correctly?
    – Obsidian Age
    Nov 21 at 1:56










  • Check this thread. stackoverflow.com/questions/36428079/…
    – zipkundan
    Nov 21 at 12:15















up vote
0
down vote

favorite












I am trying to make a woocommerce theme, but the star ratings aren't working properly.



This is the code for showing the star rating.



<div class="rating-custom">
<?php wc_get_template( 'single-product/rating.php' ); ?>
</div>


This is my CSS



.woocommerce-product-rating {
margin-bottom: 1.618em;
line-height: 2;
}
.woocommerce-product-rating .star-rating {
margin: 0.5em 4px 0 0;
float: left;
font-family: star;
}
.woocommerce-product-rating::after, .woocommerce-product-rating .rating-custom, .woocommerce-product-rating::before {
content: " ";
display: table;
}
.star-rating {
float: right;
overflow: hidden;
position: relative;
height: 1em;
line-height: 1;
font-size: 1em;
width: 5.4em;
font-family: star;
}
.star-rating::before {
content: "SSSSS";
color: #d3ced2;
float: left;
top: 0;
left: 0;
position: absolute;
}
.star-rating span {
overflow: hidden;
float: left;
top: 0;
left: 0;
position: absolute;
padding-top: 1.5em;
}
.star-rating span::before {
content: "SSSSS";
top: 0;
color: red;
position: absolute;
left: 0;
}


But my result is only "$$$"



actual result



Can someone help me on how to make this work the way i want?










share|improve this question







New contributor




Gabriel Antonio is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
Check out our Code of Conduct.
















  • 2




    Your font-family doesn't appear to be coming through. Have you referenced the font correctly?
    – Obsidian Age
    Nov 21 at 1:56










  • Check this thread. stackoverflow.com/questions/36428079/…
    – zipkundan
    Nov 21 at 12:15













up vote
0
down vote

favorite









up vote
0
down vote

favorite











I am trying to make a woocommerce theme, but the star ratings aren't working properly.



This is the code for showing the star rating.



<div class="rating-custom">
<?php wc_get_template( 'single-product/rating.php' ); ?>
</div>


This is my CSS



.woocommerce-product-rating {
margin-bottom: 1.618em;
line-height: 2;
}
.woocommerce-product-rating .star-rating {
margin: 0.5em 4px 0 0;
float: left;
font-family: star;
}
.woocommerce-product-rating::after, .woocommerce-product-rating .rating-custom, .woocommerce-product-rating::before {
content: " ";
display: table;
}
.star-rating {
float: right;
overflow: hidden;
position: relative;
height: 1em;
line-height: 1;
font-size: 1em;
width: 5.4em;
font-family: star;
}
.star-rating::before {
content: "SSSSS";
color: #d3ced2;
float: left;
top: 0;
left: 0;
position: absolute;
}
.star-rating span {
overflow: hidden;
float: left;
top: 0;
left: 0;
position: absolute;
padding-top: 1.5em;
}
.star-rating span::before {
content: "SSSSS";
top: 0;
color: red;
position: absolute;
left: 0;
}


But my result is only "$$$"



actual result



Can someone help me on how to make this work the way i want?










share|improve this question







New contributor




Gabriel Antonio is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
Check out our Code of Conduct.











I am trying to make a woocommerce theme, but the star ratings aren't working properly.



This is the code for showing the star rating.



<div class="rating-custom">
<?php wc_get_template( 'single-product/rating.php' ); ?>
</div>


This is my CSS



.woocommerce-product-rating {
margin-bottom: 1.618em;
line-height: 2;
}
.woocommerce-product-rating .star-rating {
margin: 0.5em 4px 0 0;
float: left;
font-family: star;
}
.woocommerce-product-rating::after, .woocommerce-product-rating .rating-custom, .woocommerce-product-rating::before {
content: " ";
display: table;
}
.star-rating {
float: right;
overflow: hidden;
position: relative;
height: 1em;
line-height: 1;
font-size: 1em;
width: 5.4em;
font-family: star;
}
.star-rating::before {
content: "SSSSS";
color: #d3ced2;
float: left;
top: 0;
left: 0;
position: absolute;
}
.star-rating span {
overflow: hidden;
float: left;
top: 0;
left: 0;
position: absolute;
padding-top: 1.5em;
}
.star-rating span::before {
content: "SSSSS";
top: 0;
color: red;
position: absolute;
left: 0;
}


But my result is only "$$$"



actual result



Can someone help me on how to make this work the way i want?







php css wordpress woocommerce






share|improve this question







New contributor




Gabriel Antonio is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
Check out our Code of Conduct.











share|improve this question







New contributor




Gabriel Antonio is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
Check out our Code of Conduct.









share|improve this question




share|improve this question






New contributor




Gabriel Antonio is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
Check out our Code of Conduct.









asked Nov 21 at 1:53









Gabriel Antonio

1




1




New contributor




Gabriel Antonio is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
Check out our Code of Conduct.





New contributor





Gabriel Antonio is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
Check out our Code of Conduct.






Gabriel Antonio is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
Check out our Code of Conduct.








  • 2




    Your font-family doesn't appear to be coming through. Have you referenced the font correctly?
    – Obsidian Age
    Nov 21 at 1:56










  • Check this thread. stackoverflow.com/questions/36428079/…
    – zipkundan
    Nov 21 at 12:15














  • 2




    Your font-family doesn't appear to be coming through. Have you referenced the font correctly?
    – Obsidian Age
    Nov 21 at 1:56










  • Check this thread. stackoverflow.com/questions/36428079/…
    – zipkundan
    Nov 21 at 12:15








2




2




Your font-family doesn't appear to be coming through. Have you referenced the font correctly?
– Obsidian Age
Nov 21 at 1:56




Your font-family doesn't appear to be coming through. Have you referenced the font correctly?
– Obsidian Age
Nov 21 at 1:56












Check this thread. stackoverflow.com/questions/36428079/…
– zipkundan
Nov 21 at 12:15




Check this thread. stackoverflow.com/questions/36428079/…
– zipkundan
Nov 21 at 12:15












1 Answer
1






active

oldest

votes

















up vote
0
down vote













Following Obsidian Age answer, i've added this line of code to my span tag: font-family: 'star'



And now everything is running smooth. Ty to zipkundan aswell for the help!






share|improve this answer








New contributor




Gabriel Antonio is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
Check out our Code of Conduct.


















    Your Answer






    StackExchange.ifUsing("editor", function () {
    StackExchange.using("externalEditor", function () {
    StackExchange.using("snippets", function () {
    StackExchange.snippets.init();
    });
    });
    }, "code-snippets");

    StackExchange.ready(function() {
    var channelOptions = {
    tags: "".split(" "),
    id: "1"
    };
    initTagRenderer("".split(" "), "".split(" "), channelOptions);

    StackExchange.using("externalEditor", function() {
    // Have to fire editor after snippets, if snippets enabled
    if (StackExchange.settings.snippets.snippetsEnabled) {
    StackExchange.using("snippets", function() {
    createEditor();
    });
    }
    else {
    createEditor();
    }
    });

    function createEditor() {
    StackExchange.prepareEditor({
    heartbeatType: 'answer',
    convertImagesToLinks: true,
    noModals: true,
    showLowRepImageUploadWarning: true,
    reputationToPostImages: 10,
    bindNavPrevention: true,
    postfix: "",
    imageUploader: {
    brandingHtml: "Powered by u003ca class="icon-imgur-white" href="https://imgur.com/"u003eu003c/au003e",
    contentPolicyHtml: "User contributions licensed under u003ca href="https://creativecommons.org/licenses/by-sa/3.0/"u003ecc by-sa 3.0 with attribution requiredu003c/au003e u003ca href="https://stackoverflow.com/legal/content-policy"u003e(content policy)u003c/au003e",
    allowUrls: true
    },
    onDemand: true,
    discardSelector: ".discard-answer"
    ,immediatelyShowMarkdownHelp:true
    });


    }
    });






    Gabriel Antonio is a new contributor. Be nice, and check out our Code of Conduct.










     

    draft saved


    draft discarded


















    StackExchange.ready(
    function () {
    StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f53404257%2fwoocommerce-star-rating-bug%23new-answer', 'question_page');
    }
    );

    Post as a guest















    Required, but never shown

























    1 Answer
    1






    active

    oldest

    votes








    1 Answer
    1






    active

    oldest

    votes









    active

    oldest

    votes






    active

    oldest

    votes








    up vote
    0
    down vote













    Following Obsidian Age answer, i've added this line of code to my span tag: font-family: 'star'



    And now everything is running smooth. Ty to zipkundan aswell for the help!






    share|improve this answer








    New contributor




    Gabriel Antonio is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
    Check out our Code of Conduct.






















      up vote
      0
      down vote













      Following Obsidian Age answer, i've added this line of code to my span tag: font-family: 'star'



      And now everything is running smooth. Ty to zipkundan aswell for the help!






      share|improve this answer








      New contributor




      Gabriel Antonio is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
      Check out our Code of Conduct.




















        up vote
        0
        down vote










        up vote
        0
        down vote









        Following Obsidian Age answer, i've added this line of code to my span tag: font-family: 'star'



        And now everything is running smooth. Ty to zipkundan aswell for the help!






        share|improve this answer








        New contributor




        Gabriel Antonio is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
        Check out our Code of Conduct.









        Following Obsidian Age answer, i've added this line of code to my span tag: font-family: 'star'



        And now everything is running smooth. Ty to zipkundan aswell for the help!







        share|improve this answer








        New contributor




        Gabriel Antonio is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
        Check out our Code of Conduct.









        share|improve this answer



        share|improve this answer






        New contributor




        Gabriel Antonio is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
        Check out our Code of Conduct.









        answered Nov 21 at 23:04









        Gabriel Antonio

        1




        1




        New contributor




        Gabriel Antonio is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
        Check out our Code of Conduct.





        New contributor





        Gabriel Antonio is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
        Check out our Code of Conduct.






        Gabriel Antonio is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
        Check out our Code of Conduct.






















            Gabriel Antonio is a new contributor. Be nice, and check out our Code of Conduct.










             

            draft saved


            draft discarded


















            Gabriel Antonio is a new contributor. Be nice, and check out our Code of Conduct.













            Gabriel Antonio is a new contributor. Be nice, and check out our Code of Conduct.












            Gabriel Antonio is a new contributor. Be nice, and check out our Code of Conduct.















             


            draft saved


            draft discarded














            StackExchange.ready(
            function () {
            StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f53404257%2fwoocommerce-star-rating-bug%23new-answer', 'question_page');
            }
            );

            Post as a guest















            Required, but never shown





















































            Required, but never shown














            Required, but never shown












            Required, but never shown







            Required, but never shown

































            Required, but never shown














            Required, but never shown












            Required, but never shown







            Required, but never shown







            Popular posts from this blog

            Sphinx de Gizeh

            Dijon

            Langue