Font Awesome Icons Not Showing

#23555
  • Resolved Optimize
    Rank Math free

    Hello! I have been trying to make the font-awesome work but the icons are not coming. They are coming as square error icons.

    Screenshot:

    Please help. Thanks 🙂

Viewing 13 replies - 16 through 28 (of 28 total)
  • Hello!

    1. I want to move Star Rating in the same line as of Editor Rating.
    2. I want to remove the HTML Code of the Review Image instead I want to use the featured image of the post as the review schema image (this will reduce the HTML). Right now the HTML of the Review Image is still there in the code. (Screenshot: https://i.imgur.com/B6WkXit.png)
    3. I want to remove the HTML of the Review Title and Description (but should come in the Google Schema).

    Please tell me how to do so?

    Thanks.

    Hello,

    Thanks for getting back to us.

    Please send an email to s******@r*********** so that our dev team can help in this customization.

    We are looking forward to helping you. Thank you.

    Thanks. May I know if your dev. team is going to work throughout this week or when can I expect the reply earliest?

    Please if you could give me idea so that I could schedule my work further. I have been waiting for a long-time to have this issue resolved from last 5-6 days.

    Thanks.

    Hello,

    Thanks for the questions and sorry for the delays.

    We might be taking a two day break for the Christmas holiday and I can suggest that you seek the services of a freelancer if this request is time sensitive.

    I hope this helps. Thanks.

    Hello,

    1. Please add the following CSS code:

    .rank-math-total-wrapper > br {
        display: none;
    }
    
    .rank-math-total-wrapper > strong {
        float: left;
        margin-right: 14px;
    }

    2. We won’t be able to help here, unfortunately. We can provide the CSS code to hide elements, but to remove them from the source code, you will have to consult with a freelancer developer.

    3. You can hide the title and description with this CSS code:

    #rank-math-rich-snippet-wrapper h5.rank-math-title, #rank-math-rich-snippet-wrapper .rank-math-review-data > p {
        display: none;
    }

    Hope that helps.

    Thanks for the reply. I have done the CSS as you have mentioned.

    But, Title is still coming.

    Check the Screenshot: https://i.imgur.com/QigRF2g.png

    Todd
    Rank Math free

    Please change the CSS from this:

    #rank-math-rich-snippet-wrapper h5.rank-math-title, #rank-math-rich-snippet-wrapper .rank-math-review-data > p {
        display: none;
    }

    To this:

    #rank-math-rich-snippet-wrapper h5.rank-math-title, #rank-math-rich-snippet-wrapper .rank-math-review-data > p {
        display: none !important;
    }

    It should work after that.

    Let us know if you have any further queries.

    Thanks. 2 more things.

    1. I don’t want to show the Price (not even FREE) in the Schema. How can I remove that Schema Parameter from the Post?

    Settings: https://i.imgur.com/P3fw69q.png

    2. I don’t want to show the Product Availability (Stock Status) in the Schema. How can I remove that from the Schema Parameter for the Post?

    Thanks.

    Hello,

    Thank you for contacting Rank Math today.

    You can customize the product schema settings by hooking into the following filter:
    https://rankmath.com/kb/filters-hooks-api-developer/#richsnippets

    Here is an example for removing the price and the product availability:

    /**
     * Filter to Short-circuit Schema if a 3rd party is interested in generating their own data.
     * Replace $schmea_type with schema name like article, review, etc.
     * @param array $entity Snippet Data
     * @return array
     */
    add_filter( "rank_math/snippet/rich_snippet_product_entity", function( $entity ) {
     unset($entity['offers']['availability']);
     unset($entity['offers']['price']);
     return $entity;
    });

    Looking forward to helping you. Thank you.

    ​​​​​​

    Okay. I am checking that right now.

    One more thing, How can I make use of REVIEW schema with the help of RankMath?

    Basically, I want to disable this whole section of Schema: https://i.imgur.com/Sny5aMd.png

    • This reply was modified 4 years, 3 months ago by Optimize.

    Hello,

    Thanks for getting back to me.

    You can use the review schema on your post type but this may have some schema errors when you submit the post to the search console.

    If you only want your review posts to have rating stars then it would be wise to continue using the product schema since rating stars are still supported.

    Google only supports rating stars on the following schema types:

    – Book
    – Course
    – Event
    – Product
    – Recipe
    – Software Application

    I hope this info helps. Thank you.

    Basically, I want to disable this whole section of Schema: https://i.imgur.com/Sny5aMd.png

    Hello,

    Thanks for getting back to me.

    Removing this section might cause additional errors on the schema and is not recommended. Perhaps you could configure the settings and set these attributes to a certain default value instead of removing them entirely.
    You can remove this section with the following code:

    add_filter( "rank_math/snippet/rich_snippet_product_entity", function( $entity ) {
    
     unset($entity['offers']);
     return $entity;
    });

    I hope this info helps. Thank you.

    Hello,

    Since we did not hear back from you for 15 days, we are assuming that you found the solution. We are closing this support ticket.

    If you still need assistance or any other help, please feel free to open a new support ticket, and we will be more than happy to assist.

    Thank you.

Viewing 13 replies - 16 through 28 (of 28 total)

The ticket ‘Font Awesome Icons Not Showing’ is closed to new replies.