Settings Option to hide Favorites from Recents

I think it the recents menu would look cleaner if the favourites are filtered out.
I would like if there is an option for that.

image

In the meantime, just put

.favorites {
  display: none;
}

into your custom.css file

That just hides the favorites menu, i want my favorite pages filtered out of the recents menu.

to complete:

.recent {
  display: none;
}

I posted similar issue Recent and Favorites folders should not have duplicated pages · Discussion #7967 · logseq/logseq · GitHub

I created FR on somewhat similar issue Hide recent files by button in settings

Here is a non-dynamic solution:

Step 1: Go to settings → custom.css
Step 2: Use this CSS code to hide your page

.nav-content-item.recent li[title="name of page in lower case"] {
  display: none;
}

Step 3: Repeat step #2 for each page name you want to hide.

Limitations:

  1. If you edit your favorites bar, you will need to edit the custom.css file each time.
  2. There might be problems if you have a big favorites bar (haven’t tested this)