Rab
Forum Replies Created
-
Forum: Fixing WordPress
In reply to: How Can I See My Stats???What stats are you looking for? Visitors? Server usage? Or something from a WordPress plugin?
Forum: Plugins
In reply to: [Responsive Slider] Add a small descriptionForum: Fixing WordPress
In reply to: meta description php codeis_single
returns false for pages, that’s for posts.There is detailed information on using Conditional Tags in the Codex. There is good examples there too.
Perhaps you want to try something like,
<?php if ( is_home() ) { ?> <meta name="description" content="homepage some text"/> <?php } else { ?> <meta name="description" content="everything else some text"/> <?php } ?>
Which will set the homepage differently to everything else. (untested code)
Forum: Fixing WordPress
In reply to: Changing the Site locationHi,
There is detailed information in Moving WordPress from the Codex.
Forum: Fixing WordPress
In reply to: Changing the Default URLHi,
There is detailed information in Moving WordPress from the Codex.
Forum: Fixing WordPress
In reply to: managing main sidebar – how to make visible for individual postsYou would do this via FTP and an editor like Notepad++.
Updating to WordPress 3.5 will not lose any modifications to your theme.
As for your plugins, you can check if they are listed as compatible with 3.5 on an individual basis. Sometimes it helps to look at the support forums for each one to see if anyone else has posted of issues.
You can read about what’s new in 3.5.
Forum: Fixing WordPress
In reply to: managing main sidebar – how to make visible for individual postsHi,
Take a little look at the post Adding the sidebar to a Twentyeleven child theme by “tgc”.
Forum: Fixing WordPress
In reply to: Pages in SidebarNo problem, don’t be sorry, I’m not sitting waiting – just passing by from time to time ??
Glad it worked out.
Forum: Fixing WordPress
In reply to: Can someone set up a forwarding email for me?This would be done by your hosts, you should contact them regarding this.
Unless I’m misunderstanding the question, this has nothing to do with WordPress.
Forum: Fixing WordPress
In reply to: Website Excerpt not showing shortened versionHi Dan,
Did you resolve this? I think I see excerpts now.
Forum: Fixing WordPress
In reply to: How do I get rid of the Posts o my pageAh I see. These are Comments, left on your Pages or Posts.
You can moderate / delete comments from your Dashboard via the Comments section.
You can disable Comments on a per page / post basis by unchecking the “Allow Comments” box. If you don’t see this when editing a Post or Page you can enable “Discussion” via the Screen Options tab at the top.
To disable them for all future Posts and Pages you can change the settings in Settings > Discussion.
See the Comments in WordPress Codex for further details.
Forum: Fixing WordPress
In reply to: Batch downloading of picturesThe images uploaded are in /wp-content/uploads/ and usually organised my year and month directories. Keep in mind that the image sizes that WordPress generates are also in here so each image will have a few versions of different sizes.
If you have SSH access you could probably run a find/copy to strip out the WordPress generated ones and copy the originals to another directory to be archived. When I say strip out, I mean from the copy command – not from the uploads directory.
I might be other thinking it, there might be a plugin that does this all for you.
Forum: Fixing WordPress
In reply to: How do I get rid of the Posts o my pageHi,
Can you expand on what you mean by post options? And by the welcome page do you mean the homepage (here: https://www.abogados.ro/wordpress/)?
Forum: Fixing WordPress
In reply to: Editors mistakenly showing on regular wesitesCan you provide a link to your website?
What theme are you using?
It sounds like a very odd error!
Forum: Fixing WordPress
In reply to: Got It UpI would recommend installing the WP Maintenance Mode plugin.