Forum Replies Created
-
AuthorPosts
-
Str3llaMember
Hi Junaid,
I don't have Magazine PRO either. Anyway, you should be able to customize the fonts using one of the methods described in the tutorial provided by Anita in any Genesis Child Theme.Judging from the Theme Demo, Magazine PRO already uses a pair of fonts from Google Fonts (Raleway and Roboto). Since Berkshire Swash and Squada One are both present in Google Fonts, you should be able to find how the theme includes his default fonts and replace them with your fonts of choice.
So, unless Magazine PRO provides a "non-coder friendly" solution, you can reach the desired result in 3 steps:
1. Backup your child theme 🙂
2. Edit the child theme files (most likely functions.php or appearance.php) to enqueue the desired font. This is done as described in the WBbeginner tutorial.
You can search forwp_enqueue_script()
in your function.php file and look for a font related style: maybe you can edit the existing code instead of creating it from scratch.3. Edit the style.css file.
Search and replace the "font-family" value whenever you find it.For example, if you have:
body { font-family: Roboto, sans-serif; }
It should became:
body { font-family: 'Squada One', sans-serif; }
February 6, 2020 at 5:58 am in reply to: sample child theme – remove default content at bottom of pages #496502Str3llaMemberHi, s9tec!
Go to Appearance > Widgets and remove the default footer content.For further information, check out the Theme setup guide.
January 31, 2020 at 11:33 am in reply to: Genesis Sample Question About Removing Meta Data Above Content On Archive Pages #496336Str3llaMemberI suppose that you are using the Entry Meta Box in the Customizer to put the disclaimer before the post content.
If this is the case you can try with the genesis_post_info filter.//* Customize the entry meta in the entry header add_filter( 'genesis_post_info', 'my_custom_post_info' ); function my_custom_post_info( $post_info ) { if( ! is_singular( 'post' ) ) { $post_info = '[post_date] by [post_author_posts_link] [post_comments] [post_edit]'; } return $post_info; }
This way, the default Post Info will appear only on single posts.
The Genesis Sample After Entry Widget Area may be a better alternative, but the disclosure text will appear after the Post Content. Give it a try!
A third alternative may be a custom widget area.
-
AuthorPosts