Theme Palace » All Posts https://themepalace.com/forum/free-themes/news-vibe/feed/ Mon, 26 Feb 2024 15:04:21 +0000 https://bbpress.org/?v=2.6.9 en-US https://themepalace.com/topic/replace-category-list-from-to/#post-190733 <![CDATA[Reply To: Replace category list from “,” to ” “]]> https://themepalace.com/topic/replace-category-list-from-to/#post-190733 Mon, 04 Sep 2023 03:30:18 +0000 Psink You can add this CSS in the Additional CSS

.post-categories :not(:last-child):after {
content: ” “;
margin-right: 5px;
}

]]>
https://themepalace.com/topic/replace-category-list-from-to/#post-190722 <![CDATA[Replace category list from “,” to ” “]]> https://themepalace.com/topic/replace-category-list-from-to/#post-190722 Sat, 02 Sep 2023 03:29:36 +0000 hijrahassalam I want to change my category list in my list of post, and single post from “,” to ” “. I have already implement this code in functions.php

function custom_category_list_separator($list) { $new_separator = ‘|’; // Replace ‘|’ with your desired separator $list = str_replace(‘,’, $new_separator, $list); return $list; } add_filter(‘the_category’, ‘custom_category_list_separator’);

But it still didn’t work. I think it maybe different filter that this theme call for category instead of “the_category”. I have already read the docs, and still couldn’t find any info. Please help.

]]>
https://themepalace.com/topic/event-calendar-page-displays-archivesevents/#post-132741 <![CDATA[Reply To: Event calendar page displays “Archives:Events”]]> https://themepalace.com/topic/event-calendar-page-displays-archivesevents/#post-132741 Mon, 31 Aug 2020 07:19:48 +0000 wensolutions Hello,

Regarding your query, you can add the below-given code in the function.php file of the theme.

add_filter('get_the_archive_title', function ($title) {
  return preg_replace('/^\w+: /', '', $title);
});

To make the customization, you should not make any modification directly in your parent theme as all of the customizations will be lost upon update to the latest version of the theme and the same situation is here when you reinstall the theme.

So please go through the child theme for the changes and shift all your customizations in the child theme before you uninstall the theme. You can refer to the below-given documentation link to get detailed assistance on how to create a child theme.

https://wptravel.io/how-to-create-a-child-theme/

Hope this helps.

If you have further queries, let us know.

Regards.

]]>
https://themepalace.com/topic/event-calendar-page-displays-archivesevents/#post-132655 <![CDATA[Event calendar page displays “Archives:Events”]]> https://themepalace.com/topic/event-calendar-page-displays-archivesevents/#post-132655 Sat, 29 Aug 2020 14:02:21 +0000 zanimul I want to remove the “Archives” from the page top that you can see here: https://vetteclub.org/events/month/

We use “The Event Calendar” by “Modern Tribe, Inc.” On top of removing “Archives” from the page I want to shrink the size of that area, how can I do that.

I really like this theme, even though it’s more than what my client asked for, it leaves me room to add some more interest to the site.

]]>