Before the migration there should be the those defines within the wp-config file so you could check to see what they are set to. I used one of the standards: define('DB_CHARSET', 'utf8'); define('DB_COLLATE', 'utf8_unicode_ci'); But you could use sftp and go to the wp-config.php file and these should be listed right below the database credentials […]
Web
How to style Infusionsoft forms
Example: <div class="infusion-field" style="display: inline-block; width: 30%; padding-right: 5px;"> <input class="infusion-field-input" style="width:100%;" id="inf_field_LastName" name="inf_field_LastName" placeholder="Last Name *" type="text" /> </div> <div class="infusion-field" style="display: inline-block; width: 30%;"> <input class="infusion-field-input" style="width:100%;" id="inf_field_Email" name="inf_field_Email" placeholder="Email *" type="text" /> </div><br>
How to hide/show on mobile/desktop IF client has iMember360 installed
Add the below code to your css file.. [i4w_is_mobile] .hideonmobile { visibility: hidden; display: none; } [ELSE_is_mobile] .hideondesktop { visibility: hidden; display: none; } [/i4w_is_mobile]
Multiple Domains on SPF Records
v=spf1 include:_spf.google.com include:secureserver.net ~all
Synology DiskStation Remote Access
http://trueproductions.synology.me
SFTP Issues/Host Keys
Delete Host Key on Mac/Linux To delete your local host key, you just need to remove your “known_hosts” file, which you can do using the following command in your local Terminal window: rm .ssh/known_hosts
How to download a zip file presentation on Slides.com
Login to slides.com on Firefox. When you are logged in paste this URL: https://slides.com/api/v1/decks/1021175/exports/153231.json Once pasted, remove /153231.json from the end of the link. You will then see a list of files and the most recent one is the at the top of the link. Triple click the URL HTTPS post and past in in […]
Add Line Break or New Line to Buttons
How to make a video fluid width responsive
Place the code below in an html/text element and place the video URL after the first Div class. <div class="videoWrapper"> <!-- Copy & Pasted from YouTube --> <iframe width="560" height="349" src="http://www.youtube.com/embed/n_dZNLr2cME?rel=0&hd=1" frameborder="0" allowfullscreen></iframe> </div> Then Paste the below code in the Theme's CSS file: .videoWrapper { position: relative; padding-bottom: 56.25%; /* 16:9 */ padding-top: 25px; […]
How to stop wordpress from asking for FTP info
Place the below code in in wp-config.php: define('FS_METHOD', 'direct');
