vr34
Forum Replies Created
-
Forum: Themes and Templates
In reply to: [Spacious] Spacious (Free), Google Fonts and GDPRHi Pat,
I can understand: Google fonts are not GDPR compliant and I have no idea whether default font of Spacious Free font is from Google.
Bunny fonts seem to be GDPR compliant according to the website: https://bunny.net/fonts/
Maybe it is possible to replace default Lato font by a Bunny font in your entire website (?)vr34
Forum: Themes and Templates
In reply to: [Spacious] Spacious (Free), Google Fonts and GDPRHi pat5d,
To use a Google font in your WordPress theme, whatever the theme is, (Spacious Free or others), you have to :
– consult https://fonts.google.com/, select the font you would like to use, then select its weight.
– as explained, you have to add :
1) between <head> and </head>, the lines starting with <link…
The <head> section is in the header.php file in the Edit theme files menu.
2) in additionnal CSS to personalize Spacious, the line starting with font-family:… at each necessary time. This is the most difficult step: find the right class to surcharge.Example: I changed the default font used for the main menu and for posts titles in https://iem.umontpellier.fr where the theme is Spacious Free.
1) in the <head> section of header.php of Spacious (Free) theme:
<link rel=”preconnect” href=”https://fonts.googleapis.com”>
<link rel=”preconnect” href=”https://fonts.gstatic.com” crossorigin>
<link href=”https://fonts.googleapis.com/css2?family=Oswald&display=swap” rel=”stylesheet”>2) to change the menu font, color and size, in the additional CSS frame:
/* main menu */
.main-navigation ul li a {
font-family: ‘Oswald’, sans-serif;
color: #269;
font-size: 19px;
}
/* posts titles */
.post .entry-title {
font-family: ‘Oswald’, sans-serif;
font-size: 21px;
line-height: normal;
}Cheers,
vr34- This reply was modified 3 years, 3 months ago by vr34.
Forum: Themes and Templates
In reply to: [Spacious] Spacious theme: past events displayed on home page ?Thx Barsha for your message.
I finally understood my problem of past events not displayed on the homepage.
It is a problem of Events Manager plugin. I had to clean the events table by removing “orphan events”After that, at each time an event is past, I have to duplicate it and change the new draft into a post and publish it. The result is that the new post is listed on the homepage and the link to the event is still present on the calendar widget: great 😉
Regards
Forum: Plugins
In reply to: [HAL] Bug depuis la version 2.4J’ai trouvé une solution : désactiver l’extension HAL, la supprimer, la réinstaller et la réactiver.
En fait le bug apparait (rien ne s’affiche) lorsque je change le choix des éléments menu dans la configuration du plugin HAL.
Tous mes éléments sélectionnés : bug
Juste “Auteurs” et “Années” : la liste s’affiche (documents groupés par type)
Je n’ai pas essayé d’autres combinaisons.- This reply was modified 3 years, 6 months ago by vr34.