- This topic has 7 replies, 2 voices, and was last updated 3 years, 3 months ago by
David.
-
AuthorPosts
-
October 7, 2019 at 12:14 am #1028039
Paul
Hey,
sometimes it happens, that my modifications using the customizer are applied in the preview, but not on the live-site after saving. Any idea what might be the reason for that?And is there any option to show the author name left and the date on the right side in blog mode?
Cheers,
PaulOctober 7, 2019 at 5:42 am #1028242David
StaffCustomer SupportHi there,
generally two reasons for the customizer settings not updating:
1. Browser Cache needs clearing.
2. Customizer > Save as Draft – at the top of the customizer beside the Save/Publish button is a cog – click that and make sure its set to Publish and not Save as Draft.Have you added any code already for the styling of the author and date ?
Documentation: http://docs.generatepress.com/
Adding CSS: http://docs.generatepress.com/article/adding-css/October 8, 2019 at 1:09 am #1029011Paul
Hey David,
thanks for reply. No chance to change with the customizer. Its about the padding of the right sidebar which I want to set to 20px and it always remains at 10px. May I send you login data?
This are the css modifcations considering author and date area:
.posted-on .updated { display: inline-block; } .posted-on .updated + .entry-date { display: none; } .posted-on .updated:before { content: "zuletzt aktualisiert am "; } .author-name:before { content: "// erstellt von "; }
October 8, 2019 at 6:00 am #1029180David
StaffCustomer SupportCan you clear and disable the autoptimize plugin so i can see why the CSS is not being applied?
Documentation: http://docs.generatepress.com/
Adding CSS: http://docs.generatepress.com/article/adding-css/October 9, 2019 at 4:18 am #1030070Paul
Okay, I just disabled the plugin. Let me know if there is anything else to do in order to help you detecting the issue.
October 9, 2019 at 4:48 am #1030095David
StaffCustomer SupportOk so in Customizer > Additional CSS you have this which is overriding the customizer:
.widget-area .widget { padding: 10px }
You can use the post meta filter to re-arrange the order of the meta:
https://docs.generatepress.com/article/generate_header_entry_meta_items/
Your Array in that filter would look like this:
return array( 'author', 'date', );
Documentation: http://docs.generatepress.com/
Adding CSS: http://docs.generatepress.com/article/adding-css/October 9, 2019 at 5:05 am #1030103Paul
Thanks, can I also disable the self-referring link of the date by that?
October 9, 2019 at 5:19 am #1030111David
StaffCustomer SupportYou can use this filter to remove the link:
https://docs.generatepress.com/article/generate_post_date_output/#remove-link-from-date
Documentation: http://docs.generatepress.com/
Adding CSS: http://docs.generatepress.com/article/adding-css/ -
AuthorPosts
- You must be logged in to reply to this topic.