cornetjr
Forum Replies Created
-
Forum: Fixing WordPress
In reply to: Casinoes, Roulettes and Craps *HACK*This is in response to a reply that was deleted:
deankeen wrote:
Same here…. :/ I’ll report back if I figure it out.
Deankeen, there are a number of table entries that are added to your wordpress mysql database by this particular hack. What i found is that you can delete these tables, it will remove the pages that are added to your blog.
I believe that there is a file or piece of php added that will add the information back to the table after it is deleted.
If you find any info, please post.
Thanks!
Forum: Fixing WordPress
In reply to: Casinoes, Roulettes and Craps *HACK*I am not bumping the thread.
As stated in previous reply. The code appears at the end of the header tag.
I also discovered that although i removed the rewrites in the wordpress database tables, the pages still remain:
http://www.critiquethis.us/?p=play-blackjack
I also notice that if I mod this, it takes me to the home page
http://www.critiquethis.us/?p=(some value)
where (some value) is a variable for different key words.
The ?p= must initiate the command.
More to come. Is anyone else having this problem?
Forum: Themes and Templates
In reply to: Multiple siderbars not loading correctly<?php get_constructor_sidebar(‘front’); ?>
“constructor_sidebar.php” is the name of a file. Sounds like a css problem.
Forum: Plugins
In reply to: [Plugin: NextGEN Gallery] AJAX effect for lightboxAnybody figure out why the loading script continues to run even after everything is loaded?
Thank you, I thought I read this at one time, but forgot!
when someone types in http://www.mysite.com I want a splash page to load and then I want to link them to wordpress.
Forum: Fixing WordPress
In reply to: Calling post with multiple loopsFigured it out!
Weblogtools is an amazing resource, code here:
http://weblogtoolscollection.com/archives/2008/04/19/paging-and-custom-wordpress-loops/
Forum: Fixing WordPress
In reply to: Calling post with multiple loopsI have succesfully implemented the technique below:
http://weblogtoolscollection.com/archives/2008/05/17/how-to-avoid-duplicate-posts/
Anyone know how to incorporate pagination using the filter technique?
Forum: Fixing WordPress
In reply to: RSS Feeds and WordPress More tagAppears it was the plugin that I didn’t completely uninstall, I will let you know when I post today if it works.
Forum: Fixing WordPress
In reply to: RSS Feeds and WordPress More tagSamboll,
I tried what you suggested, turned off the rsscomplete plugin and clicked full text instead of summary under the options, but my feeds still only show as summary. I noticed afterwards that when I select full text and click save, wordpress does not allow it and reverts back to summary, any ideas?
Forum: Fixing WordPress
In reply to: RSS Feeds and WordPress More tagWill previous articles that have posted to my feed be updated? Does it take awhile for feedburner to update? Or does this only apply to new articles?
Forum: Fixing WordPress
In reply to: Calling post with multiple loopsI rewrote my homepage from scratch using an array technique suggested here:
http://www.goboxy.com/wordpress/avoid-duplicate-posts-in-multiple-loops/
The only problem is that if the main loop does not contain a category in it that category loop will display two articles instead of one. If anyone is interested I upload the updated home.zip file.
I am going to attempt the technique here:
http://weblogtoolscollection.com/archives/2008/05/17/how-to-avoid-duplicate-posts/
Perhaps this will yield better results.
Forum: Fixing WordPress
In reply to: Calling post with multiple loopsOkay, I know a little bit more about what I want to do. I am trying to get the different loops to speak to each other so that the featured loop will display the three newest articles from the archive. Then the right loops pull the newest article from each sub-category, but if the newest article in the sub-category is featured in the main feature that article is skipped and the second post is shown. Any help would be appreciated.
I have included a link to the home.php file:
http://www.critiquethis.us/home.zipForum: Fixing WordPress
In reply to: the_content filter issuesFor some reason, even though I was not on the homepage I had to use this code:
<?php
global $more;
$more = 0;
?>It appears that the more tag is on by default on the homepage and off on all other pages, despite the reference below:
Forum: Fixing WordPress
In reply to: the_content filter issuesI mean the <!–more–> tag, sorry.