How to Rename Feed to something else
Hi Friends,
Hope we are all well.
I need some assistance, is it currently possible to rename feed to something like hope or anything of choice??
Thank you
Hi Sophia, I have added translations to an update of my Content Manager plugin. http://fluentcommunityaddons.com/downloads/fce-content-manager-1.0.1.zip
Sophia S Here's a scrip to do so:
/* Change "Feed" to "CHANGE NAME HERE" in Fluent Community Page Title */ add_action('fluent_community/portal_head', function() { ?> \ document.addEventListener("DOMContentLoaded", function() { // Select the element with class "fcom_page_title clickable" var pageTitle = document.querySelector(".fcom_page_title.clickable"); if (pageTitle && pageTitle.textContent.trim() === "Feed") { pageTitle.textContent = "CHANGE NAME HERE"; } }); \ \\\<?php });
Curtis Marshall thank you. What Ross H shared serves the purpose even better.