digitz
Forum Replies Created
-
Forum: Fixing WordPress
In reply to: Tags not working after upgrade to 2.8Same here. Tags aren’t working in New Post page.
Forum: Fixing WordPress
In reply to: [Plugin: Contact Form 7] Problem uploading big filesSuggestion: Why not use the KB as the file upload unit instead of bytes?
Forum: Developing with WordPress
In reply to: Contact Form 7 doesn’t work with PermalinkNope, it a WP-based error you’re receiving. nothing to do with CF7.
I’ve been using permalinks for like light years, and no problem with or without them in CF7.
Try this:
1. Enable Permalinks, make sure you specify relevant permissions in your .htaccess file to display fancy links
2. Clear all you website cache if you’re using a caching mechanism e.g. Super Cache, Widget Cache etc..
3. Clear all your browser Cache, cookies etc…
4. Reload the page.Hope this helps.
Forum: Requests and Feedback
In reply to: Contact Form 7: Database InsertAs far as my correspondence with the plugin developer, this is not a pth which this plugin will be going through.
CF7 has simplicity in mind. Actually in order to preserve this philosophy, the developer simply rejects any feature offending the simplicity of the plugin.
Forum: Fixing WordPress
In reply to: [Plugin: Contact Form 7] Displaying tooltips via WP tooltip pluginsI found the solution here:
https://www.dynamicdrive.com/dynamicindex16/showhint.htm
The only thing you have to do is, firstly insert the following code in you wp-config.php file in order to make CF7 run JavaScript code:
define('WPCF7_AUTOP', false);
Forum: Plugins
In reply to: Contact Form 7 not compatible with FirefoxMy page loads perfectly in FF and IE. My guess is that you have template errors. Try validating you template.
Seems like I misinterpreted your request,
What you’re looking for is to highlight the text, not the form field.
I’m not sure how to do the last part, but:
In order to make CF7 run JavaScript code, you will need to insert this code in your WordPress wp-config.php file: (default location is in your site’s root directory)
define('WPCF7_AUTOP', false);
Having done that, you go to your form design page and having the above HTML code layout, insert the following code in between <head> and </head> either after the </style> tag or before <style>, but not in between them.
<script language="JavaScript"> function highlight(field) { field.focus(); field.select(); }</script>
Now this is the tricky part which I don’t have an idea about where you put the last code, but maybe the plugin developer can help us out with this.
For each field that you want to select all the text in when clicked, add this ‘onClick’ action:<input type="text" name="phone-number" size="30" value="+12345789613" onClick='highlight(this);'>
You might like to change the highlight color of your form fields. For this, you should just insert the HEX code for your desired color in the CSS tag background-color.
To make your life easier, here are a few color codes which look nice and don’t hurt the eyes when viewed on screen:
Mild Blue: #edfbff
Mild Pink: #ffedf2
Mild Custard Cream: #feffe1
Mild Green: #e4ffdaAs a rule of thumb, you should always use mild colors for form field content to stand out.
For example, if you’d like to change the default Mild Blue to Mile Green, simply replace #edfbff in front of the CSS tag background-color to #e4ffda.
Never omit this fellow ;
because all CSS tags must end with ; in order to work.Hope this works. Should be a piece of cake with all these examples and tips.
Cheers,
Mohammad
Pretty easy,
Here are the steps:
1. You should have your form designed as a basic HTML page. what I mean by basic, is that it should have the following tags in it before you attempt to design your form, or even easier, you should place a <body> at the top of your form code and a </body> at the end.
So this is what you should have before we proceed to the next stage:
<html> <head> </head> <body> HERE'S WHERE ALL YOUR FORM CODE SHOULD BE PLACED </body> </html>
You’ll notice, for each HTML tag you open, you must close it after the tag’s contents.
You’ll also notice that all your form code should be placed between <body> and </body>.2. Now for the highlighting part of the form fields, we’re going to use CSS to do the trick:
Place the following code in between you <head> and </head> tags:
<style type="text/css"> <!-- textarea:focus, input:focus { background-color: #edfbff; } -->
After you’ve done this, your HTML should look like this:
<html> <head> <style type="text/css"> <!-- textarea:focus, input:focus { background-color: #edfbff; } --> </style> </head> <body> HERE'S WHERE ALL YOUR FORM CODE SHOULD BE PLACED </body> </html>
Forum: Plugins
In reply to: Contact Form 7 – radio button questionsyour radio is “radio136”.
Insert the radio name in brackets with possibly a label in front of it, as follows in your form results section:
Urgent Contact: [radio-136]
Forum: Plugins
In reply to: [Plugin: Contact Form 7] How can I be the only one asking this?It’s pretty straight forward.
1. Find Contact Form 7 in your admin sidebar.
2. By clicking on it, a new page will appear with all there is to CF7. 3. From there you can click new and start designing your new form.
4. By naming your form, you will be presented with a tag to be inserted in you page, post, sidebar whatever..
5. Just paste the tag in whatever post/page you want it to be displayed in and publish/save your content.
6. View the page/post in your browser and you should see your new form.That’s about it for starters.
For the rest of the issues that may arise, search the forum. there’s oodles of information at your disposal.Hope this helps.
Cheers,
Mohammad
Forum: Plugins
In reply to: Contact Form 7 on Internet ExplorerWorking perfectly in IE. Validate your template to see if it’s faulty with IE.
Forum: Plugins
In reply to: [Plugin: Contact Form 7] How to change where the email is forwardedPlease change your recipient address in the form results design section in the form itself.
Hope this helps,
Mohammad
Forum: Plugins
In reply to: [Plugin: Contact Form 7] How to change the confirmation message?Clear your browser cache, your website cache (if your using any caching mechanisms), and refresh the page.
That should do the trick.If you experience the same problem again, please make sure that your changes in the form confirmation emssage have been saved correctly.
Hope this helps,
Mohammad