HallMarc
Forum Replies Created
-
Forum: Fixing WordPress
In reply to: After wp 3.5.1 upgrade install my header area widget is missingThen what has happened is because you switched themes; the widgets areas and where they are placed in a layout is controlled withing the theme. You will need someone like [moderated – please stop soliciting work] the theme creators to customize your new theme or find a new widget area to put your Language switcher plugin.
Forum: Fixing WordPress
In reply to: Strange code appears top leftIt is definitely a plugin causing that issue; AddtoAny to be specific.
Here is where the issue lives:
<!-- AddToAny END --> //--></script>
Try this; in your plugin directory wp-content/plugins/add-to-any/add-to-any.php search for this (around line 965 in my file)
. "\n//--></script>\n";
and replace that with this:
. "\n</script>\n";
And tell us if that fixes the issue.
Forum: Fixing WordPress
In reply to: After wp 3.5.1 upgrade install my header area widget is missingDid you change the theme? Widget areas are usually defined in the themes own functions.php file
Forum: Fixing WordPress
In reply to: Please help – MySQL error after loginHave you looked at the db to see if there is content to be queried?
Forum: Fixing WordPress
In reply to: Blank home pageI see just the blank white page. I would like to help you repair this and then post the solution here when we are done. FoC.
[Moderator note: Don’t use these forums to promote your organisation or services]Forum: Fixing WordPress
In reply to: Drop down menu within a pageLooks like wpautop strikes again, maybe. Try this plugin “wpautop control”
It allows for granular control of this function and may solve this issue.Wondering why this says it is “Resolved” when clearly it is not…
Forum: Plugins
In reply to: [Contact Form 7] [Plugin: Contact Form 7] Contact Form not sending mailIf you have it working now then you won’t need the other plugin. However, I forgot to recommend that you install CF7 to db plugin. This way all submissions will be stored in the db even if the email isn’t generating. No more lost forms.
Forum: Plugins
In reply to: [Contact Form 7] [Plugin: Contact Form 7] Contact Form not sending mailDid you try any of the suggestions in this thread?
Forum: Plugins
In reply to: [Contact Form 7] [Plugin: Contact Form 7] Contact Form not sending mailAnother solution is to install the “WP-Mail-SMTP” plugin, activate it and then go to Settings > Email and input your settings. For Mailer setting I chose PHP instead of SMTP. SMTP tries to send internally which won’t work when MX records are set off site like for Gmail and Google Apps. The rest of the settings are not needed as it states in the settings page. Run a test email and see if it goes through now.
Forum: Fixing WordPress
In reply to: How to send mails from my contact form to Google Apps mailInstall the “WP-Mail-SMTP” plugin, activate it and then go to Settings > Email and input your settings. For Mailer setting I chose PHP instead of SMTP. SMTP tries to send internally which won’t work when MX records are set off site like for Gmail and Google Apps. The rest of the settings are not needed as it states in the settings page. Run a test email and see if it goes through now.
Forum: Plugins
In reply to: [Contact Form 7] [Plugin: Contact Form 7] Emailing to google appsInstall the “WP-Mail-SMTP” plugin, activate it and then go to Settings > Email and input your settings. For Mailer setting I chose PHP instead of SMTP. SMTP tries to send internally which won’t work when MX records are set off site like for Gmail and Google Apps. The rest of the settings are not needed as it states in the settings page. Run a test email and see if it goes through now.
Another solution is to install the “WP-Mail-SMTP” plugin, activate it and then go to Settings > Email and input your settings. For Mailer setting I chose PHP instead of SMTP. SMTP tries to send internally which won’t work when MX records are set off site like for Gmail and Google Apps. The rest of the settings are not needed as it states in the settings page. Run a test email and see if it goes through now.
Wow, I completely missed that typo! Thank you for pointing it out. I kept thinking it was strange that it was complaining about receiving 2 params.
Forum: Plugins
In reply to: [Plugin: Contact Form 7] Exclusive option not workingJust in case anyone else needs this answer:
Where you put these option tags is important. For instance, for the exclusive option to work on the checkboxes it needs to be placed right before the list of options. Same with the field name, it needs to be placed right after the type. Here is an example:
[checkbox fruit label_first exclusive "Orange" "Apple" "Grapes"]