Makeshift
-
Email/Contact Script
Well, trouble with spam doesn't mean you have to switch mail scripts, you can use reCAPTCHA, it's real easy http://www.google.com/recaptcha It has all of the instructions on the site, and it's easy to implement.
-
can a textarea auto-fit within a div?
Yeah, and when you set it statically, don-t forget to subtract the padding for each side.
-
use function variables like wordpress
oh, wow. works like a charm thank you very much.
-
use function variables like wordpress
I know that, but how do i get the function to get each variable passed using ampersands and equal signs like that? I made this little script for it: function _li($args){ $args = explode('&', $args); $args1 = $args[…
-
jQuery messes up form submission
Dang, I was unaware, lol. thank you
-
[Solved] Remove default text from text area
http://css-tricks.com/snippets/jquery/clear-default-search-string-on-focus/ This should be what you're looking for.
-
[Solved] User Authentication (without db)
Nevermind, I got it. This is the final code I came up with: $authentication = $_POST['authentication']; $user_authentication = array( 'users' => array( 'dyllon' => 'foo', …
-
Visitors still seeing old web page...why?
html: insert this in the head of your website. (this method is known for not working with internet explorer.) php: insert this before head section of your website.
-
[Free Resource] Php MySQL Class 1.3
wow, took me a little to figure out this that and the other, but this.. it's simply amazing. I love it.. thank you very much.
-
Wordpress Theme
The only thing I didn't like is that the search bar was at the very bottom of the page. other than that, I like it.
-
use Enter to process an a link
I'm not sure, but (in case you didn't know) you can also use:
-
New 100% width slideshow
If you give us a link to your page, you'll probably get a better response.
-
php the_content is not displaying
You know, it's really difficult for anyone else to figure out the issue unless they had access you either your site, or your template. Your best bet would to download your template (if you don't already have a local copy of it) and send it…
-
[Solved] Page Titles in PHP
you would need to put $pageTitle before you include the header file like this: You need to declare the variable before you try to use it.
-
hello: how to hidden or md5 url
if($_GET){ $page = $_GET['page']; $page = md5($page); header(\"Location: page=$page\"); } that will turn: ?page=page into ?page=04c47843e01f46c273d44c511f02a00d
-
Code Beautifier and/or Tabify for Wordpress?
The 'tabifier' is just indenting your code and making it easier to read. It does nothing for the layout.
-
The parent theme is missing [Help!]
Neeeevermind. Fixed it. It had to do with the stylesheet header
-
Code In WordPress
Here's what I'd do.. put this in your functions file: function callback($buffer){ $convert = \"/([\])/\"; $replace = \"<$2>\"; $buffer = preg_replace($convert, $replace, $buffer); return $buffer; } a…
-
validation
Ohh, thank you. I accidentally put the code after the ending body tag and before the end html tag.. I moved it right before the end body tag and it validates! Thanks
-
is there another way
you can fix this using jQuery by putting an inline level element like a span within a block level element like a div or h2. Html: aurel CSS: h2 { padding: 60px; height: 114px; } jQuery: $(function(){ $('h2').each(function(){ …
-
[Solved] Html validating issues
I had actually never tried it because that's what I thought it would do.. I really need to stop thinking I know what's better when I'm asking someone else the question...
-
[Solved] Html validating issues
Scratch that, you're right... Thank you :)
-
[Solved] Html validating issues
Well, the problem with that is it will send me to that exact link, it doesn't encode the ampersand..
-
Tweet bird website fun
This isn't a bad idea, but I doubt people are just going to do this for you for free.. Now people might take this idea and run with it for themselves, but if you want someone to make something like this for you, you might wanna think about hir…
-
conditional PHP in wordpress theme
Parse error: syntax error, unexpected T_ENDWHILE in /home/berke14q/public_html/staging/berke14q_wrdp/wp-content/themes/StudioBlue/StudioBlue/page.php on line 63 Ya might wanna get that taken care of... No problem, that's why we're here!
-
conditional PHP in wordpress theme
Alright, a few problems here. I see you're using the colons ':' and the brackets '{' '}'. You can't use both on the same statement. When using the colons, here is how it would go... if($foo == $bar): do_some…
-
Dialog alert box advice needed
With javascript there is the alert() function and the confirm() fucntion.. The alert will simply alert, you click o.k. and you're done. The confirm on the other hand lets you set what happens weather they choose o.k. or cancel. This is an ex…
-
printliminator not working with noscript
Unless you're looking at porn or looking for crack sites you shouldn't need Noscript on anyways.
-
[Solved] Arrow Operator
Alright, well, I looked into it, and it seems you made a mistake in your example.. Your function was like this: function getStatement() { echo $h . \", \" . $w; } But in order for it to use the variables you would have to use this: f…
-
default cursor
If you're referring to how slow the page is, it's the web server I'm using. I'm still learning and it's free, so I'm not too worried if it takes a few more seconds to load.