Forum Replies Created
-
AuthorPosts
-
November 29, 2018 at 6:03 am in reply to: Changing the default Cateogry link if using Page > Blog Template #224699
pjwdesign
MemberThanks for this info. Interesting obviously why I could never find a tutorial. 301 for now till you work it out 🙂 Thanks again
July 4, 2018 at 1:23 pm in reply to: In Genesis sample 2.6.0 – would like to put site credits below footer navigation #221333pjwdesign
MemberWell thank you Mr Dalton. Yes looked at that list and the footer related ones. Need a bit more guidance. Nav just seemed to disappear. Anyone else?
pjwdesign
MemberThat's the odd thing that is not there.
pjwdesign
MemberI added the following to the new Plugin update in single-portfolio.php
//* Force full-width-content layout setting
add_filter( 'genesis_pre_get_option_site_layout', '__genesis_return_full_width_content' );...not ideal but works for now.
pjwdesign
MemberI reinstalled older version of Portfolio plugin and the pages have returned to full width - although still no layout options on the portfolio pages...odd
pjwdesign
MemberThis is the odd thing - the layout options have disappeared. Will look at method suggested. thanks
pjwdesign
MemberHow would you make a project page full width in the normal way? Am I missing something?
pjwdesign
MemberIts in development - behind password sorry.
pjwdesign
MemberPerfect many thanks
pjwdesign
MemberHi Brad
yes I fixed it with this
remove_action( 'wp_head', 'genesis_paged_rel', 10, 0 );
pjwdesign
Memberpjwdesign
Memberpjwdesign
MemberThank you for this - yes its a misunderstanding by the client (and me!) of how that Parralax works. As you say there is infact nothing underneath, its an illusion that the images are.
pjwdesign
MemberIn the end I created a widget area..someone may know a better way..but it worked.
//* Register blog listing header widget area ******************************************************* genesis_register_sidebar( array( 'id' => 'add_header_before_content', 'name' => __( 'Before Content Header', 'altitude' ), 'description' => __( 'This is a widget area for th eheader on blog list page', 'altitude' ), ) );
// Add Header to Blog Listing Page *******************************************************
add_action( 'genesis_before_content', 'add_header_before_content', 5 );
function add_header_before_content() {
if ( is_page( 'blog' ) )
genesis_widget_area( 'add_header_before_content', array(
'before' => '<div class="blogt">',
'after' => '</div>',
) );
}pjwdesign
MemberThank you for this - I cant believe there isn't a solution to adding a Title to the category blog page...everything working fine apart from this. Grateful for any ideas.
pjwdesign
Memberhttps://amethystwebsitedesign.com/how-to-use-wordpress-conditional-tags/
Many thanks Brad - that was very useful.
I also found above article which put things really clearly.
pjwdesign
MemberLooks like that would appear on every page?
pjwdesign
MemberMany thanks - I assume there is a tutorial on this somewhere? If anyone knows that would be great.
pjwdesign
MemberI want to be able to display a different nav on 2 lots of 6 pages. So 2 footers 12 pages.
It could be a footer widget if this is easier.
Or the footer with the credits if this is easier.
Hope that's clear.
Many thanks
pjwdesign
MemberThanks Brad - I have tried this, suspect I have to do a bit more though. There is a page which explains the excerpt on WordPress
https://codex.wordpress.org/Excerpt
Below is significant I think? Not sure if something can be done in functions.php
The relationship between the three is this: When a post has no manual excerpt and the post template uses the the_excerpt() template tag, WordPress generates an excerpt automatically by selecting the first 55 words of the post. When the post template uses the the_content() template tag, WordPress will look for the More tag and create a teaser from the content that precedes the More tag.
-
AuthorPosts