webjunk
Forum Replies Created
-
In the Contact-form-7 plugin directory is a styles.css.
Believe you edit the section:
div.wpcf7-response-outputTo change font color use (for white example):
color: #ffffff;Forum: Fixing WordPress
In reply to: wp-admin suddenly displaying 'page not found'@pmargolin
You should start a new topic.Forum: Plugins
In reply to: [Contact Form 7] [Plugin: Contact Form 7] Adjusting the layoutThat makes it easy. I do this on a number of sites. Hopefully this is close to what you are looking for. Or give more specifics. This is what I enter in the Form editor. Change fields to match yours:
<table><tr><td> <p>Your Name (required)<br /> [text* your-name] </p> <p>Your Email (required)<br /> [email* your-email] </p> <p>Your Phone (required)<br /> [text text-33] </p> <p>Subject<br /> [text your-subject] </p> </td><td> <p>Your Message<br /> [textarea your-message] </p> <p>[submit "Send"]</p> </td></tr></table>I just add a second email text field and for text VERIFY EMAIL. Do the same on non-WP forms.
Everyone knows most people copy & paste. And for those that don’t and do not copy and paste at least you have two versions and one “should” be correct. as opposed to two identical incorrect mails…..
There was a post a while back where someone posted code that is supposed to do it. Its for an older version and not replies that it works but might be able to adapt it and try.Forum: Plugins
In reply to: [Contact Form 7] [Plugin: Contact Form 7] Attachment NOT sent via mailALso forgot to mention (need another up of coffee) that the directory is a temp directory not for storing the files.
Forum: Plugins
In reply to: [Contact Form 7] [Plugin: Contact Form 7] Attachment NOT sent via mail@jckazius
Make sure that
<?php wp_head(); ?>is in header.php
and
<?php wp_footer(); ?>is in footer.php@codenamefish
If you can not change permissions in your ftp client, then try in your Control Panel, cPanel, or Plesk for your hosting account. If not available then you will have to open a support ticket with your hosting company’s support.Forum: Fixing WordPress
In reply to: 2 htaccess files and can't seem to combineAdd it to the end if you want. When a line starts with # its a comment
Forum: Plugins
In reply to: [Contact Form 7] [Plugin: Contact Form 7] Adjusting the layoutDo you have a link to your form and a better description of how you want it?
Forum: Plugins
In reply to: Permissions Issues while visitng plugin PageWould help to know what plugin. Try disabling other plugins to see if there is a conflict
Forum: Fixing WordPress
In reply to: Error: You do not have sufficient permissions to access this page.First backup your database. Then Try this (add your domain name)
http://YOURDOMAIN.COM/wp-admin/upgrade.phpIf it says no upgrade needed. Then in the WP database change the db_version value in the wp_options to: 15260
Then re-run the upgrade as above.
Forum: Plugins
In reply to: [Contact Form 7] [Plugin: Contact Form 7] Adjusting the layoutYou can format within the form itself or is own css (located in its own directory.
Forum: Fixing WordPress
In reply to: 2 htaccess files and can't seem to combineMake a backup of both files, then try ONLY a single .htaccess with the following:
# For Support Contact webjunk.com # BEGIN WordPress <IfModule mod_rewrite.c> RewriteEngine On RewriteBase / RewriteRule ^index\.php$ - [L] # uploaded files RewriteRule ^([_0-9a-zA-Z-]+/)?files/(.+) wp-includes/ms-files.php?file=$2 [L] # add a trailing slash to /wp-admin RewriteRule ^([_0-9a-zA-Z-]+/)?wp-admin$ $1wp-admin/ [R=301,L] RewriteCond %{REQUEST_FILENAME} -f [OR] RewriteCond %{REQUEST_FILENAME} -d RewriteRule ^ - [L] RewriteRule ^([_0-9a-zA-Z-]+/)?(wp-(content|admin|includes).*) $2 [L] RewriteRule ^([_0-9a-zA-Z-]+/)?(.*\.php)$ $2 [L] RewriteRule . index.php [L] </IfModule>Forum: Fixing WordPress
In reply to: Error: You do not have sufficient permissions to access this page.Try renaming your plugins directory and create a new empty one with thesame permissions.
CHeck the Admin account in the database.
Forum: Fixing WordPress
In reply to: Creating a members-only sectionThere are several ways to do it. You can make password protected pages. Or you can create pages and hide them from the menu. Plugins like WP Hide Post work good for that. Or combination. By using sub pages and usinhg the main as a menu page it can look very good indeed. Have done that a number of times myself.
Forum: Fixing WordPress
In reply to: I have an extra redirect going on somehow…please help!I can not reproduce the problem.
If you still have it, might help to see the contents of your .htaccess