Forum Replies Created
-
AuthorPosts
-
RoadturnParticipant
Okay, 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.
RoadturnParticipantThank you, Vic.
I started by following the instruction sheet and I have a request in to the developer. Much appreciated.
RoadturnParticipantWalked through the woocommerce steps. Added a product page. Still not showing. I turned the under construction sign off so the site is accessible.
RoadturnParticipantWhoops ... the under construction page is showing to visitors. Forgot about that.
I'll create those pages and see what happens. Much appreciated, Victor.
RoadturnParticipantThank you, Brad. That looks like the closest bet.
RoadturnParticipantThanks for the reply, Victor. I was hoping maybe there's a theme specifically for business directories. I'll take that as a "No."
RoadturnParticipantFor anyone else interested, I ended up using an image widget. Perfect. Just one question remaining - How to center heading and alt text.
RoadturnParticipantThank 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? #213514RoadturnParticipantJust 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? #213511RoadturnParticipantThank you, guys. Do I use the Genesis Hooks plugin for that?
RoadturnParticipantHmmm... Christina, do I just paste that code into the css without changing anything already there? Do I replace something with it? ...
RoadturnParticipantMuch appreciated, Christina. I will reverse-engineer to see where I was missing a gear.
RoadturnParticipantAnyone?
RoadturnParticipantMakes sense, Nick. Thank you.
RoadturnParticipantThank you, Anitac.
RoadturnParticipantGotta be the wrong URL, Anitac.
RoadturnParticipantThank 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.
RoadturnParticipantThank 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 .... ??
RoadturnParticipantAt 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.
RoadturnParticipantThank 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