Forum Discussion

rosdyana's avatar
2 years ago

Adding link to post editor page

Hello,   Is there any way to add a new link in the sidebar of the post editor page? as far as I know, this component id name is "editor". We tried to override this component, but we don't know ho...
  • Akenefick's avatar
    2 years ago

    It's not possible to directly edit or add to a Khoros component. You can add your link to your overridden component or create a separate custom component with your link and add that to the Post Page under the editor component. Then you would have to move it where you want with CSS.

    For example, in your overridden component you could do something like this:

    <@delegate />
    <a href="#" id="my-link">Your link here!</a>
    
    <style>
        #my-link {
            position: absolute;
            right: 90px;
            bottom: 65px;
            font-size: 24px;
        }
    </style>