Phil
Forum Replies Created
-
Forum: Fixing WordPress
In reply to: no uploads file for theme purchasedI have set up about 5-6 wp installs which for some reason haven’t auto set up uploads folder – Maybe permissions on server.
In this instance, I’ve always created it myself and opened access to WP and not once had any issues after that – even other plugins like NGG can create folders inside it after and again, never an issue from then on.
Forum: Fixing WordPress
In reply to: Links don't work in a theme i createdGoogle: WP-Touch
Forum: Fixing WordPress
In reply to: how to use plugins and google analyticsYou are in the wrong place. This is WordPress.org – where you host your own WordPress install on a server.
You need http://en.support.wordpress.com/ for WP-hosted solutions. They have their own support where you will find your answers.
Forum: Fixing WordPress
In reply to: Has my site been hacked!It looks like you may have installed a plugin(s) previously and deleting the plugin didn’t delete the tables. They look plugin-relatied.
eg, bwps_lockouts is for a security plugin
Forum: Fixing WordPress
In reply to: Change page URL to category URLYou cheated! 😉
Forum: Fixing WordPress
In reply to: Changing background color into black on the WP events calendarIt is that one (line 477):
#wp-calendar caption {
background: #050505 !important;
color: #B8C0C7;
margin: 2px 0;
padding: 2px 4px;
text-transform: uppercase;
}This works for me.
Forum: Fixing WordPress
In reply to: Fatal Error On Admin PanelIncrease server memory by the looks of it…
Contact your host so they can check PHP memory limit and increase accordingly.
Forum: Fixing WordPress
In reply to: Media Embedding but wrong height, too short??Link to your site?
Forum: Fixing WordPress
In reply to: Media Embedding but wrong height, too short??Doubt it but you never know.
Have you tried altering the height=”315″ to another value?
Forum: Fixing WordPress
In reply to: Changing background color into black on the WP events calendarYou have an error:
color: #b8c0c7should be changed to
color: #b8c0c7;You were missing a semi-colon. By missing it, it’s ignoring everything else in that block.
Try this:
#wp-calendar td { color: #b8c0c7; font: normal 12px 'Lucida Grande', 'Lucida Sans Unicode', Verdana, sans-serif; letter-spacing: normal; padding: 2px 0; text-align: center; background-color: #000 !important; }Forum: Fixing WordPress
In reply to: Changing background color into black on the WP events calendarHere’s what I would do:
Amend this line to your style.css (on line 484):
#wp-calendar td { background-color: #chooseyourcolor !important; }(Obviously change #chooseyourcolour to whatever hex colour you want, eg #121212)
As long as the !important part is there it will overwrite the default colour that comes with the plugin, so even if you update the plugin, it should still keep your new custom colour. You can always add it to other things like border, color, padding etc and future updates won’t undo your changes.
Forum: Fixing WordPress
In reply to: no uploads file for theme purchasedYou sometimes have to create it. Just create a folder in the wp-content folder (same place as plugins, themes etc) and set up permissions to allow wordpress to store and retrieve files as and when you upload them.
Forum: Fixing WordPress
In reply to: Media Embedding but wrong height, too short??Can we see your embed code?
Forum: Fixing WordPress
In reply to: Change page URL to category URLHere’s a good place to start.
Forum: Fixing WordPress
In reply to: Change page URL to category URLThe only way to achieve this (whether it works or not) would be to create a page called Category and another page called Cat. You would place Cat underneath the Category page (so Category is the parent). This would in theory give you category/cat as a url – whether it conflicts with the actuall /category ie the archive of posts is another thing to consider. Worth giving it a go though.
There will be other ways to achieve this as well such as rewriting the url via htaccess.