Jastuccio
Forum Replies Created
-
Forum: Fixing WordPress
In reply to: How to change lang=”es-es” to just lang=”es”It might be possible to overwrite it in your wp-config.php by adding to
define('WPLANG', 'es');
More info here gavick.com/documentation/wordpress/themes/customization-tips/translationAs a last resort you should be able to hack it, breaking the WP language settings, by changing
<html <?php language_attributes(); ?>>
to<html lang="es">
in header.php of your theme.Forum: Fixing WordPress
In reply to: Site links not workingBingo lol I thought I messed up someplace in the db. Thank you CPC Mike.
Forum: Fixing WordPress
In reply to: VaultPress reports Dangerous and threatening codeThank you James. I think it was a false positive. the site and database were restored from a backup, several additional security measures were implemented from the articles you linked to.
I rescanned today. No warnings. Sidekick was all I removed.
2 emails sent
Thank you Ben,
It should have been the latest version. I deleted the plugin with the idea of possibly restoring it from a backup later on. My dashboard was not showing required updates. The client hosts with GoDaddy pro and I think it comes as part of their package.
Forum: Plugins
In reply to: [Contact Form 7] css works on dev site not on live siteI want first name and last name on the first line. I do not see my css when I inspect elements. Im guessing something is wrong with my selectors?
.wpcf7-form .singleline ul, .wpcf7-form .singleline ol { list-style: none; margin: 0; } .wpcf7-form .singleline li{ display: inline-block !important; float: left; margin-right: 10px; padding-right: 10px; }
Forum: Plugins
In reply to: [Contact Form 7] css works on dev site not on live siteThank you @davmerit. I added the styling to the live site through an existing design plugin. It changed the form appearance. Still unsure what is going on with his themes complex CSS setup. (I know SASS and it isn’t using that.) That is an issue for a different forum though.