hey2you
Forum Replies Created
-
I move the line:
<?php do_action(‘comment_form’, $post->ID); ?>
in the comments.php before the submit button and it solve the issue.
No cache at all, any thought?
Forum: Fixing WordPress
In reply to: only have next buttonThanks alot, that is just what I need
Forum: Fixing WordPress
In reply to: How to make blog image not clickableremove
<a href....> </a>Forum: Fixing WordPress
In reply to: How to make blog image not clickableForum: Fixing WordPress
In reply to: How to list recent post in a table formatof course I need to edit, but any plugin to do it or reference??
Forum: Fixing WordPress
In reply to: Prevent spidering of wp-content/uploadyou want to lock it with .htaccess without letting others to access it through the site?? Try:
http://www.elated.com/articles/password-protecting-your-pages-with-htaccess/
Forum: Fixing WordPress
In reply to: failed restore sql databasetry uncheck the box
“Enclose table and field names with backquotes”
when you export the SQL file from phpmyadmin
Forum: Fixing WordPress
In reply to: Prevent spidering of wp-content/uploadrobot.txt
Forum: Fixing WordPress
In reply to: failed restore sql databaseis your file in SQL or CSV?? if it is in SQL try with phpmyadmin and copy and paste the SQL into the console to run the SQL directly there.
Forum: Fixing WordPress
In reply to: only have next buttonThanks, where exactly should I place this code?? Over the navigation bar div?
Forum: Fixing WordPress
In reply to: A page does not exist is existproblem fixed:
1. Put the 404.php file from the default theme to my existing theme
2. Then In the file: wp-include/query.phpLine 922:
if ( (‘page’ != get_option(‘show_on_front’) ) || ( $reqpage != get_option(‘page_for_posts’) ) ) {
$q[‘pagename’] = str_replace(‘%2F’, ‘/’, urlencode(urldecode($q[‘pagename’])));replace with this below
if ( (‘page’ != get_option(‘show_on_front’) ) || ( $reqpage !== get_option(‘page_for_posts’) ) ) {
$q[‘pagename’] = str_replace(‘%2F’, ‘/’, urlencode(urldecode($q[‘pagename’])));the solution above fix the problem of loading all the pages together in one page instead of the 404.php when a non existing page is enter, now is fine 🙂 .
Forum: Fixing WordPress
In reply to: Sitemap needed or not??Thanks!!
Forum: Fixing WordPress
In reply to: wp_list_bookmarks( ) with only one link CategoryThanks for the helping!!
<?php wp_list_bookmarks( ‘category=7’ ); ?> <– works!!
Forum: Fixing WordPress
In reply to: hacked or not??what version is your wordpress??