Mark Ratledge
Forum Replies Created
-
Forum: Fixing WordPress
In reply to: Photos turned 90 degrees on mobile posts but normal on a desktop?Some theme designers rotate images on mobile sizes with CSS similar to
img { -moz-transform:rotate(-90deg); -webkit-transform:rotate(-90deg); -ms-transform:rotate(-90deg); transform: rotate(-90deg); }Ask in the theme support forum: https://wordpress.org/support/theme/lovecraft
Forum: Fixing WordPress
In reply to: Photos turned 90 degrees on mobile posts but normal on a desktop?What theme are you using? Where did you download it from? http://codex.wordpress.org/Forum_Welcome#Include_as_Much_Information_as_Possible
Forum: Fixing WordPress
In reply to: Decimal priceSee the . in
<span>.’.$decimal_price.'right after the<span>tag?Forum: Fixing WordPress
In reply to: Changed DB username, activation email?@ravi: there is no need to delete the site or and reinstall at this point.
@baurox: Do you still have access to PHPMyAdmin? If so, go back in and check/redo the username change: see https://premium.wpmudev.org/blog/change-admin-username/
And, what do you mean by “The theme created the username”?
Forum: Fixing WordPress
In reply to: Website infected? Firefox-patch.jsSee https://support.mozilla.org/en-US/questions/1132012 Update Firefox and then scan your own PC/Mac for malware.
It’s possible this is a hack of your PC/Mac and not of your website. But, if you still see redirects of your site, carefully follow FAQ My site was hacked – WordPress Codex.
Then take a look at the recommended security measures in Hardening WordPress – WordPress Codex and Brute Force Attacks – WordPress Codex
If you can’t do the work yourself, consider looking for a reputable person on http://jobs.wordpress.net/ or http://directory.codepoet.com or http://upwork.com
(FYI, it’s not a good idea to respond to work offers from random forum users who have read about your issues.)
Forum: Fixing WordPress
In reply to: Product images not displayingSorry, you’re using a premium/paid theme not supported in these forums. It’s best to go to the support site where you bought the theme for help with customizations and issues. You paid for support when you bought the theme, so you should contact the people who sold you the theme.
These forums are for free themes available in the WordPress theme directory at http://wordpress.org/themes/. See http://codex.wordpress.org/Forum_Welcome#Commercial_Products
Forum: Fixing WordPress
In reply to: Product images not displayingWhat theme are you using? Where did you download it from? http://codex.wordpress.org/Forum_Welcome#Include_as_Much_Information_as_Possible
Forum: Fixing WordPress
In reply to: Cant scroll downThese forums are for free themes available in the WordPress theme directory at http://wordpress.org/themes/. See http://codex.wordpress.org/Forum_Welcome#Commercial_Products If you got that theme from GoDaddy, you need to ask them for help.
Forum: Fixing WordPress
In reply to: Cant scroll downWhat theme are you using? Where did you download it from? http://codex.wordpress.org/Forum_Welcome#Include_as_Much_Information_as_Possible
Forum: Fixing WordPress
In reply to: Accessing Bluehost email account in GmailThis really doesn’t have anything to do with WordPress; you need to get help from Bluehost and in the Google Domains forums. https://productforums.google.com/forum/#!forum/apps
Forum: Fixing WordPress
In reply to: Bugged plugin wont delete (sharebar)If you can’t delete files with FTP, change the permissions to 777 and try to delete them. If you still can’t, ask your webhost for help.
The plugin also may be hardcoded in theme files; read the plugin docs to find the php function that you need to look for and delete from the theme files.
Forum: Fixing WordPress
In reply to: How do fix the spacing between paragraphs@jcowim: Sorry, but you’re using Genesis, a premium/paid theme not supported in these forums. It’s best to go to the support site where you bought the theme – http://www.studiopress.com/forums/ – for help with customizations and issues. You paid for support when you bought the theme, so you should contact the people who sold you the theme.
These forums are for free themes available in the WordPress theme directory at http://wordpress.org/themes/. See http://codex.wordpress.org/Forum_Welcome#Commercial_Products
Forum: Fixing WordPress
In reply to: Mix Content Over HTTPS://Use the developer tools in Firefox (or Firebug) or Chrome or Safari or IE to see the errors with specific images, files or other resources, like that javascript link you found.
You need to remove the
http:from absolute paths in php theme files, such as in functions.php or header.php, i.e. change'http://example.com/image.jpg'to'//example.com/image.jpg'; that will allow your resources to default to https.If you also see insecure links for images, you need to change URLs of media items in the post/page content to https. Search RegEx is a good plugin to be able to search and replace (optionally with grep) through all posts, pages, excerpts, comments, titles and meta. And, interconnectit.com WordPress Serialized PHP Search Replace Tool can be used to find/replace in the entire database, i.e. metadata, GUIDs and widget content, etc.
You may need to change to a relative path for images in CSS files, i.e.
background-image: url(http://example.com/themes/wp-content/theme/images/image.jpg)tobackground-image: url(images/image.jpg)- This reply was modified 9 years, 8 months ago by Mark Ratledge.
Forum: Fixing WordPress
In reply to: Warning message. Roll Back WordPress to pervious versionThe error is very obvious: “ReduxFramework”. Deactivate any such named plugins or themes that use that framework. Look for help at https://wordpress.org/support/plugin/redux-framework and https://github.com/reduxframework/redux-framework/issues
You can detect what audio player events are happening with dev tools in the browser you use – Firefox (or Firebug) or Chrome or Safari or IE – in terms of what you can hook into with Piwik.
When multiple players are on a page, the main containers have different ID’s, i.e
id="mep_0" and id="mep_1", etc., so if you have multiple players on one page, you’ll need to take that into account.- This reply was modified 9 years, 8 months ago by Mark Ratledge.