asuka_aki
Forum Replies Created
-
Forum: Fixing WordPress
In reply to: Visual Editor appears as HTML in 2.9I like so many uhad the same issue and it was none of the things mentionned…
Then the thought dawned upon me! I had an htacces file in my wp-include folder that used to be fine but after the upgrade I had to edit it and the buttons came back!
Forum: Fixing WordPress
In reply to: WYSIWYG Editor is Missing ALL of the Buttons after up-grade to 2.8I had the same problem after upgrading to 2.9 and I read all the tutorials to no avail….Then the thought dawned upon me! I had an htacces file in my wp-include folder that used to be fine but after the upgrade I had to edit it and the buttons came back!
Forum: Themes and Templates
In reply to: footer in base64… how decrypt it?When I download a theme with an ecrypted footer, here’s what I do:
You can load the theme with encrypted footer and all. Then go to your home page and view the source code…Scroll to the bottom and you can see the regular code all decripted. Simply copy and paste the code in place of your footer encrypted stuff, save and voila.
Forum: Fixing WordPress
In reply to: How to set home page only show 1 postUse the following code instead of get header:
<?php get_header(); query_posts(‘posts_per_page=5’); ?>
and leave your blog settings at “display 10 posts”…that only affects your archives and categories.
Forum: Fixing WordPress
In reply to: Aargh! Data recovery – I deleted my blog!Eeeww it’s bad. I get “Fatal error: Call to undefined function force_ssl_admin() in /home/.baffled/asuka_aki/lepixelshoppe.com/scrap4dollars/wp-settings.php on line 394” what should I do?
Forum: Fixing WordPress
In reply to: Aargh! Data recovery – I deleted my blog!Ok I have done the exact same thing as blahblah007! I looked and one folder but deleted the other! So if I understand well, I back up my database just in case, I copy what’s left of my wordpress folders to my desktop…I should be able to reinstall wordpress with my database info, replace my old plugins and themes folder then I should have my blog back! I will try this but my fingers are crossed.
Forum: Plugins
In reply to: Show lastest post on home page but multiple posts on archive pages<?php get_header(); query_posts(‘posts_per_page=1’); ?>
Change 1 to what ever number of posts you want to display. It doesn’t change categories or archives.
Forum: Fixing WordPress
In reply to: Show one post on Home page?I sed this line of code in the index, instead of get header line to show only one post home page but have 10 in categories and archives.
<?php get_header(); query_posts(‘posts_per_page=1’); ?>
To exclude categories from the home page, I use this code:
<?php
wp_list_categories(‘orderby=name&exclude=10’); ?>Forum: Plugins
In reply to: One post on home page?Is this what you mean? My blog has two posts on the homepage https://lepixelshoppe.com/scrap4dollars
I used this line instead of the usual get header line of code:
<?php get_header(); query_posts(‘posts_per_page=2’); ?>
Change 2 to what ever number of posts you want to display. It doesn’t change my categories or archives.
Forum: Themes and Templates
In reply to: Trying to exclude category from sidebar…I have the same problem. I have to sidebars and would like a different category list in each of them. Is taht possible?