Cyn1c
Forum Replies Created
Viewing 2 replies - 1 through 2 (of 2 total)
-
Forum: Fixing WordPress
In reply to: Permalinks Not WorkingHello @larsonreever and thanks for your reply.
I’m on Windows hosting so I’m not sure if .htaccess would work? I think you meant web.config instead?
I’ve tried that but it’s not working. I’m pretty sure I’m missing a step somewhere but I can’t quite nail it.
Forum: Themes and Templates
In reply to: Hyphen after site title in browser tabI did that already. No replies there.
Here’s another code snippet from the actions.php file that is somewhat close to what I’ve been reading for a solution.
<header id="header" class="fix"> <?php $header = ($suf_header_fg_image_type == 'image' && trim($suf_header_fg_image) != '') ? "<img src='$suf_header_fg_image' alt='".esc_attr(get_bloginfo('name'))."'/>" : get_bloginfo('name', 'display'); $home_link = home_url(); if (function_exists('icl_get_home_url')) { $home_link = icl_get_home_url(); } if ($suf_sub_header_vertical_alignment == "above") { ?> <div class="description <?php echo $suf_sub_header_alignment; ?>"><?php bloginfo('description');?></div> <<?php echo $header_tag?> class="blogtitle <?php echo $suf_header_alignment; ?>"><a href="<?php echo $home_link;?>"><?php echo $header;?></a></<?php echo $header_tag?>> <?php } else { ?> <<?php echo $header_tag?> class="blogtitle <?php echo $suf_header_alignment; ?>"><a href="<?php echo $home_link;?>"><?php echo $header;?></a></<?php echo $header_tag?>> <div class="description <?php echo $suf_sub_header_alignment; ?>"><?php bloginfo('description');?></div> <?php } ?> </header><!-- /header -->
Viewing 2 replies - 1 through 2 (of 2 total)