tronicscribe
Forum Replies Created
-
Forum: Plugins
In reply to: Battle PluginHey there, any luck finding a plugin that does this? I’d like to use it for something as well.
Forum: Fixing WordPress
In reply to: comment fields, remove required, allow anonymouswow… thanks. I’ve been using wordpress since version 1.5 lol.
Forum: Fixing WordPress
In reply to: plain text in start of custom permalink structurethanks, that is good to know.
Forum: Plugins
In reply to: Custom Fields in Comment formI’m trying to figure this out as well, but I’m probably not quite as php savvy as you all. I included that function in my file, but I don’t see what it does. Do I need to echo something in order for this to work, or add something to my commments.php file? Thanks for the help.
Forum: Plugins
In reply to: Rate Anything?lol I was trying to figure this out for a while, too. Until I looked in the plugin folder and viewed the read me file. it says this:
4. Navigate to the ‘Rate Anything’ subpanel under ‘tools’ in your WP admin.
6. In your template file, add <? rate_anything_display() ?> where you wish the he ratings to appear.
I deleted the other unimportant steps which I’m sure you already took.
Forum: Themes and Templates
In reply to: P2 theme posts still ping?I see. so P2 does ping each post as it’s posted, even though it is not posting through the wp-admin?
Forum: Plugins
In reply to: short code as custom field value inputThank you very much. that worked well. I’m guessing that “apply_filters” does all the work, because it looks like the rest is just the standard way to show a custom field. Is this correct? Thanks again ??
Forum: Plugins
In reply to: short code as custom field value inputAnyone know how to make this work?
Forum: Requests and Feedback
In reply to: Should we still trust using WP?Thanks you for your input. The only reason I’m a bit frantic is because my host seems to be a little mentally challenged. I have been in email communication with them for about 10 emails now and they just won’t give me a straight answer or any useful information. I will email them with plenty of questions, and each time they email me back saying, “it was an old version of wordpress, will you take the steps to upgrade?”
I’ve called them and gotten the same response. Yes I am on shared hosting, no my file permissions are not set to 777, I think 744 or something close to that. So now I’m starting to believe it was a slip up on my hosts end, not so much the version of WP I was using. I hate customer support. Thanks for all your guys help. I’m still trying to get my accounts back ??
Forum: Requests and Feedback
In reply to: Should we still trust using WP?Hmmm, thank you. I am asking my host more about it. They told me it was hacked because I had an older version installed. However that version was 2.8.1 or possible 2.8
I searched the forums and found a few other people who have had their sites hacked and were using 2.8.1, but you say there is no relation to that hacks and that version?
Forum: Fixing WordPress
In reply to: WordPress hacked!I too have been hacked! yesterday I noticed I could not login to my host’s cpanel, and then noticed all 4 of my domains were listed as attack sites. My host emailed me saying my sites were suspended due to terms of use breach.
Today they emailed me saying it was wordpress that was hacked. I was using 2.8.1 I see now there is an upgrade to 2.8.2… kinda late guys. lol.
So I too am hoping once I resolve this, get my domains unsuspended, and reinstall everything, that my sites are no longer listed as attack sites.
Forum: Fixing WordPress
In reply to: adding classes to wp_list_pagesI know this thread was posted quite a while ago, but hopefully, filosofo, you’ll still check it.
Is there a way, using that function, to specify which instances of wp_list_pages I want it to apply to?
I have a menu in my header which uses wp_list_pages and “add_filter” is wonderfully adding a class to the anchor tags. However, in my sidebar I also have wp_list_page, but I do not want that particular list to have the class added. Is it possible to specify this? Thanks!
Forum: Plugins
In reply to: category template if statement for cat childrenas long as category 1 is the PARENT of the current category being queried.
Oh I’m so glad you said that. It made me realize I needed to first define the template for parent category 1 before I used your code to get the children. So I added this before your code.
if (is_category('1')) {include "cat_showcase.php";}
Before I did that, I was trying to view category 1 before I tried to view the child categories and it wasn’t showing the page. Now I can view cat 1 before choosing a child cat.
Thanks for all your help, and I hope I don’t run into any other roadblocks.
Forum: Plugins
In reply to: category template if statement for cat childrenthanks for the explanation. although I’m still not able to get it to work. in your code I changed == to != and it works with category 1. but it is still not detecting all the child categories. I’m trying to play around with it, but I don’t know how far I will actually get. if you find the time or desire to help me out any further, I’d appreciate it. Otherwise, thanks so much for all your help this far, I know I’m on the right track.
Forum: Plugins
In reply to: category template if statement for cat childrenThank you MichaelH, but would you mid explaining what this does to make it work, and how I would need to change it to work with my template files? I only understand some basic php and I’m not too sure how some of those wp functions work. Such as, would I need to specify the parent cat somewhere in that statement, and where would I tell it what template.php file to load? Thanks again for supplying the code, and I hope you don’t mind explaining it a bit.