Forum Replies Created
-
AuthorPosts
-
Roadturn
ParticipantOkay, thank you Victor.
I've been through the instructions. I'll go back to those. I've registered with the theme designer and I've asked them for help.
Much appreciated.
Roadturn
ParticipantThank you, Vic.
I started by following the instruction sheet and I have a request in to the developer. Much appreciated.
Roadturn
ParticipantWalked through the woocommerce steps. Added a product page. Still not showing. I turned the under construction sign off so the site is accessible.
Roadturn
ParticipantWhoops ... the under construction page is showing to visitors. Forgot about that.
I'll create those pages and see what happens. Much appreciated, Victor.
Roadturn
ParticipantThank you, Brad. That looks like the closest bet.
Roadturn
ParticipantThanks for the reply, Victor. I was hoping maybe there's a theme specifically for business directories. I'll take that as a "No."
Roadturn
ParticipantFor anyone else interested, I ended up using an image widget. Perfect. Just one question remaining - How to center heading and alt text.
Roadturn
ParticipantThank you, Christina. I'll give it a whirl.
November 12, 2017 at 6:08 pm in reply to: Add Same Content to the Bottom of Every Post – HOW? #213514Roadturn
ParticipantJust saw that, Brad. Gotta wake up here. Thank you.
November 12, 2017 at 5:19 pm in reply to: Add Same Content to the Bottom of Every Post – HOW? #213511Roadturn
ParticipantThank you, guys. Do I use the Genesis Hooks plugin for that?
Roadturn
ParticipantHmmm... Christina, do I just paste that code into the css without changing anything already there? Do I replace something with it? ...
Roadturn
ParticipantMuch appreciated, Christina. I will reverse-engineer to see where I was missing a gear.
Roadturn
ParticipantAnyone?
Roadturn
ParticipantMakes sense, Nick. Thank you.
Roadturn
ParticipantThank you, Anitac.
Roadturn
ParticipantGotta be the wrong URL, Anitac.
Roadturn
ParticipantThank you, Jonathan. I've seen that tool elsewhere. It checks width and device size only. My consternation is why the w3 validator, for instance, returns such a poor report.
Roadturn
ParticipantThank you, Jared. Have you used the online testing tools for your sites? Seems unlikely the tools would all be wonky. I'm wondering if they are looking at parameters not affected by StudioPress mobile responsive design .... ??
Roadturn
ParticipantAt the very end of functions.php, I see:
genesis_register_sidebar( array(
'id' => 'portfolio',
'name' => __( 'Portfolio', 'balance' ),
'description' => __( 'This is the portfolio page.', 'balance' ),
) );DO I THEN add the full amount of the gist you sent right here? The gist ends as follows:
if ( $published_compare < $modified_compare ) {
echo '<span><em>· (Updated: ' . $modified . ')</em></span>';
} ?>
</div>
<?php }WILL THAT WORK to wrap it all up?
One more thing ... there is going to be duplicate code if I simply add the gist to the end of the file and leave the rest as is.
Thank you, Nick. I want to be sure I understand before I start messing with the code.
Roadturn
ParticipantThank you, Nick.
Do I edit the theme functions directly or use a plugin?
Also, the current code follows. Where does the new stuff end and how much of the current is replaced?
remove_action( 'genesis_before_post_content', 'genesis_post_info' );
add_action( 'genesis_before_post_title', 'genesis_post_info' );/** Customize the post info function */
add_filter( 'genesis_post_info', 'post_info_filter' );
function post_info_filter($post_info) {
if (!is_page()) {
$post_info = '[post_author_posts_link] [post_date]';
return $post_info;
}
}/** Customize the post meta function */
add_filter( 'genesis_post_meta', 'post_meta_filter' );
function post_meta_filter($post_meta) {
if (!is_page()) {
$post_meta = '[post_categories] [post_edit] [post_tags] [post_comments]';
return $post_meta;
}
} -
AuthorPosts