Forum Replies Created
-
AuthorPosts
-
gstarr
MemberThanks!
One of the last things I needed to start the engine 🙂
Is there a plugin which can be shown in editor (like a button) where you can add own styles and via press of the button add custom buttons or color boxes?
I run a blog and while I did save codes in txt file to copy / paste styles faster, a button would make this even faster...
Thanks again!
gstarr
MemberHi Tony,
You are Fab.!
Many thanks, I needed this so badly.What a wonderful site you have, by the way, I will save it to my bookmarks, looks like it will become a great resource.
Thanks again mate!
gstarr
Memberthanks!
gstarr
Memberwhat I mean is that site-inner should remain in white, but background color would be applied to remaining white space....
gstarr
MemberI saw a lot of genesis sites with pagination enabled,
what is the right way to enable pagination?gstarr
MemberHi,
Thanks for your help!
That worked.But in the process I lost borders on the side and background.
Now all the website area is white.
If I set background color, background color it's not visible.
Also, logo is not in the right place.Would you know how I fix this?
Thanks!
gstarr
MemberAnyone?
Can the menu be wide as well?
gstarr
MemberHi Lauren,
I think I solved this:
//* Remove the entry header markup (requires HTML5 theme support) remove_action( 'genesis_entry_header', 'genesis_entry_header_markup_open', 5 ); remove_action( 'genesis_entry_header', 'genesis_entry_header_markup_close', 15 ); //* Remove the entry title (requires HTML5 theme support) remove_action( 'genesis_entry_header', 'genesis_do_post_title' ); remove_action( 'genesis_entry_header', 'genesis_post_info', 12 ); //* Add the entry header markup and entry title before the content on all pages except the front page add_action( 'genesis_before_content', 'jw_add_entry_header' ); function jw_add_entry_header() { if (is_front_page()) { return; } genesis_entry_header_markup_open(); genesis_do_post_title(); genesis_post_info (); genesis_entry_header_markup_close(); }Thanks for pointing me to the right direction! still newbie with Genesis
gstarr
MemberThanks,
The problem is that if I do that, on page 2 it shows the same widgets as page one.
I found a solution http://wpsites.net/web-design/add-latest-posts-with-pagination-to-front-page-with-widgets/
which is not working for me.If I apply this script that author posted, I get name of the page at the bottom of home page.
If I click on next page, it opens page 2 but only with the name of the page, there are missing posts.Any idea how this could be solved?
gstarr
Memberthinking about it and looking how others implemented pagination on the main page,
I would like to add Read more posts at the bottom of the page with the link to http://www.domain.com/page/1
page/1 is a page with a blog view with the latest posts, where front page is a page with various categories listed.gstarr
Memberwhat about line 87?
gstarr
Memberwow, thanks mate, that worked!
gstarr
MemberThanks for this tip Kellylise, I was able to move secondary menu below the main menu. It looks like this hook system ain't that hard to understand.
I have one question though.
In my case I wanted to move secondary menu below the main one.
I did the following:
//* Reposition the secondary navigation
remove_action( 'genesis_after_header', 'genesis_do_subnav' );
add_action( 'genesis_after_header', 'genesis_do_subnav' );Now I have two classes remove action and add action which are the same.
Is that still ok to do?November 14, 2014 at 1:16 pm in reply to: How to remove the whitespace above header – News Pro #131543gstarr
MemberThanks, that helped me too!
-
AuthorPosts