davejampole
Forum Replies Created
-
Forum: Plugins
In reply to: [Timely All-in-One Events Calendar] Does not play well with others (plugins)I cannot argue with your logic. I’ll just say that I run AI1EC on three websites along with up to 23 other plugins and they all run 100%. When you get some time, try the plugin on a simple testsite.
Good luck.
Forum: Plugins
In reply to: [Timely All-in-One Events Calendar] Does not play well with others (plugins)I can’t fault you moving on to the Ajax Event Calendar. Actually that is kinda’ funny because I went the other way. If you ever get the time, try the All In One plugin with a different theme. I can honestly say that when you get everything to play together, it will be well worth your time.
Forum: Plugins
In reply to: [Timely All-in-One Events Calendar] Does not play well with others (plugins)Just saw you post and felt that I had to offer my two cents. I have used this plugin on all of my sites for a l-o-n-g time with no problem whatsoever! Have there ween issues? Absolutely, BUT when the problem was traced to it’s root cause, the theme support folks, the other plugin folks or the Timely support folks have done outstanding work helping me resolve the issue.
I would suggest that if you consider the almost infinite combination of WP and plugins – keeping in mind the various versions of each of them, it amazing that they play together as well as they do.
Forum: Plugins
In reply to: [Timely All-in-One Events Calendar] CSS not loadingIf you tried what Benjamin suggest, you have probably eliminated a theme issue. Where do you have your CSS code? That could very possibly be the issue. Just as a suggestion, I NEVER have CSS code in the page that uses it or in the theme file. I always place my CSS code is a separate file using My Custom CSS although there are other CSS plugins that supposedly work well. You might want to deactivate all plugins, install My Custom CSS and place a small CSS code segment to make sure it is working. Assuming it is, you can either take the route of adding more CSS Code until you get back to where you want, OR activating your other plugins one at a time and see if you spot a plugin conflict. If there is a plugin conflict, you could contact that plugin author and see what they can do for you.
Good luck.
Rudi,
Glad I could be of help. This same ‘problem’ bites lots of users.
Now, you have to help someone else.
Dave
Assuming what you have indicated above is EXACTLY what you have in your form, the problem is that in the Form section of the Edit Contact Form page you have ResidentialAddress and in the Message body section you have [residential address]. They are not equivalent. Change one or the other so that what you have in both sections are identical. Focus on spacing and capitalization.
Have you thought about including a dropdown field (in html speak, this is a select field) for the user to select gender if that is all you want or, for more detail, you could create a more detailed selection list with options such as Mr, Mrs, Ms, Dr, Reverend, etc. Take a look at this form on one of my websites <http://arklatexmoaa.org/membership/membershipinformation-change> and look at the Pay Grade dropdown.
Forum: Plugins
In reply to: [Contact Form 7] Can I format the fields as two columnsHere is the Name field from one of my forms.
<label>Your Name
[text* Name 25/50]</label>The label ‘Your Name’ preceeds the input field and that is what the user sees. The input field is named ‘Name’. The 25/50 says that the input field width is 25 characters wide and it will accept up to 50 characters.
This may be simplistic, but you should get the point nonetheless. You should take a look at http://contactform7.com/text-fields/ for more detail at formatting a field.
Forum: Plugins
In reply to: [Timely All-in-One Events Calendar] Css BugContact your theme author, explain the problem IN DETAIL. Most theme authors are more than willing to help with this kind of problem, since they want users to use/buy their themes. If they are unwilling to help, you can either switch themes, find someone to solve the problem (and that might cost you), or live with it.
My themes are from Artisteer and they have been more than willing to help me. They even have written code for me to fix a problem or two that was beyond my ability.
Forum: Plugins
In reply to: [Timely All-in-One Events Calendar] Css BugHave you done what Jashan suggested previously? If you have, what did you do and what were the results? If you have not done what she suggested, do that before coming back here.
Forum: Plugins
In reply to: [Timely All-in-One Events Calendar] Css BugThis works correctly for me on three of my implementations. Follow what Jas suggest and you will probably find the problem.
Forum: Plugins
In reply to: [Contact Form 7] Applying Styles to Form 7 for Weaver II child themeOn one of my forms, I use the following to set the various input fields with a border and the field background color.
.wpcf7 input[type=text], .wpcf7 input[type=select], .wpcf7 input[type=email], .wpcf7 textarea {
border: 1px solid #A0A0A0;
border-radius:5px;
background:#CCE5FF;
}Since your code is not working, I would suggest cutting it [CTRL]-X and paste is [CTRL]-V into a text editor just in case you need it. Use my code, save it and see what happens.
Forum: Plugins
In reply to: [Contact Form 7] Can't get it to workThe problem you are experiencing is a common one.
When you define the fields (in the form design section) and where you use them (in the message section), the names MUST be identical. Make these changes and you should have no problem.
Change:
[text* name watermark “Naam”]
[email* email watermark “Email”]
[textarea message watermark “Bericht”]in the design section to
your-name, your-email and your-message so that everything agrees with what you have in the message section.
Capitalization must also agree (ex: if, in one place you have Your-name and somewhere else you have your-name, you won’t get what the user enters.
Forum: Plugins
In reply to: [Contact Form 7] CF 3.8 does not show lines around textfieldsGlad I could help. Now, you have to do something to help someone else.
Forum: Plugins
In reply to: [Contact Form 7] Uncheck a radio button?Dissuading a client of what they think they want is no easy task. Good luck on that. You could always dummy up something to show them the options and point out the space-saving implementation of the select dropdown versus the space-wasting long list of checkboxes.