Forum Replies Created
-
AuthorPosts
-
haggis
MemberArrgh. The answer was right in front of me. I added
//* Unregister primary/secondary navigation menus and footer
remove_theme_support( 'genesis-menus' );
remove_action('genesis_footer', 'genesis_do_footer');
remove_action('genesis_footer', 'genesis_footer_markup_open', 5);
remove_action('genesis_footer', 'genesis_footer_markup_close', 15);before genesis(); -- works fine.
Many thanks!
haggis
MemberWordPress Codex solved it:
function remove_more_link_scroll( $link ) { $link = preg_replace( '|#more-[0-9]+|', '', $link ); return $link; } add_filter( 'the_content_more_link', 'remove_more_link_scroll' );
haggis
MemberVictor, many thanks.
1. Do you have an idea where these "#more-4032"s might be coming from?
2. Rather than going through ALL links on the blog to remove the "#more-4032", can I remove the anchor to which those odd links link to?
Thanks again.
haggis
MemberOops, that was too quick. Here is the function:
//* Hook after post widget after the entry content
add_action( 'genesis_after_entry', 'remobile_after_entry' );
function remobile_after_entry() {if ( is_singular( 'post' ) || is_page(array ( 30474, 29536, 30873, 7802, 29640, 30863, 32019, 32025 ) ) )
genesis_widget_area( 'after-entry', array(
'before' => '<div class="after-entry widget-area">',
'after' => '</div>',
) );
}The widgets still show twice (above and below the comments box). Sorry for the confusion
haggis
MemberGot it. Thank you very much.
haggis
MemberI type manually but copied and pasted the text in the quote. Ha. I deleted that bit and now the feed seems to be OK again!
haggis
MemberI am in the text editor. It doesn't show those tags. I have text and the blockquote.
haggis
MemberSorry - how do I get to see those tags in the editor?
haggis
MemberDone.
-
AuthorPosts