Aziza
Forum Replies Created
-
Forum: Fixing WordPress
In reply to: Upgrading to WP 2.0I just upgraded my wp 1.5 to 2.0. Everything seem working just fine EXCEPT all my ?, ? and ?’s (swedish characters) are gone! They are still there in the admin area!
My.mo files are uploaded in my languages folder..Forum: Fixing WordPress
In reply to: Categories | Listing on two placesFound the answer here: https://www.ads-software.com/support/topic/18155
Forum: Fixing WordPress
In reply to: Question about wp list pages and categoriesI have solved Question #2!
Question #1 is still not resolved though ??Forum: Requests and Feedback
In reply to: private comment pluginI know many who are looking for a private comment plugin! I’m one of them! Would be cool if people could have the ability to choose whether the comment should be public or private just for the blog owner (just like some guestbooks)
Please please pretty please someone?? If I could I would create one instantly *grin*Forum: Plugins
In reply to: Semiologic: Help with the plugin Sidebar TileI have _nothing_ else in my sidebar. _Only_ the sidebar plugin tag. There shouldn’t be anything interfering.
Forum: Plugins
In reply to: Semiologic: Help with the plugin Sidebar TileI only have the tag < ?php sem_sidebar_tile(); ? > in my sidebar.php nothing else. I have also tried adding the tag < ?php sem_sidebar_tile(); ? > directly in my menu on my index.php where I want it to appear with the same result.
Forum: Plugins
In reply to: Semiologic: Help with the plugin Sidebar TileNo nothing! I just pasted the code in to my sidebar, didn’t alter anything.. Just followed the instructions to 100%
Forum: Plugins
In reply to: Semiologic: Help with the plugin Sidebar TileYes, here it is:
https://underbar.org/plug.jpgForum: Themes and Templates
In reply to: Need help with a string in template-functions-post.phpWorks like a charm! Thanks!
Forum: Themes and Templates
In reply to: Need help with a string in template-functions-post.phpWhen adding:
<a href="mailto:[email protected]">Maila</a>
I get:
Parse error: parse error, unexpected T_STRING in /home/xxx/public_html/wp/wp-includes/template-functions-post.php on line 6
Forum: Themes and Templates
In reply to: Need help with a string in template-functions-post.phpForgot the backticks!
The string I need help with is:
function get_the_password_form() {
$output = '<form action="' . get_settings('siteurl') . '/wp-pass.php" method="post">
<p>' . __("<strong>Detta inlägg är lösenordsskyddat.</strong><br/>
??r du en trogen bes??kare och jag k?¤nner/k?¤nner till dig s?¥ ?¤r du v?¤lkommen att ans??ka om l??senordet. < mailto:[email protected] >Maila < /a>. Anv?¤ndare som missbrukar f??rtroendet och ger vidare l??senordet kommer nekas tilltr?¤de till dagboken.
") . '</p>Forum: Installing WordPress
In reply to: B2 0.6.2.1 to wordpress 1.5Thanks msangapu!!!
I ran into some problems when running the mysql statements though. I solved it by running this instead: (I didn’t have wp_settings)
DROP TABLE wp_categories;
DROP TABLE wp_comments;
DROP TABLE wp_posts;
DROP TABLE wp_users;
RENAME TABLE b2categories TO wp_categories;
RENAME TABLE b2comments TO wp_comments;
RENAME TABLE b2posts TO wp_posts;
RENAME TABLE b2settings TO wp_settings;
RENAME TABLE b2users TO wp_users;Forum: Themes and Templates
In reply to: Not showing SummaryThank you SO much! ?? Work like a charm!:-)
Forum: Themes and Templates
In reply to: Not showing SummaryThanks for the explanation!
I solved the issue by creating an archive.php and put in my themes folder and added <?php the_excerpt() ?> instead of the the_contentHowever do you or anyone know how I make the […] turn into a link to the permalink instead? Maybe modifying this?:
$excerpt .= ($use_dotdotdot) ? ‘[…]’ : ”;I figure some visitors don’t understand that they should click on the title in order to read the whole post.
Forum: Themes and Templates
In reply to: Not showing SummaryJust adding: I just want to have this when viewing posts in categories not when reading the post on my main page.
TIA