hoffcamp
Forum Replies Created
-
Ron is right. The problem is some file called ‘-green.css’ adds a background, the little green star image, to ‘li’ elements. I don’t know how the theme you are using works, so I don’t know the best place to add CSS, but if you put the following somewhere the stars should go away:
.fm-form li{ background: none !important; }Just keep in mind, if you put this in the ‘style.css’ file in the form manager plugin your changes will be lost the next time you upgrade. I noticed that your page loads a ‘custom.css’ file with your theme, so I am guessing there is a way to keep customizations in your theme files. That would be the better way to go.
Forum: Plugins
In reply to: [Form Manager] [Plugin: WordPress Form Manager] Errors in WordPress MSI see what you mean, it is definitely broken in multisite, no question. I’ll keep you posted.
Thats a different issue. If you want it fixed quickly, you need to change the error reporting level to ignore ‘notices’. Notices are reported if WP_DEBUG is set to ‘true’ in wp-config.php, or if php.ini has a line like
error_reporting = E_ALL. You can remedy this by changingdefine('WP_DEBUG', true);todefine('WP_DEBUG', false);in wp-config.php or by changingerror_reporting = E_ALLtoerror_reporting = E_ALL & ~E_NOTICE.Forum: Plugins
In reply to: [Form Manager] Field 'title' doesn't have a default valueI found a bug and just posted an update that should fix the problem you were having, 1.6.14.
Forum: Plugins
In reply to: [Form Manager] Date and time of uploaded filesI added a new option to the file element, ‘name format’, which lets you make up whatever kind of timestamp / filename format you want. So for what you are saying, you would put something like
y-m-d-h-i-s %filename%. The filename (without the extension) goes in place of%filename%, and the rest is interpreted as a PHP date format string.I just posted 1.6.14 which should fix your problem.
If I am right, the issue was with the top level ‘Data’ links, since I was generating them manually, and apparently incorrectly. I’ll have to figure that one out.
Okay, I think I know what the problem is. I’ll have an update posted shortly.
Forum: Plugins
In reply to: [Form Manager] Date and time of uploaded filesNo, but that sounds like a reasonable thing to want to do. I’ll add it as an option somewhere in the next update. The reason I add the date & time is to make sure different people uploading a file with the same name won’t cause one of the files to be deleted. But if you know what you are doing, I don’t see why you shouldn’t be able to turn that feature off.
Is this a multisite setup?
This is (probably) a conflict with the host configuration. Could you tell me your WP version, MySQL version, and who your host is?
Forum: Plugins
In reply to: [Form Manager] Hide post after single-submission?Lili, I just posted an update (1.6.11) that adds a ‘status’ option to the publish post section.
Forum: Plugins
In reply to: [Form Manager] [Plugin: WordPress Form Manager] Radio ButtonYou can do that with CSS, in your theme, or somewhere else. The line breaks in the radio list are just ‘br’ tags, so you can disable them. You will also want to add a left margin to the radio button:
.fm-form ul li br{ display:none; } .fm-form input[type='radio']{ margin-left:10px; }Forum: Plugins
In reply to: [Form Manager] [Plugin: WordPress Form Manager] Radio ButtonIf you make a ‘list’ element, you can change the style to radio buttons.
Forum: Plugins
In reply to: [Form Manager] [Plugin: WordPress Form Manager] Change sender of mailThat works, but you will have to redo it if you upgrade the plugin. You might try the ‘custom e-mail notifications’. This thread addresses the same problem, so maybe that will help you out. Keep in mind, using the custom e-mails overrides all of the other e-mail settings.