Hax
Forum Replies Created
-
Forum: Fixing WordPress
In reply to: What's the best plan of attack on these sidebar items?for the first sidebar use a widget http://wordpress.org/extend/plugins/category-posts/ it will do exactly what you want.
for the second check http://wordpress.org/extend/plugins/wp-contact-sidebar-widget/ I have never use it but it looks like it can do what you are looking for. if not the best approach is to have a custom widget I think.
Forum: Fixing WordPress
In reply to: 500 nternal errorYour host server might not suport rewrites. ask they have the rewrite module installed that is if you are not running on a IIS Server.
Forum: Fixing WordPress
In reply to: "Page # of #"-like Pagination.what wordpress version are you running?
wp-pagenavi is very stable http://wordpress.org/extend/plugins/wp-pagenavi/
you can check the plugin author if it is compatible with the version that your runningafter installing the plugin you can change/add styles to fit your needs. also you should always have a development site to test plugins before you install them.
If you want to accomplish the navigation with just a function and if you can find anybody that wants to write it for you they need to know what version you are running to make the function compatible.
Forum: Fixing WordPress
In reply to: Absolutely minimal?OK try this, on your styles.css change
body div#wrapper{margin:0 auto;}tobody div#wrapper{margin:0 auto; width:600px!important}and add this at the end of your stylesheet
div.post {clear:both; width:600px; margin:0 auto} div.post div.entry-content { width:600px} div.post div.entry-content img{max-width:600px!important; height:auto!important} div.post div.entry-content object, div.post div.entry-content embed{width:600px!important}you can modify the width do fit your needs. also your html is bit broken and you might want to crop your image to the desired width, but the modifications to the stylesheet should work
Forum: Fixing WordPress
In reply to: Pagination on external php pageOk why are you using a external php file? when you can use a template file to modify your content display without using wp-load.php. and still have the next/previous functionality.
if you don’t want/can’t do it this way than I think that you have to write your own mysql query to get this accomplish using $wpdb. here is a link that can help you
http://codex.wordpress.org/Function_Reference/wpdb_Class or
http://codex.wordpress.org/Function_Reference/WP_QueryForum: Themes and Templates
In reply to: Can't get images to display with attachment.phpmmmm.. by default if you have a attachment.php in your theme folder it should work just fine.
Check if you have a conflict with a plugin that you are using by deactivating them all. also check if you have the same problem using the default theme and try disabling your permalinks.
if that doesn’t work please share your code on your attachment.php file to see if there is a problem with your code.
Forum: Fixing WordPress
In reply to: How to add a 16.7 zipped pdf to my blogyes, sorry misspell FTP. can can also change your max upload size using a .htaccess file if you are not on a IIS(windows) server.
php_value post_max_size 8M php_value upload_max_filesize 8Mhere a link to similar topic
http://wordpress.org/support/topic/increase-upload-size-without-phpini-or-htaccess?replies=6
Forum: Themes and Templates
In reply to: Can't get images to display with attachment.phpmake sure that your image link is going to the “post link” not to the “File url’ and that your attachment.php template is actually display the image.
Forum: Fixing WordPress
In reply to: Page Updatefirst try uninstalling any pugins that you have install to see if is an issue with any of the plugins also try a different theme.
Forum: Fixing WordPress
In reply to: How to add a 16.7 zipped pdf to my blogdo you have access to a pft account for your server? you shoud’t have an upload limit on it. upload your pdf file some where on the wp-content folder and just link it to your post by following the path http://domain.com/wp-content/folder/pdfname.pdf
Forum: Fixing WordPress
In reply to: Absolutely minimal?a link to your site will help? and definitely your are going to modify the styles sheet if you are not comfortable with this then maybe you need a somebody to crate a custom theme for you
Forum: Fixing WordPress
In reply to: Ordered list LI atributesstylessheet
ul { counter-reset: list-order 3; list-style-type: none; } ul li { counter-increment: list-order; } ul li:before { content: counters(list-order, ".") ". "; }you reset your count every time you need to start a new list only bad thing old browsers don’t support this feature and on firefox the tags need to be list tags
you can read more here http://dev.opera.com/articles/view/automatic-numbering-with-css-counters/
Forum: Fixing WordPress
In reply to: Displaying Post Contents with Category ListingThis is control by your theme if you theme doesn’t give you an option to change this you have to look for a new theme or you need to modify the code. usually you use
the_content()orthe_excerpt()Forum: Fixing WordPress
In reply to: Plugins won't update, install or search for new onesjust download the plugin from the plugin page and update the plugins through your ftp not through wp just overwrite all the files.
Forum: Fixing WordPress
In reply to: Pagination on external php pagecan I ask what are you using a external php ? because it may be a better solution to your problem.