-
Yoast SEO Plugin - anyone here using it?
+1 for Yoast SEO (formerly WordPress SEO). The plugin has loads of SEO features out of the box and used by beginners and pros. The only negative I can think of is as the plugin feature list grows it could be considered overkill/bloated for some WordPress users.
-
Problems echoing 'the title' plus something else
There's also of course the get_the_title() function which will return rather than echo the post title.
-
-
Google Map API 3 help
We recommend this website to our web hosting members; https://snazzymaps.com/ The website includes a bunch of free Google Maps styles and a neat Editor. Rich
-
Text being cut off in Safari
Have you tried adding 10px to your 'bottom:' property value... /** Generic Bottom Captions **/ #bottom-caption, #about-caption, #ingredients-caption, #recipes-caption, #stockists-caption{ width: 100%; bottom: 110px; right: 40px; position: fixed;} Rich P.S: - You're also missing your retina @2x logo image http://charlyanderson.co.uk/MixSingh/wp-content/uploads/2015/03/logo@2x.jpg
-
which is best domain .com or .net domain?
If both domains are available for registration we recommend registering both. Make the .com your primary domain and 301 redirect the .net over to your .com Rich
-
-
How to move wordpress to another domain
This Search & Replace DB script is also useful for swapping references of your domain name in your WordPress database. http://interconnectit.com/products/search-and-replace-for-wordpress-databases/ Importantly. If you're using it on a live web hosting environment make sure you delete the file after use.
-
Multiple hosting
You might also want to look at a cheap Reseller account. A big advantage I find with Reseller accounts over multi-domain accounts is each website is independently hosted within it's own space. In multisite hosting, each site is normally a sub-folder within the parent website/domain. It drastically limits the chances of accidentally overwriting an important file in one website when you're pushing up an update in another. Cheers Rich
- Bootstrap container width in IE8 and IE7
-
Wordpress Login details keep changing - hack
Have you checked your raw server logs? They might shed some light on what's going on and whether theres any suspicious activity. Rich.
-
Wordpress site in progress
You might also want to checkout this WordPress plugin; Theme Test Drive Our own in-house web team use this plugin with our custom coming soon theme/page. Also receives positive feedback from our WordPress hosting customers. Cheers, Rich
- WordPress Shortcodes in the_excerpt
-
Trying to do something in Wordpress...don't know how !
Right. I see what you mean. Thinking about it you probably don't need the A-Z categories. You could just amend your theme code to display the county categories on the fly. There's a few "A-Z" plugins and code snippets on the web which seem to help with this. In terms of showing adverts if you want to take the simple approach you use the WordPress is_category conditional tag; http://codex.wordpress.org/Function_Reference/is_category Hope this helps. Oh, your site looks good! Cheers Rich
-
Trying to do something in Wordpress...don't know how !
I'm sure we've done something similar to this in one of our WordPress websites. In your example above, will the reviews for Devon and reviews for Yorkshire appear on the same page? (or in WordPress talk 'Loop') http://codex.wordpress.org/The_Loop Rich
- Hurdle in a wordpress theme
-
Multiple stylesheets in Wordpress
CSS is rendered 'top-down', so if you queue your new style sheet below the theme's stylesheet it will override any rules in the previous stylesheets. As teodora says, hooking into the WordPress wp_enqueue_scripts action is the neatest way of adding a stylesheet. Alternatively, you could edit your WordPress themes header.php file and insert your new style under it's own style. Another option is to add a conditional if / else statement to load an entirely different style sheet based on the page id or slug. http://codex.wordpress.org/Function_Reference/is_page Hope this helps! Rich