nemo-maritime
Forum Replies Created
-
Forum: Fixing WordPress
In reply to: How do I pre-fill a comment form?Duh, dont know why, but I just spaced out, and it gave me errors. I just put it between
<textarea>blah blah blah</textarea>
Forum: Themes and Templates
In reply to: Exclude certain categories from the frontpageHello,
Not sure what is meant by “category/php template”, still learning : )
I did look into the source code. I put the code you gave me into the index.php file, and I looked at where the title was comming from, and the code for the title, from the header.php, was:
<title> <?php if (is_home()) { echo bloginfo('name'); } elseif (is_404()) { bloginfo('name'); echo ' - Oops, this is a 404 page'; } else if ( is_search() ) { bloginfo('name'); echo (' - Search Results');} else { bloginfo('name'); echo (' - '); wp_title(''); } ?> </title>
Dont see a part about Part 1, or Part 2 and so on.
Forum: Themes and Templates
In reply to: Exclude certain categories from the frontpageJust notices a little part that came extra with the code. It now shows everything like it should, still, but on the fron page, after the title, it adds “Part 1”. How can I get rid of just that part? The url is perfect, its just the title bar itself shows, “Part 1” after the site title, and only for the post list. Same thing with page 2, it shows “Part 2” in the title
Forum: Fixing WordPress
In reply to: Mobile version of my site issuesUpgraded to the newest version of wordpress mobile and also used mobilepress for a while. The issues seem to be fixed with either. As for the re-captcha, I just had to turn off the javascript strictness and it now shows up in the mobile version, but I have taken it off since as I myself did not need it. Works great though.
Forum: Fixing WordPress
In reply to: SSH vs SFTPSo I looked around a bit and it said to mostly make sure that you are using SFTP when transferring folders. My FTP program has that and I have been using it the whole time, so I am covered with this one.
SOLVED!! Got this one by messing around. The way I did it is I found the code to add differenat pages for articles that have <!–nextpage–> in them at the Codex page for template tags. I used the `<?php wp_link_pages(‘before=<p>&after=</p>&next_or_number=number&pagelink=page %’); ?>
` code and I put it in the themes/carrington-mobile/content/content-default.php folder and that gave me the link for those articles that were split into different pages.Forum: Plugins
In reply to: [Plugin: MobilePress] Cant get it to show next pages in an articleSolved!! Took some tinkering and looking around, but I got it on my own. Feel so proud.
The solution to this issue I stumbled over the code for adding the multiple pages link if an article is split at the Codex page for template tags. I just put the
<?php wp_link_pages('before=<p>&after=</p>&next_or_number=number&pagelink=page %'); ?>
code into the single.php in both of the themes folders. That gave me a link that gave it different pages for articles that had the <!–nextpage–> in them.
AHA!! That did it djpushplay, also solved my issue of having it show only how many comments were on that certain page of paged comments. Thanks a bunch for your help!
As for you hermanong, try deactivating all of the other plugins and leave threaded comments alone to see if it will work then, just my new-bie suggestion; if it works then one of the plugins are causing the issue. As for the e-mail part, I dont completely understand. Do you mean the the e-mail will send to the admin if there is a response/reply to a comment but not to the other people? Not at a 100% of what you mean by that.
Lastly, yes you can update your theme, but if the theme author did not update it, you would need to update it your self. You can always ask them to update it, but it depends on if they are willing/able. I got a premium theme and the author has disappeared, man am I pissed, but live and learn.
Poked around and tried different combos of the built in threaded comments but nothing is really doing it. Love the beautiful simplicity of the plugin, just stuck on the little part… will look into conflicts with other plugins. I do have paged comments, among a few, that might be messing up something with this plugin.
Forum: Fixing WordPress
In reply to: Same posts from my homepage are on all of my different pagesGot it! Had help from stvwlf. He gave me the following code that fixed it:
<?php $paged = (get_query_var('paged')) ? get_query_var('paged') : 1; query_posts("cat=-45,-119&paged=$paged"); ?>
Thanks to all of you for your help, especially t31os for getting me close to the issue.
Forum: Themes and Templates
In reply to: Exclude certain categories from the frontpageYep! That did it. Thank you very much
Forum: Fixing WordPress
In reply to: Same posts from my homepage are on all of my different pagesAhhhh some good news. So I went into the themes index.php file and I pasted over the original themes index.php content. That fixed the issue. Along the line of messing with it, I must have changed something that I should not have and it screwed everything up. I am now going over the index.php file to see what it is that I changed and see if changing that part will bring everything back. Heres hoping, was going insane with another issue, again ; )
Edit: Duh!!!! You were right t31os, I had the,
<?php if (is_home()) { query_posts("cat=-45, -119"); } ?>
In my index.php file to block out the categories I did not want on there. Thanks a billion for giving me a direction. If that code does not work, what the heck am I supposed to use to exclude the categories out then? Probably should start another thread for this one
Forum: Fixing WordPress
In reply to: Same posts from my homepage are on all of my different pagesAnd this would be in the source code of the site or the index file or some other file?
I looked into the source code of the site, when its loaded, but dont see anything there, so I am assuming I am wrong as that would/should not be in the source code, unless I’m just confused. At any rate, its not in the source.
Also, I had anouncements turned on for one of the posts, but that is not the issue either as I have tried turning it off and then on. Plus it all works for other themes as it should when I click “older posts” or “page 1, 2, or 3” or whatever page of posts.
Forum: Fixing WordPress
In reply to: Same posts from my homepage are on all of my different pagesDo you have something like a featured posts block in your theme, if so, try just disabling / removing it and seeing if the problem goes away…
Or anything that has it’s own independant query…
To see if there is an independant query, what should I be looking for?
Forum: Fixing WordPress
In reply to: Same posts from my homepage are on all of my different pagesI have that feature come with the theme, but I turned it off in the settings. Never used it on my site. The
I’d wager it being some special block of code with it’s own query that’s causing the problem…
part I understand and makes sense. Would the theme still be using the code even if I turned it off? I kind of doubt it because I have had it turned off for a while and the issues started some time ago, but I dont know exactly when because I havent used the “older posts” link in a while