tom23
Forum Replies Created
-
Forum: Fixing WordPress
In reply to: Showing post instead of page thumbnails on the main blog pageThis is the code of the part I want to change from showing 3 post thumbnails to 3 page thumbnails – http://pastebin.com/wEVzUVBb
Forum: Fixing WordPress
In reply to: Finding actual page content within backup folderFound it, SQL file, 10 Mb, text editors barely handled it…
Is there any program that can view and edit those SQL files without choking?
I opened my SQL file, tried to put word wrap to it so I could view it properly without the horizontal scroll, and it just kept choking, painstakingly slow
Forum: Fixing WordPress
In reply to: Translating months in "Archive" menuTheres no way for me just to edit the archive months display language?
Forum: Fixing WordPress
In reply to: Paragraph spacing lost after chaging p fontDelete thread, everything back to normal after I overwrote the CSS again (probably didnt refresh the browser properly) 😀
Forum: Fixing WordPress
In reply to: Publish button gone (missing on both Pages and Posts)Thanks for this!!
I feel so stupid now since this was not a issue at all…but then again…I rather come off stupid than to have my site in some serious malfunction that nobody can’t figure out 🙂
Thanks for the help!
Forum: Fixing WordPress
In reply to: Publish button gone (missing on both Pages and Posts)Anyone? 🙂
Forum: Fixing WordPress
In reply to: How to style blog page numbers at the bottom?I was just looking at that very page
But I don’t get it, it looks like the article is focused on spliting up blog entries.
My thing is I want overall blog count on each page to be lets say 5, and then on the bottom of the blog instead of Previous-Next links I would like to have numbered boxes or something like that.
Should I apply the settings in the link you posted in my WordPress stylesheet?
Or in main index template.php?
Forum: Fixing WordPress
In reply to: How to custom order the Pages (plugins dont work)Thanks! Works perfect. I used 1000,2000,3000 instead of 1,2,3 to define page orders in admin panel, I hope that’s a good way of doing it.
Thanks for the help!
Forum: Fixing WordPress
In reply to: How to custom order the Pages (plugins dont work)This is how it looks now in my header.php
<ul class="navmenu"> <li class="<?php if ( is_home() or is_archive() or is_single() or is_paged() or is_search() or (function_exists('is_tag') and is_tag()) ) { ?>current_page_item<?php } else { ?>page_item<?php } ?>"><a href="<?php echo get_settings('home'); ?>"><?php _e('BLOG'); ?></a></li> <?php wp_list_pages('sort_column=id&depth=1&title_li='); ?> <?php wp_register('<li>','</li>'); ?> </ul>So should I just change the “sort_column=id….” to “sort_column=menu_order” ?
Forum: Fixing WordPress
In reply to: How to custom order the Pages (plugins dont work)So what php file within my theme should I edit and how to put numbers to set the order?
Is this correct : <?php wp_list_pages(‘sort_column=menu_order 1’); ?>
Forum: Fixing WordPress
In reply to: How to: horizontal thumbnails for browsingWelp! 🙂
Forum: Fixing WordPress
In reply to: How to: horizontal thumbnails for browsingAny ides for this?
Forum: Fixing WordPress
In reply to: Clicking on one Page link on my blog leads to /Index ofBut it worked until few days ago when the page got “iframed”…
Forum: Fixing WordPress
In reply to: Clicking on one Page link on my blog leads to /Index ofJust /postname
Forum: Fixing WordPress
In reply to: Clicking on one Page link on my blog leads to /Index ofHere;
# BEGIN WordPress
<IfModule mod_rewrite.c>
RewriteEngine On
RewriteBase /
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule . /index.php [L]
</IfModule># END WordPress