Forum Replies Created
-
AuthorPosts
-
September 15, 2016 at 10:18 am in reply to: Pagination issue with a custom category template #193204
Genesis Developer
MemberYes. It is not working. Sorry for it.
Genesis Developer
MemberGenesis Developer
MemberHere is the updated code http://pastebin.com/rh6j6JRF.
You used 'cat' => 'category_name',. I am not sure that it will work correctly. Parameter "cat" is accepting the category ID not cat name or cat slug
Genesis Developer
MemberGenesis Developer
MemberReplace your existing CSS with this once
.site-title a::before { background: url("http://www.is-there-a-god.info/blog/wp-content/uploads/2016/01/lighthouse-logo.png") no-repeat scroll 0 0; content: ""; display: inline-block; height: 50px; margin-right: 12px; position: relative; top: 11px; width: 50px; }
Genesis Developer
MemberIf your header right widget area is empty, then logo will stick to center. It is the default behavior in Genesis.
Genesis Developer
MemberReplace
.site-header { height: 160px; }WITH
.site-header { height: 83px; }
Genesis Developer
MemberYou can try this premium plugin http://genesisdeveloper.me/simple-grid-layouts
Genesis Developer
MemberHere is the premium plugin for any Genesis Child themes.
Genesis Developer
MemberAdd this code in your functions.php file
add_action( 'genesis_loop', 'genesis_standard_loop', 5 );
Genesis Developer
MemberOr You will change the hook or priority for archive description box and move it above the site inner div.
Genesis Developer
MemberOk.
Put the blog items inside a div wrapper. Right now there have no wrapper for blog items and this reason archive box is hiding by first 3 posts.
Genesis Developer
MemberAre your plugin compatible with Genesis? Are you checked it? If plugin is loading the completely custom template file, then Genesis hooks for intro text and description will not work. Also others Genesis hooks will not work.
Genesis Developer
MemberHere is the premium tuts for it.
Genesis Developer
MemberLogin to dashboard and navigate to Appearance -> Customize page. Now upload the Header Image and logo will appear on your site.
Genesis Developer
MemberIn Genesis site-title or tagline is showing by "genesis_seo_site_title" function which is locating in lib/structure/header.php file. It have a filter "genesis_seo_title". Using this filter you can alter the HTML markup for site title. I added following script into my child theme's functions.php file:
add_filter( 'genesis_seo_title', 'gd_remove_hyperlink_site_title', 10, 3 ); function gd_remove_hyperlink_site_title( $title, $inside, $wrap ) { if( ! get_header_image() ) $title = preg_replace( '/<\/?a[^>]*>/', '', $title ); return $title; }Removing the anchor tag if you are not using the header image option. Used PHP's preg_replace function and removed the hyperlink HTML tag from site title. Lastly I am returning the modified site-title HTML markup for echo.
August 23, 2016 at 9:16 am in reply to: What is the best way to customize functions.php & style.css? #191899Genesis Developer
MemberHave another good plugin https://wordpress.org/plugins/genesis-style-trump/ for stylesheet only,
August 23, 2016 at 9:15 am in reply to: What is the best way to customize functions.php & style.css? #191898Genesis Developer
MemberUse wpclips.net or custom plugin.
Genesis Developer
MemberHere is the pro tuts about thefull width header logo.
-
AuthorPosts