dazedandconfuzed
Forum Replies Created
-
Forum: Fixing WordPress
In reply to: Help with menu tab, please.TrishaM…thank you for the suggestion. I would still like to know how to change the loop to show the full post.
Forum: Fixing WordPress
In reply to: Help with menu tab, please.Forum: Themes and Templates
In reply to: [Virtue] Problem with Menu navigationOh thank you, thank you, lorro!!! I do believe that did the trick! I can’t tell you how much I appreciate your help!
Forum: Themes and Templates
In reply to: [Virtue] Problem with Menu navigationIf you go to my site you’ll see what I’m talking about. Click on the “Recipes” page from my main menu. Then go back to my home page and click on the “Category” link “Recipes” underneath the post title.
https://841.a0c.myftpupload.com/Forum: Themes and Templates
In reply to: [Virtue] Problem with Menu navigationForum: Themes and Templates
In reply to: [Virtue] Show full post on category page?Thank you, hannah. That worked!
Forum: Themes and Templates
In reply to: [Virtue] Remove "Leave A Reply" from post on home page?https://841.a0c.myftpupload.com/
Sorry…I can’t find “page settings” in general settings.
Forum: Themes and Templates
In reply to: [Virtue] Problem with Menu navigationIt isn’t showing that I replied to this on the support home page. My latest reply is above.
Forum: Themes and Templates
In reply to: [Virtue] Remove "Leave A Reply" from post on home page?That did the opposite of what I want. It took it away from posts on my category pages, but left it on posts on my home page. ??
Forum: Themes and Templates
In reply to: [Virtue] Show full post on category page?Thank you, hannah. That worked!
Forum: Themes and Templates
In reply to: [Virtue] Problem with Menu navigation@hannah…I’m still working on it, so it hasn’t gone “live” yet, so I hope this link works for you: https://841.a0c.myftpupload.com
@Kadence Themes Member…I created a Main Menu and added my pages to it. Then I checked the boxes “Auto Add Pages…” and “Secondary Navigation” in “Theme Locations”.As to how I have gotten this far on my blog creation…it’s been “one step forward and two steps back” and “trial & error”! ??
Forum: Themes and Templates
In reply to: [Virtue] Show full post on category page?There isn’t a “category.php” in the list. I can’t find “<?php the_content(); ?>” on the “archive.php” page. Here’s what’s on that page:
<div id=”pageheader” class=”titleclass”>
<div class=”container”>
<?php get_template_part(‘templates/page’, ‘header’); ?>
</div><!–container–>
</div><!–titleclass–><div id=”content” class=”container”>
<div class=”row”>
<?php global $virtue; if(isset($virtue[‘blog_archive_full’]) && $virtue[‘blog_archive_full’] == ‘full’)
{$summery = ‘full’; $postclass = “single-article fullpost”;} else {$summery = ‘normal’; $postclass = ‘postlist’;} ?>
<div class=”main <?php echo kadence_main_class(); ?> <?php echo $postclass;?>” role=”main”><?php if (!have_posts()) : ?>
<div class=”alert”>
<?php _e(‘Sorry, no results were found.’, ‘virtue’); ?>
</div>
<?php get_search_form(); ?>
<?php endif; ?>
<?php
if($summery == ‘full’) {
while (have_posts()) : the_post();
get_template_part(‘templates/content’, ‘fullpost’);
endwhile;
} else {
while (have_posts()) : the_post();
get_template_part(‘templates/content’, get_post_format());
endwhile;
}if ($wp_query->max_num_pages > 1) : ?>
<?php $bignumber = 999999999;
$pagargs = array(
‘base’ => str_replace( $bignumber, ‘%#%’, esc_url( get_pagenum_link( $bignumber ) ) ),
‘format’ => ‘?page=%#%’,
‘total’ => $wp_query->max_num_pages,
‘current’ => max( 1, get_query_var(‘paged’) ),
‘prev_next’ => True,
‘prev_text’ => ‘?’,
‘next_text’ => ‘?’,
‘type’ => ‘plain’,
); ?>
<div class=”wp-pagenavi”>
<?php echo paginate_links( $pagargs ); ?>
</div><?php endif; ?>
</div><!– /.main –>
Please keep in mind that I am a “newbie”! ??