Safirul Alredha
Forum Replies Created
-
Forum: Fixing WordPress
In reply to: Adding query results to a WordPress pageTheme’s functions.php is ok. But I recommend adding it as a plugin so that the shortcode would still work even if you change theme.
Forum: Fixing WordPress
In reply to: Adding query results to a WordPress pageUse Shortcodes. Create your own.
Forum: Fixing WordPress
In reply to: Some Users See Home Page as 404Daemus, try logging out. Can you see the page now?
What’s the Status and Visibility for that page you set for static page?
Forum: Plugins
In reply to: Jetpack caused fatal errorI assume you had this plugin installed: http://ww.wp.xz.cn/extend/plugins/wickett-twitter-widget/
Since you can’t access your admin panel, you can either delete the whole wickett-twitter-widget directory in wp-content/plugins or delete the whole jetpack directory in wp-content/plugins.
FYI, wickett-twitter-widget plugin already bundled in Jetpack.
Forum: Installing WordPress
In reply to: Parse error: syntax error, unexpected '.'Try re-download the package and check the file size. The zip file should be 3.8 MB.
Forum: Themes and Templates
In reply to: Getting Fatal error when installing themeEncrypted theme is bad. Try delete
check_header();. Or if that didn’t work, unscramble it http://rot13-encoder-decoder.waraxe.us/.Waste of time, choose another theme from reliable sources e.g http://ww.wp.xz.cn/extend/themes
Forum: Fixing WordPress
In reply to: Can't login to admin sectionProbably some file missing or corrupted during upgrade. How do u upgrade? From wp admin or manually upload the files?
Forum: Fixing WordPress
In reply to: query_posts questionIs this what u looking for? http://scribu.net/wordpress/advanced-metadata-queries.html
If yes, WP 3.1 Heh.
Forum: Fixing WordPress
In reply to: XML Parsing Error: not well-formed LocationDid you modify anything to WordPress index.php (not theme)?
Because
</div>appeared in the beginning of every page. To confirm, view source from browser and look before<!DOCTYPE html ...Forum: Hacks
In reply to: Help on presetting HTML content in the editor with function filterI think it’s appropriate to use entities instead. Even though it get converted when saved.
... <p>It’s christmas</p> ...Forum: Fixing WordPress
In reply to: why does "?page_id=23" show up in the address bar for my sub pages??Here’s your answer: http://codex.ww.wp.xz.cn/Settings_Permalinks_SubPanel
Go to Settings > Permalinks and under Common settings change to anything other than the default. If necessary, update or create a .htaccess file. Everything explained in the link I gave u.
Forum: Fixing WordPress
In reply to: How to list down tagsAFAIK, there’s no parent/child in Post Tags. Use
includeinstead?To list post tags using that function, add
taxonomy=post_tagForum: Fixing WordPress
In reply to: get_the_term_list localization<?php echo get_the_term_list( $post->ID, 'size', __('Sizes: ', 'yourthemedomainhere'), ', ', '' ); ?>Forum: Fixing WordPress
In reply to: Continue reading –> in 2010 themeOpen theme’s functions.php
find:
add_filter( 'excerpt_more', 'twentyten_auto_excerpt_more' );either delete, or add a comment (
//) to that line.Forum: Fixing WordPress
In reply to: Remove Dashboard ElementsYou should first be worried about the Help and Screen options that doesn’t show up.