Jay Versluis
Forum Replies Created
-
Forum: Plugins
In reply to: [Child Theme Wizard] changelog?I’ve noticed that too, not sure what I did wrong – but saving the file and uploading it again to WordPress proved fruitful. The changeling is now showing up fine.
Forum: Fixing WordPress
In reply to: Dashboard – "Biographical Info" is MissingI would try to disable one plugin after the other and see it’s caused by a troubled one. If the problem persists with no plugins available, try re-installing WordPress – perhaps a crucial file is damaged.
Good luck!
Forum: Fixing WordPress
In reply to: Can't access my wp-adminLooks like a plugin called “add signature” is causing all kinds of issues there. Disable it and see if you site looks better. If that’s not the problem, I would probably disable one plugin after another until your site looks good again.
Forum: Fixing WordPress
In reply to: Subscribers are not receiving new postsThe Mailchimp for WordPress plugin only lets users sign up to your Mailchimp newsletter, and as such, when you send a campaign with Mailchimp, users will receive an email from Mailchimp, not from your website.
What the plugin does not do however is send out an email when you create a new post. Other means are necessary to make this happen (JetPack and Feedburner can both do this).
It’s very confusing indeed because your readers will have to sign up twice: once for your newsletter, and once for receiving new posts via email. If your readers were once receiving emails when you created a new post, it was not via the Mailchimp plugin.
Forum: Fixing WordPress
In reply to: Dashboard – "Biographical Info" is MissingOh that’s bizarre – that box shouldn’t disappear by itself. Plugins can add other items to this section, but they usually don’t remove existing options.
Is the entire “About Yourself” section missing? Is the “change password’ option still there?
Forum: Fixing WordPress
In reply to: Lost main categories on top of front pageJust a guess: head over to Appearance – Menus. At the top there may be a drop down in which you can select a previously active menu which may have displayed the categories.
It’s difficult to say without a link to your site.
Forum: Fixing WordPress
In reply to: The server .com:80 requires a username and password.Do you have a link to your website?
Forum: Fixing WordPress
In reply to: Error entablishing a connection with my database.Plesk has an option to install WordPress with one click. This will create the relevant database and user for you, and it will download all files automatically.
Head over to Applications – Featured Applications and find WordPress. Note that you can click the right side of the button and you’ll have a choice between “Install” and “Custom Install” – the latter will let you customise the install location and database credentials manually. “Install” will create a WordPress installation without questions in a subfolder called “wordpress”.
Forum: Fixing WordPress
In reply to: Error 404The correct login URL for your site is http://physiotherapyonlakeshore.com/wp-admin
Forum: Fixing WordPress
In reply to: Annoying Space between Header and PageTo just remove the long hyphen, try this:
.separator {
display: none;
}
Reducing the white space between the menu and the content may prove more cumbersome, as it will likely destroy your layout. Try to experiment with this:
.container {
height: 50px;
}
The default appears to be 100px, lower it gradually and see if it makes a difference. Also take a look at the bottom of the page and see if this has any adverse effects on your layout. It's trial and error I'm afraid.Forum: Fixing WordPress
In reply to: How to remove fixed pixelated picture from Blog pageFear not, help is at hand!
Under Settings – Reading you can specify the page on which you’d like to display your blog posts. By default the top option is chosen, but it appears that you’d like to display your posts on a static page. You can select it with the second option (the one that reads “a static page”).
Now select a page. It can be empty, but it needs to exist. If a page is selected that has been deleted, you’ll see the “page not found” message. To create a new page, head over to Pages – New. Content in this page will not be displayed, and instead replaced with your latest blog posts.
Hope this helps 😉
Forum: Fixing WordPress
In reply to: Remove page title at front page – Story themeYou mean to remove the word VELKOMMEN?
Try this:
.content-boxed h1 {
display: none;
}
Forum: Fixing WordPress
In reply to: Pages or subpages don't show after clickingI don’t think it’s a WordPress thing: I can navigate to the bottom two links, but the top three don’t see to be loading content. I suspect it has something to do with the theme you’re using and the way it pulls those links in.
The site took more than 30 seconds to load for me though.
Forum: Fixing WordPress
In reply to: Memory SizeLooks like PHP ran out of memory.
There are two ways to change this: either, edit your .htaccess file and the following line:
php_value memory_limit 128M;
Alternatively you can edit your wp-config.php file and add the following constant:
define('WP_MEMORY_LIMIT', '128M');
You may also be able to set this value in your hosting provider’s control panel.
Forum: Fixing WordPress
In reply to: admin controls not loading, page – all content goneIt’s frightening when this happens!
Try logging in to your WordPress admin via wp-login.php instead of wp-admin, like so: http://www.jas.lv/wp-login.php (that brings up the login box for me).