naijay
Forum Replies Created
-
Forum: Fixing WordPress
In reply to: Can't access pluginsFound a similar post and fixed the error!
Forum: Fixing WordPress
In reply to: Featured Posts Thumbnails@deepbevel ok, well I hope we can both get our issue sorted! It just looks really weird! Not a very pleasant look to have! lol
Forum: Fixing WordPress
In reply to: Featured Posts Thumbnails@dbalden when I set the thumbnail size, the photo still appears as one big blurr on the main page. As if it was zoomed in too far. I’m not sure what’s happening with that… the dimensions are currently set to 150×150.
I’m wondering if the code for my featured posts on the main page is teh reason why this is happening?Once I get this issue resolved, I’ll take a look at the code you provided to set the default thumbnail.
Thanks so much!
@deepbevel thanks for your input. The settings option didn’t seem to help to change the issues i was having!
Forum: Fixing WordPress
In reply to: Custom Header IssuesI thought I did, well I’ll try it again.
Thanks again, appreciate your help!Forum: Fixing WordPress
In reply to: Custom Header Issues@ishaanrawat yes that worked! Thanks so much for your help! All the best, take care! 🙂
Forum: Fixing WordPress
In reply to: Custom Header Issues<title>
<?php
if (is_home()) {
echo bloginfo(‘name’);
} elseif (is_404()) {
echo ‘404 Not Found’; echo ” / “; bloginfo(‘name’);
} elseif (is_category()) {
echo ‘Category:’; wp_title(); echo ” / “; bloginfo(‘name’);
} elseif (is_search()) {
echo ‘Search Results’;
} elseif ( is_day() || is_month() || is_year() ) {
echo ‘Archives:’; wp_title(); echo ” / “; bloginfo(‘name’);
} else {
echo wp_title(); echo ” / “; bloginfo(‘name’);
}
?>
</title>Forum: Fixing WordPress
In reply to: Custom Header Issues@ishaanrawat yes it did thanks!
I have another quick question, My title keeps showing with the “/” symbol in front of it, how do I remove it?
Forum: Fixing WordPress
In reply to: Custom Header Issues@ishaanrawat thanks so much that worked!
I have another quick question, My title keeps showing with the “/” symbol in front of it, how do I remove it?
Forum: Fixing WordPress
In reply to: Custom Header Issues@ishaanrawat I tried that, but nothing comes up with “buy beauty style earrings and neckalce”
I’m not sure what’s been going on, it’s been driving me crazy for over an hour now.
Forum: Fixing WordPress
In reply to: Custom Header Issues@ishaanrawat This is the code
<!– Slogan top –>
<div class=”slogan_top”><?php echo get_option(‘dcb_slogan’);?>
</div>
<!– /Slogan top —