5115
Forum Replies Created
-
Forum: Fixing WordPress
In reply to: Limiting Comments@iainpurdie: Thanks for posting that link! Perfect solution.
Forum: Fixing WordPress
In reply to: Limiting CommentsAlright, I found this code:
<script type="text/javascript"><!-- var wordLen = 255; // Maximum word length function checkWordLen(obj){ var len = obj.value.split(/[\s]+/); if(len.length > wordLen){ alert("You cannot put more than "+wordLen+" words in this text area."); obj.oldValue = obj.value!=obj.oldValue?obj.value:obj.oldValue; obj.value = obj.oldValue?obj.oldValue:""; return false; } return true; } //--></script>
and for the textarea:
<textarea rows="15" cols="30" name="t1" onchange="checkWordLen(this);"></textarea>
(I know the pop-up would be annoying but, it would prevent readers posting mile long comments.)
The above code almost works. But, after you hit the submit button WordPress still accepts the comment after getting the notice that you have entered too many words. Could anyone help me implement this code so it is functional with WordPress? Or is there an alternative script I can use?
Thanks in advanced.
Forum: Your WordPress
In reply to: Jerico SystemsAre you no longer a moderator whooami? Whether you are or not you guys tend to be pretty harsh. It’s discouraging and quite frankly I’m tired of it. You guys need to go through a customer service course for the sake of WordPress.
Forum: Plugins
In reply to: How to Modify DashboardThen it’s best probably to leave it alone… unless if you can hire a programmer to change the dashboard for you.
Forum: Plugins
In reply to: If statement for page so ads dont showCorrect me if I am wrong, but your code will look something like this:
<?php if (is_home()){ ?> Google Ad Code Goes Here <?php }?>
Forum: Plugins
In reply to: How to Modify DashboardJust make a backup of the files you want to edit in case something gets messed up. Then you’ll be fine.
Forum: Plugins
In reply to: How to Modify DashboardThat’s all in the wp-admin folder.
Look for: index.php, index-extra.php and go from there.
But you’ll have to repeat everything once you do an upgrade.
Forum: Everything else WordPress
In reply to: Convert to WP from SMFI don’t think that is possible. You may be able to convert it over to another forum, but that all depends on what forum you will be using.
Forum: Everything else WordPress
In reply to: WordPress to paperYou may want to look at WPTEX:
https://xhtml-css.com/wptex/index.htmlForum: Fixing WordPress
In reply to: if in categoryMy apologies for the annoyance.
Could you tell me if there is an alternative tag? I am trying to ignore a particular category.Forum: Fixing WordPress
In reply to: if in categoryIs being able to use a category name instead of ID possible with this tag???
<?php if (in_category('4')) continue; ?>
If not, is there an alternative?
Help please.
Forum: Fixing WordPress
In reply to: if in categoryNobody?
Forum: Fixing WordPress
In reply to: if in categoryI’ve searched the forums and have found similar requests, but the posts are unanswered.
Does anyone have a clue on how to use this tag so that it’s calling a category name instead of a category ID?
<?php if (in_category('4')) continue; ?>
Any help would be appreciated.
Thanks in advance.
Forum: Fixing WordPress
In reply to: if in categoryHow come this does not work?
<?php if (in_category('category name')) continue; ?>
Forum: Fixing WordPress
In reply to: URL re-direct?Is this what your talking about:
https://codex.www.ads-software.com/Giving_WordPress_Its_Own_Directory