JohnPope
Forum Replies Created
-
Forum: Fixing WordPress
In reply to: Help – entire site brokeWhat have you changed the domain from?
Forum: Fixing WordPress
In reply to: Social Media LinksHave you tried looking in the ‘theme options’ or ‘customize’ options under the ‘appearance’ menu in admin?
Forum: Fixing WordPress
In reply to: Thumbnails appear half greyBecause the original link posted was https:// – it has obviously been edited since then.
Forum: Fixing WordPress
In reply to: Widgets not saving text (9 year old problem still not fixed)3.6.1 is more than three years old, upgrading to the latest version of WP would be a really good place to start.
Not saying it will solve your problem, but it’s going to be a lot easier to get ideas and troubleshooting advice if you are running a recent version of WP.
Forum: Fixing WordPress
In reply to: Thumbnails appear half greyAs for the https issue, I suggest talking to your webhost about it
Forum: Fixing WordPress
In reply to: Thumbnails appear half greyAh, ok. I see the grey now.
It is caused by the div that contains those images being 80px square and the images not being square after cropping.
The easiest way to fix it would be to change the grey background of the div to white.
Find this in your style.css file:
.recent-posts-wrapper .post .post-image {
width: 80px;
height: 80px;
float: left;
display: block;
background-color: #DADADA;
background-position: center center;
background-repeat: no-repeat;
overflow: hidden;
}and change the background-color to #FFFFFF;
EDIT:
Just realised that you could alternatively change the height to be 100% instead of 80px.
Forum: Fixing WordPress
In reply to: Thumbnails appear half greyhttps://lavidaluka.com doesn’t work – https://lavidaluka.com does though.
All of the thumbnails seem absolutely fine from here. Have you cleared your browser cache since deactivating the plugins?
Forum: Fixing WordPress
In reply to: Migrating data back and forth between live and dev WordPress installHave you looked at VersionPress?
Forum: Fixing WordPress
In reply to: Engima theme – Remove image borderCan you give us a link to the site to see?
Forum: Fixing WordPress
In reply to: Jetpack Fatal ErrorJetpack 4.0 broke things.
4.0.2 is out now and should fix the issue.
Forum: Fixing WordPress
In reply to: Is WordPress suitable for my requirements?You can build this kind of site using WordPress.
There are quite a few e-commerce plugins, the most well known is WooCommerce (which is very good), and there is at least one plugin availabe that will do what you are talking about with the t-shirts, although I have never tried it so don’t know how good it is: https://codecanyon.net/item/woocommerce-custom-tshirt-designer/5185471
Forum: Fixing WordPress
In reply to: Sharing pages on Facebook using my own customised imageIf you are using the Yoast SEO plugin then you can specify an image only for Facebook under the sharing tab of the SEO box on your edit post screen.
(also for Twitter and Google plus)
Forum: Fixing WordPress
In reply to: pluginsDo you get the error for any plugin you try activating or for one specific plugin?
Forum: Fixing WordPress
In reply to: WordPress beginner – problems after changing permalinksOk, do you have in the control panel the option to change the ‘permissions’ of the .htaccess file?
If so, change them to 644 and then go back into the permalinks settings and save them again.
Forum: Fixing WordPress
In reply to: WordPress beginner – problems after changing permalinksHi Ruth,
You are almost there.
The .htaccess file in the control panel will be the one you need to change.
You have two options, you can either change the permissions of that file so that WP can write to it, or you can edit the file yourself by copying and pasting the code that you have pasted above into there.
Don’t change or delete anything else in the .htaccess, just paste that after anything that is already (or not) in there.