atlantedbh
Forum Replies Created
-
Forum: Themes and Templates
In reply to: Can I restrict my theme to a certain domain?I figured. Thanks esmi!
Forum: Fixing WordPress
In reply to: Posts don't show up in single page templateswow, I changed this
<?php query_posts($query_string . 'category_name=hosting-plans&order=asc'); ?>
with this<?php query_posts('category_name=hosting-plans&posts_per_page=3&order=asc'); ?>and it worked, crazy don’t know why so in order for me to understand it better, please let me know anyway (IF POSSIBLE) Thanks in advance!
Forum: Fixing WordPress
In reply to: Custom featured posts slider bringing up some weird codeFixed! I changed the code to this:
<?php $my_query = new WP_Query('category_name=Featured&showposts=3'); while ($my_query->have_posts()) : $my_query->the_post(); ?> <?php if ( get_post_meta($post->ID, 'thumb', true) ) : ?> <li style="background-image:url(<?php echo get_post_meta($post->ID, 'thumb', true) ?>)"></li> <?php endif; ?> <?php endwhile; ?>That did it, not sure what was really wrong with the previous code though…
Forum: Fixing WordPress
In reply to: 500 Internal Server ErrorYour hosting company is having a server issue. Give it a few minutes theys should have it up and running in a little bit. Also, do you get this error from any other website? You could be having an internet connection problem.
Forum: Fixing WordPress
In reply to: All the content,post,images,videos,widgets gone! pls help meI would contact your hosting company and ask them to restore your site to the last day you remember your site to be working okay. When you uploaded your plugin, you may have chosen the wrong folder and it may have broken your site.
Forum: Fixing WordPress
In reply to: How Do I Change My Logo?Go to your header.php file and post your code for the
<h1></h1>tags here.I can help you if you feel comfortable giving me access to your code. Email me at
atlante(at)drummerboyhosting(dot)comSimply it looks like your just linking to an image. I need to see your code to be exactly sure about that. See if you see something like this:
<img src="http://www.businessframe.com/wp-content/themes/SaaS-I/images/logo.png" alt="Business Frame">🙂