csloisel
Forum Replies Created
-
Forum: Hacks
In reply to: Display Title as CaptionCan you elaborate? Do you have an example of what you are trying to accomplish? The initial impression I’m getting is you just need a few lines of css to display the title as you want to.
Forum: Fixing WordPress
In reply to: htaccess and 404 errorsWhat are the permalinks being changed to? Are you talking post specific permalinks or global permalinks?
Forum: Fixing WordPress
In reply to: htaccess and 404 errorsTo expand on the above comment, .htaccess is an Apache specific file, if your host is running on anything else like nginx, it will not work.
Forum: Fixing WordPress
In reply to: Footer Image Margin Issuesfooter .site-info p { float: left; } footer .site-info div { float: right; } footer .site-info img { margin-top: 0; }
Forum: Fixing WordPress
In reply to: parse errorSounds like you put raw html inside php tags. Put closing php tags before the html or use php to echo it.
Forum: Fixing WordPress
In reply to: How to divide one loop into two or three parts or columns ?If you are just trying to style them differently, I would just use one loop and based on the post index, just add a different css class and use that class to modify the style.
Forum: Fixing WordPress
In reply to: Adding "nofollow" to Links?Could you elaborate on the Links page? Is that regular page where you manually add links? Are you trying to manually add this attribute to the links or are you looking for a programmatic way to do it automatically?
Forum: Fixing WordPress
In reply to: add text or script under every postI see no problem with modifying the single.php this is exactly what templates are for. If you want to do it programmatically you can add a the_content filter to your functions.php file. You definitely don’t need a plugin.
Forum: Fixing WordPress
In reply to: WordPress Upload Folders with many itemsThis sounds like an issue you need to take up with your hosting provider. If you need to access the files I would circumvent any browser file management and just go with a traditional desktop ftp client.
Forum: Plugins
In reply to: [User List] User ListIs it possible they are spam accounts created by a malicious attack? It looks like this plugin just displays native WordPress users, so it may have nothing to do with the surge of user sign ups.
Forum: Plugins
In reply to: [WP Cache Bucket] How can I use?Duplicate post.
Forum: Plugins
In reply to: [WP Cache Bucket] How can I use?The methods are very similar to WP object cache but with the addition of the bucket key.
So instead of
wp_cache_add( $key, $data, $group, $expire )
Use:
wp_cache_bucket_add( $bucket, $key, $data, $group, $expire )
I hope this makes sense.
Forum: Plugins
In reply to: [Lift: Search for WordPress] Get error on activating the pluginHi wolfdogg, this seems to be a common error with php versions prior to 5.3. Unfortunately for right now, the plugin is only compatible with php 5.3 or higher.