Skip to main content

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??

CC Shahjahan Jewel Ross H 

Thank you

How to Rename Feed to something else

Ross FCA

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

Ross H thank you so much Ross. This is much appreciated Sir...

fish yu

Ross H Hello, I keep failing when importing courses.

Ross FCA

fish yu Will look to fix this soon, thanks for flagging

Ceez Vision

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 });

Sophia S

Curtis Marshall thank you. What Ross H shared serves the purpose even better.