Dave Naylor
Forum Replies Created
-
Forum: Fixing WordPress
In reply to: Trying to move website to new domainI’ve been looking at your site and I can reach your login page. Maybe it’s just slow DNS propagation ?
Forum: Fixing WordPress
In reply to: Customers can't add products to shopping cart with JigoshopYou appear to be running a caching plugin. These types of plugins need careful integration with membership and ecommerce sites. An incorrectly configured cache can create problems such as the ones you’re experiencing.
Disable the plugin and see if it makes a difference.
Forum: Fixing WordPress
In reply to: Slideshow TroubleshootingMaybe take it up with your commercial theme’s vendors? Your support page is here:
Forum: Fixing WordPress
In reply to: 500 Internal Server ErrorYou need to access your site either through your hosts panel software or via FTP and a client like FileZilla. If you’ve never used FTP before, it’s relatively easy and it would be a great thing to have in your site management arsenal.
Whichever way you choose, once in your site, disable the plugin by renaming or deleting the directory.
Forum: Fixing WordPress
In reply to: centering widgetIt’s a CSS rule. If you’re not familiar or comfortable with editing CSS files, you could install a plugin to make the process easier for you. I like this one:
https://wordpress.org/plugins/simple-custom-css/
Install and activate the plugin, insert Andrew’s rule and save, happy days.
Forum: Fixing WordPress
In reply to: Database ErrorWhen you say sub-domain, do you mean it was in a sub-directory of your site. So it was like this:
http://yoursite.com/hersite.comIf that’s correct, it’s not a sub-domain, it’s just WordPress in a sub-directory.
When you moved her site, to where did you move it. On the same server and in the same user space or is it hosted on a separate server under her hosting account?
Forum: Fixing WordPress
In reply to: Photos not showing on homepage and in slideshowLooks like your theme “ThemeMin is using the photon module from Jetpack. Obviously something is awry about how it’s working. I suspect a file permissions problem.
Unfortunately, since your theme is commercial in nature its not supported in these forums since the volunteers here have no access to the theme templates and source files. Luckily your theme has support provided by the vendors here:
Forum: Fixing WordPress
In reply to: new update screwed my websiteWhat happens if you disable all plugins and revert to the default theme, Twenty Fourteen?
Forum: Fixing WordPress
In reply to: Firefox displays theme incorrectlyThis rule from your stylesheet:
.li_cont1, .li_cont2, .li_cont3 { display: table-cell; float: none !important; vertical-align: top; width: 30% !important; }Removing
float: none !important;seems to push the element back inside the main div.Forum: Fixing WordPress
In reply to: Error HTTP on image upload with NginxCab you post relevant entries from your nginx error log?
Forum: Fixing WordPress
In reply to: Image links not updated after Moving WordPress directoryUse something like the search and replace plugin to correct the paths to your images.
Your hosts appear to be:
Maybe contact them or your developer who created your site?
Forum: Fixing WordPress
In reply to: All images on site are skewedLine 14 of your stylesheet has this:
img { width: 100%; border: none; }So in the absense of additional styling, any image is going to stretch to 100% of the width of the parent element. In the case of that page, it’s going to be 950px, because of this:
.wrap_container { max-width: 950px; width: 76%; margin: 0px auto; }On your blog page, someone’s blasted it with an
!importantsledgehammer:.left_blog_container li img { width: auto !important; max-width: 100% !important; display: block; margin: 0px auto; }You might want to review that img rule at line 14 🙂
Edit: Ha, beaten to it above…
Forum: Fixing WordPress
In reply to: Fatal ErrorDid you disable a plugin that defines the function
related_posts()? That’s the likely reason for your issue.Forum: Fixing WordPress
In reply to: Image Issues with ThemeforestUnfortunately, commercial themes as supplied on ThemeForest aren’t available for scrutiny by forum volunteers here. It’s one of the reasons such themes aren’t supported in these forums. You need to submit a support request to the people from whom you purchased the theme. Support usually comes bundled with your payment.