# How to show Full Name in Embeds

**URL:** https://meta.discourse.org/t/how-to-show-full-name-in-embeds/255329
**Category:** Development
**Tags:** embedding
**Created:** [February 16, 2023, 7:15am UTC](https://meta.discourse.org/t/how-to-show-full-name-in-embeds/255329 "2023-02-16T07:15:22Z")
**Posts on this page:** 1
**Showing post:** 10

<div class="post-metadata">

### Author: ![Mark\_Wass](https://sea3.discourse-cdn.com/meta/user_avatar/meta.discourse.org/mark_wass/32/290526_2.png) [@Mark\_Wass](https://meta.discourse.org/u/Mark_Wass)
#### Post date: [February 21, 2023, 11:01am UTC](https://meta.discourse.org/t/how-to-show-full-name-in-embeds/255329/10 "2023-02-21T11:01:57Z")

</div>

@Canapin Yes! Got it all working. Here is what the plugin.rb ended up looking like. Turned out I just had a path issue where I was putting the custom version of the file.

I ended up putting it in a folder `/custom_views/embed/comments.html.erb`

```plaintext
# frozen_string_literal: true

# name: optuma_discourse_custom_embed
# about: A simple plugin to used to customise the template in the forum embeds
# version: 1.0.0
# authors: Optuma Pty Ltd
# url: https://github.com/OptDev/optuma-discourse-custom-embed
# required_version: 2.7.0

after_initialize do
  ::EmbedController.prepend_view_path File.expand_path("../custom_views", __FILE__ )
end

```

---

_[View the full topic](https://meta.discourse.org/t/how-to-show-full-name-in-embeds/255329)._
