ajennell
Forum Replies Created
-
Forum: Fixing WordPress
In reply to: Please help! Single post showing multiple postsI may have figured it out. I think the problem is the coding in my sidebar.php file that is called before the main layout…
Forum: Themes and Templates
In reply to: Recent entries with excerpts – Code helpWell, as long as you find something that works for you! I’m still using the same code I have, but I’m coming up with other non-related problems.
Good luck to you!
Forum: Fixing WordPress
In reply to: Please help! Single post showing multiple postsYup. I had set up my own then tried the default but I still get the same error. I re-did my index with the code from ‘default’ as well as page.php but I still get the same error.
Forum: Fixing WordPress
In reply to: Please help! Single post showing multiple postsOk, so I’m using the same codes the default wordpress theme, but I still get the same problem. The default wordpress theme does not give me the multiple posts, but mine does despite the fact that I am using the default theme. Any suggestions?
Forum: Fixing WordPress
In reply to: Please help! Single post showing multiple postsI think I understand what you’re getting at. Now I just have to figure out what I did to fix it.
Thanks for pointing me in the right direction!
Forum: Fixing WordPress
In reply to: Need help, site not showing up correctly, see inside.It looks like your domain address is being masked. That means that no matter what page you go to https://cod4-aimbot.com will be shown in the address bar. I checked this by going to any page on your site and then viewing the source. The page is set up as a frame, your domain name an invisible upper layer and the page a visible bottom one. To change this check with your domain host or your server host and make sure you don’t have masking turned on.
As for the address showing up as https://www.cod4-aimbot.com/cod4-aimbot-hack-updated, unless you have DNS settings setup on your server, you will always get https://fpscheats.powweb.com/cod4aimbot/blah-blah.
Forum: Plugins
In reply to: Event Calendar 6.4 errorFigured it out ^_^ Thanks again!!
Forum: Plugins
In reply to: Event Calendar 6.4 errorThat one works great! Thanks!!
Is there anyway I can get rid of the bullets around the event listing?
Forum: Themes and Templates
In reply to: Recent entries with excerpts – Code helpThere really isn’t more info to give. The code is very straightforward and I would assume that anyone with knowledge of CSS and wordpress codes would be able to look at it and see my problem. If they don’t, they wouldn’t be able to help me.
I do not have a working example at the moment but https://thegildedpen.com/index.php is up when I am testing the layout and other codes and this can be seen active there.
Forum: Themes and Templates
In reply to: Recent entries with excerpts – Code helpBump
Forum: Plugins
In reply to: [Plugin: Events Calendar] What’s wrong with my Event Calendar ?I tried this but it didn’t help. I still get the error:
Warning: file_get_contents(): URL file-access is disabled in the server configuration in /home/domains/thegildedpen.com/web/wp-content/plugins/events-calendar/ec_calendar.class.php on line 42 Warning: file_get_contents(https://thegildedpen.com/wp-content/themes/gilded1/style.css): failed to open stream: no suitable wrapper could be found in /home/domains/thegildedpen.com/web/wp-content/plugins/events-calendar/ec_calendar.class.php on line 42
Anybody else have a suggestion?
Forum: Themes and Templates
In reply to: Recent entries with excerpts – Code helpbump
Forum: Themes and Templates
In reply to: How do I display posts from a specific category on a page?I know the fallowing code will call up the recent entries for a specific post. Just change CATEGORYNAME to the name of the category. Then enter how many posts you would like shown. I’m sure this isn’t what you want, but I hope it helps.
<?php query_posts('category_name=CATEGORYNAME&showposts=5'); while (have_posts()) : the_post(); // do whatever you want ?> <b><a href="<?php the_permalink() ?>" title="Permanent Link to <?php the_title(); ?>"><?php the_title(); ?></a> <?php endwhile; ?>
Forum: Themes and Templates
In reply to: CSS/Images not showing upI guess I was just being stupid. Forgot to change my home.php file… *sigh*
Thanks anyways!