# Groot pictogram wordt niet weergegeven in DiscourseHub als sitelogo

**URL:** https://meta.discourse.org/t/large-icon-not-rendering-in-discoursehub-as-site-logo/384647
**Category:** Support
**Tags:** discourse-hub
**Created:** [3 oktober 2025 om 17:31 UTC](https://meta.discourse.org/t/large-icon-not-rendering-in-discoursehub-as-site-logo/384647 "2025-10-03T17:31:20Z")
**Posts on this page:** 6
**Page:** 1

<div class="post-metadata">

### Author: ![mcdanlj](https://sea3.discourse-cdn.com/meta/user_avatar/meta.discourse.org/mcdanlj/32/131829_2.png) [@mcdanlj](https://meta.discourse.org/u/mcdanlj)
#### Post date: [3 oktober 2025 om 17:31 UTC](https://meta.discourse.org/t/large-icon-not-rendering-in-discoursehub-as-site-logo/384647/1 "2025-10-03T17:31:20Z")

</div>

I have a report from multiple users of DiscourseHub on my Maker Forums Discourse that our site icon isn’t showing up in DiscourseHub, but other icons are. For example:

 ![image](https://global.discourse-cdn.com/meta/original/4X/4/9/6/496846831a2bf499eb89540c3cba367ddc99dae0.jpeg)

Our icon is not a T. Searching, I found this page here that says that it’s the large icon:

> [@Which icon/setting controls this icon in the Discourse Hub app?](https://meta.discourse.org/t/which-icon-setting-controls-this-icon-in-the-discourse-hub-app/115501):
>

However, large icon is set to what I expect:

 ![image](https://global.discourse-cdn.com/meta/original/4X/d/1/9/d197ce42f5005076f22edd6c29113a0810b737ff.png)

Which icon does DiscourseHub ultimately now look to for its icons?

---

<div class="post-metadata">

### Author: ![Moin](https://sea3.discourse-cdn.com/meta/user_avatar/meta.discourse.org/moin/32/554653_2.png) [@Moin](https://meta.discourse.org/u/Moin)
#### Post date: [3 oktober 2025 om 17:43 UTC](https://meta.discourse.org/t/large-icon-not-rendering-in-discoursehub-as-site-logo/384647/2 "2025-10-03T17:43:05Z")

</div>

Wordt het pictogram weergegeven wanneer u het forum uit die lijst verwijdert en het opnieuw toevoegt en verbindt?

---

<div class="post-metadata">

### Author: ![mcdanlj](https://sea3.discourse-cdn.com/meta/user_avatar/meta.discourse.org/mcdanlj/32/131829_2.png) [@mcdanlj](https://meta.discourse.org/u/mcdanlj)
#### Post date: [3 oktober 2025 om 17:50 UTC](https://meta.discourse.org/t/large-icon-not-rendering-in-discoursehub-as-site-logo/384647/3 "2025-10-03T17:50:01Z")

</div>

I’m one step removed from this since I’m not even using the app, but the question is passed on 🤞 😁

---

<div class="post-metadata">

### Author: ![pmusaraj](https://sea3.discourse-cdn.com/meta/user_avatar/meta.discourse.org/pmusaraj/32/119489_2.png) [@pmusaraj](https://meta.discourse.org/u/pmusaraj)
#### Post date: [3 oktober 2025 om 19:44 UTC](https://meta.discourse.org/t/large-icon-not-rendering-in-discoursehub-as-site-logo/384647/4 "2025-10-03T19:44:55Z")

</div>

The T there is a new feature of DIscourseHub, but we only show it as a fallback. So something is incorrect with the icon fed by the site.

The app pulls this info from `https://forum.makerforums.info/site/basic-info.json`:

```plaintext
{
  "logo_url": "https://forum.makerforums.info/uploads/default/original/3X/0/5/05584cbc2f5f1b34f185f32d0629dee77d136aaf.svg",
  "logo_small_url": "https://forum.makerforums.info/uploads/default/original/3X/4/3/43eb68a2d10cdc07b8344fe88f71c331398a3666.svg",
  "apple_touch_icon_url": "https://forum.makerforums.info/uploads/default/optimized/3X/4/9/49e3e12260db3dff032cf3e247e0e0a29f4e1ab5_2_180x180.svg",
  "favicon_url": "https://forum.makerforums.info/uploads/default/optimized/3X/0/0/002f5ec485a94cb73fb086d5bc99be9659a3c6d2_2_32x32.png",
  "title": "Maker Forums",
  "description": "Forums for makers, 3D printing, Lasers, CNC routers, and more",
  "header_primary_color": "f3f3f3",
  "header_background_color": "333333",
  "login_required": false,
  "locale": "en",
  "include_in_discourse_discover": true,
  "mobile_logo_url": "https://forum.makerforums.info/uploads/default/original/3X/f/d/fd7ea1ba354a5fe92751ffee6b94956376073027.svg"
}

```

The `apple_touch_icon_url` there is an SVG file. Unfortunately, rendering SVGs in React Native is complicated, it requires extra libraries which is too much overhead. That’s why the logo isn’t being loaded.

You can ask the Maker forums admins to:

- replace the SVG with a PNG for `apple_touch_icon_url`
- remove and add the site again to Discourse Hub, it should be loading the new file

---

<div class="post-metadata">

### Author: ![mcdanlj](https://sea3.discourse-cdn.com/meta/user_avatar/meta.discourse.org/mcdanlj/32/131829_2.png) [@mcdanlj](https://meta.discourse.org/u/mcdanlj)
#### Post date: [3 oktober 2025 om 21:25 UTC](https://meta.discourse.org/t/large-icon-not-rendering-in-discoursehub-as-site-logo/384647/5 "2025-10-03T21:25:11Z")

</div>

In the immortal words of Fezzik, _I **am** the ~~brute squad~~ Maker Forums admin_.

Thanks, I can render a PNG for the `apple_touch_icon` SVG.

```bash
$ curl -s https://forum.makerforums.info/site/basic-info.json | jq -r .apple_touch_icon_url
https://forum.makerforums.info/uploads/default/optimized/3X/a/4/a4e106feadbfd5408e36e343a6193def96852f8b_2_180x180.png

```

---

<div class="post-metadata">

### Author: ![system](https://sea3.discourse-cdn.com/meta/user_avatar/meta.discourse.org/system/32/443519_2.png) [@system](https://meta.discourse.org/u/system)
#### Post date: [2 november 2025 om 21:26 UTC](https://meta.discourse.org/t/large-icon-not-rendering-in-discoursehub-as-site-logo/384647/6 "2025-11-02T21:26:04Z")

</div>

This topic was automatically closed 30 days after the last reply. New replies are no longer allowed.
