Title: codingpet's Replies - page 8 | WordPress.org

---

# codingpet

  [  ](https://wordpress.org/support/users/codingpet/)

 *   [Profile](https://wordpress.org/support/users/codingpet/)
 *   [Topics Started](https://wordpress.org/support/users/codingpet/topics/)
 *   [Replies Created](https://wordpress.org/support/users/codingpet/replies/)
 *   [Reviews Written](https://wordpress.org/support/users/codingpet/reviews/)
 *   [Topics Replied To](https://wordpress.org/support/users/codingpet/replied-to/)
 *   [Engagements](https://wordpress.org/support/users/codingpet/engagements/)
 *   [Favorites](https://wordpress.org/support/users/codingpet/favorites/)

 Search replies:

## Forum Replies Created

Viewing 15 replies - 106 through 120 (of 181 total)

[←](https://wordpress.org/support/users/codingpet/replies/page/7/?output_format=md)
[1](https://wordpress.org/support/users/codingpet/replies/?output_format=md) [2](https://wordpress.org/support/users/codingpet/replies/page/2/?output_format=md)
[3](https://wordpress.org/support/users/codingpet/replies/page/3/?output_format=md)…
[7](https://wordpress.org/support/users/codingpet/replies/page/7/?output_format=md)
8 [9](https://wordpress.org/support/users/codingpet/replies/page/9/?output_format=md)…
[11](https://wordpress.org/support/users/codingpet/replies/page/11/?output_format=md)
[12](https://wordpress.org/support/users/codingpet/replies/page/12/?output_format=md)
[13](https://wordpress.org/support/users/codingpet/replies/page/13/?output_format=md)
[→](https://wordpress.org/support/users/codingpet/replies/page/9/?output_format=md)

 *   Forum: [Fixing WordPress](https://wordpress.org/support/forum/how-to-and-troubleshooting/)
   
   In reply to: [Server 500 error](https://wordpress.org/support/topic/server-500-error/)
 *  [codingpet](https://wordpress.org/support/users/codingpet/)
 * (@codingpet)
 * [13 years, 8 months ago](https://wordpress.org/support/topic/server-500-error/#post-2988021)
 * [23-Aug-2012 01:10:21] PHP Parse error: syntax error, unexpected ‘<‘ in /home2/
   digitef7/public_html/wp-content/themes/magazine-basic/functions.php on line 251
 * This is the error in your error_log. except the plugin, you might also edit the
   theme file and added unexpected ‘<‘ by accident. Please check the line 251 in
   functions.php to remove the unexpected ‘<‘.
 *   Forum: [Fixing WordPress](https://wordpress.org/support/forum/how-to-and-troubleshooting/)
   
   In reply to: [Using Shortcodes in Custom Fields?](https://wordpress.org/support/topic/using-shortcodes-in-custom-fields/)
 *  [codingpet](https://wordpress.org/support/users/codingpet/)
 * (@codingpet)
 * [13 years, 8 months ago](https://wordpress.org/support/topic/using-shortcodes-in-custom-fields/#post-2975047)
 *     ```
       <?php
       if ( get_post_meta($post->ID, 'PRICE', true) )
       echo do_shortcode(get_post_meta($post->ID, 'PRICE', $single = true));
       ?>
       ```
   
 * Similar codes will work but not fully tested.
 *   Forum: [Fixing WordPress](https://wordpress.org/support/forum/how-to-and-troubleshooting/)
   
   In reply to: [Server 500 error](https://wordpress.org/support/topic/server-500-error/)
 *  [codingpet](https://wordpress.org/support/users/codingpet/)
 * (@codingpet)
 * [13 years, 8 months ago](https://wordpress.org/support/topic/server-500-error/#post-2987970)
 * Hi,
 * connect your site with FTP and navigate to wp-content/plugins/ folder. delete
   the folder(meteor-slides or similar) totally. Then go to [http://digitalfrankenstein.org/wp-admin/](http://digitalfrankenstein.org/wp-admin/)
   and try login. If no plugin files found, the plugin will be deactivate automatically.
 *   Forum: [Fixing WordPress](https://wordpress.org/support/forum/how-to-and-troubleshooting/)
   
   In reply to: [How to Managing Tables trought WordPress ???](https://wordpress.org/support/topic/how-to-managing-tables-trought-wordpress/)
 *  [codingpet](https://wordpress.org/support/users/codingpet/)
 * (@codingpet)
 * [13 years, 8 months ago](https://wordpress.org/support/topic/how-to-managing-tables-trought-wordpress/#post-2985024)
 * No. The plugin is to create HTML tables not DB tables. I don’t know if there 
   is a plugin can meet your needs. You may check this docs as you have specific
   needs.
 * [http://codex.wordpress.org/Creating_Tables_with_Plugins](http://codex.wordpress.org/Creating_Tables_with_Plugins)
 *   Forum: [Themes and Templates](https://wordpress.org/support/forum/themes-and-templates/)
   
   In reply to: [Raindrops defaulth sidebar](https://wordpress.org/support/topic/raindrops-defaulth-sidebar/)
 *  [codingpet](https://wordpress.org/support/users/codingpet/)
 * (@codingpet)
 * [13 years, 8 months ago](https://wordpress.org/support/topic/raindrops-defaulth-sidebar/#post-2982274)
 *     ```
       $html = wp_list_pages('title_li=<h2 class="h2">'. __( 'Pages', 'Raindrops').'</h2>&echo=0' );
       $html .= wp_list_pages('title_li=<h2 class="h2">'. __( 'Pages', 'Raindrops').'</h2>&echo=0' );
       $html .= '<li><h2 class="h2">'. __( 'Archives', 'Raindrops' ). '</h2>';
       $html .= '<ul>'. wp_get_archives('type=monthly&echo=0'). '</ul>';
       $html .= '</li>';
       $html .= wp_list_categories('show_count=1&title_li=<h2 class="h2">'. __( 'Categories', 'Raindrops'). '</h2>&echo=0' );
       if ( is_front_page() || is_page() ) {
       $html .= wp_list_bookmarks( 'echo=0' );
       $html .= '<li><h2 class="h2">Meta'. __( 'Meta', 'Raindrops' ). '</h2>';
       $html .= '<ul>'. wp_register( '<li>', '</li>', false ).'<li>';
       $html .= wp_loginout('', false ).'</li>';
       // wp_meta();
       $html .= '</ul></li>';
       }
       ```
   
 *   Forum: [Themes and Templates](https://wordpress.org/support/forum/themes-and-templates/)
   
   In reply to: [Raindrops defaulth sidebar](https://wordpress.org/support/topic/raindrops-defaulth-sidebar/)
 *  [codingpet](https://wordpress.org/support/users/codingpet/)
 * (@codingpet)
 * [13 years, 8 months ago](https://wordpress.org/support/topic/raindrops-defaulth-sidebar/#post-2982273)
 * Of course, please keep at least on widget in the default widget area and extra
   widget area. Or you will see all the pre-defined widgets.
 * If you don’t want to add any widgets and but remove the pre-defined, you can 
   remove codes
 *     ```
       $html = wp_list_pages('title_li=<h2 class="h2">'. __( 'Pages', 'Raindrops').'</h2>&echo=0' );
       			$html .= wp_list_pages('title_li=<h2 class="h2">'. __( 'Pages', 'Raindrops').'</h2>&echo=0' );
       			$html .= '
       <li><h2 class="h2">'. __( 'Archives', 'Raindrops' ). '</h2>';
       			$html .= '
       <ul>'. wp_get_archives('type=monthly&echo=0'). '</ul>
       ';
       			$html .= '</li>
       ';
       			$html .= wp_list_categories('show_count=1&title_li=<h2 class="h2">'. __( 'Categories', 'Raindrops'). '</h2>&echo=0' );
       			if ( is_front_page() || is_page() ) {
       				$html .= wp_list_bookmarks( 'echo=0' );
       				$html .= '
       <li><h2 class="h2">Meta'. __( 'Meta', 'Raindrops' ). '</h2>';
       				$html .= '
       <ul>'. wp_register( '
       <li>', '</li>
       ', false ).'
       <li>';
       				$html .= wp_loginout('', false ).'</li>
       ';
       				// wp_meta();
       				$html .= '</ul>
       </li>
       ';
       			}
       ```
   
 * in functions.php
 * _[Moderator Note: Please post code or markup snippets between backticks or use
   the code button. As it stands, your code may now have been permanently damaged/
   corrupted by the forum’s parser.]_
 *   Forum: [Themes and Templates](https://wordpress.org/support/forum/themes-and-templates/)
   
   In reply to: [Raindrops defaulth sidebar](https://wordpress.org/support/topic/raindrops-defaulth-sidebar/)
 *  [codingpet](https://wordpress.org/support/users/codingpet/)
 * (@codingpet)
 * [13 years, 8 months ago](https://wordpress.org/support/topic/raindrops-defaulth-sidebar/#post-2982272)
 * Parse error: syntax error, unexpected ‘<‘ in /home/mrcr/texas-sign-works.com/
   wp-content/themes/raindrops/sidebar-default.php on line 9
 * Did you edit the sidebar-default.php directly? If yes, please don’t do it in 
   this way. You need to edit widgets in dashboard->appearances->widgets
 * I just installed the theme you mentioned. There are two sidebars. The “default
   sidebar” is for left column. The “Extra Sidebar” is for right column. The theme
   also have 3 other widget area for other places e.g. footer.
 *   Forum: [Themes and Templates](https://wordpress.org/support/forum/themes-and-templates/)
   
   In reply to: [Custom Page template issue](https://wordpress.org/support/topic/custom-page-template-issue/)
 *  [codingpet](https://wordpress.org/support/users/codingpet/)
 * (@codingpet)
 * [13 years, 8 months ago](https://wordpress.org/support/topic/custom-page-template-issue/#post-2986182)
 * Hi,
 * I don’t think you need to add styles to both the custom template and default 
   template. These templates looks good without OldSkool-src/style.css added.
 * Some plugins need wp_head() and wp_footer() to work. So please make sure your
   custom template included these two hooks. This is the code you need to check 
   to make the plugin work.
 *   Forum: [Themes and Templates](https://wordpress.org/support/forum/themes-and-templates/)
   
   In reply to: [THEME LIKE THIS SITE?](https://wordpress.org/support/topic/theme-like-this-site/)
 *  [codingpet](https://wordpress.org/support/users/codingpet/)
 * (@codingpet)
 * [13 years, 8 months ago](https://wordpress.org/support/topic/theme-like-this-site/#post-2986022)
 * I dont’ think it’s a wordpress site.
 *   Forum: [Themes and Templates](https://wordpress.org/support/forum/themes-and-templates/)
   
   In reply to: [Custom Page template issue](https://wordpress.org/support/topic/custom-page-template-issue/)
 *  [codingpet](https://wordpress.org/support/users/codingpet/)
 * (@codingpet)
 * [13 years, 8 months ago](https://wordpress.org/support/topic/custom-page-template-issue/#post-2986021)
 * YOur customized function is to add style to all pages. so you saw both default
   and custom css.
 * What’s the differences between your custom template and default template?
 *   Forum: [Fixing WordPress](https://wordpress.org/support/forum/how-to-and-troubleshooting/)
   
   In reply to: [need to adjust sidebar width](https://wordpress.org/support/topic/need-to-adjust-sidebar-width/)
 *  [codingpet](https://wordpress.org/support/users/codingpet/)
 * (@codingpet)
 * [13 years, 8 months ago](https://wordpress.org/support/topic/need-to-adjust-sidebar-width/#post-2986018)
 * You can adjust the sidebar and main frame width by editing css. they will be .
   sidebar and .content. I’m not sure the wp-creativix theme but seems you have 
   dashboard theme options to change the width?
 *   Forum: [Fixing WordPress](https://wordpress.org/support/forum/how-to-and-troubleshooting/)
   
   In reply to: [How to import sql database to a new wordpress?](https://wordpress.org/support/topic/how-to-import-sql-database-to-a-new-wordpress/)
 *  [codingpet](https://wordpress.org/support/users/codingpet/)
 * (@codingpet)
 * [13 years, 8 months ago](https://wordpress.org/support/topic/how-to-import-sql-database-to-a-new-wordpress/#post-2985480)
 * You can consider importing the sql directly via tools e.g. phpmyadmin. After 
   imported and tried to login, you maybe asked to upgrade the database as they 
   are different version. Just do it.
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [Displaying login/registration error messages inline](https://wordpress.org/support/topic/displaying-loginregistration-messages-inline/)
 *  [codingpet](https://wordpress.org/support/users/codingpet/)
 * (@codingpet)
 * [13 years, 8 months ago](https://wordpress.org/support/topic/displaying-loginregistration-messages-inline/#post-2985479)
 * What plugins you are using? Have you tried [http://wordpress.org/extend/plugins/theme-my-login](http://wordpress.org/extend/plugins/theme-my-login)?
   This plugin works fine for registration,login, get password etc.
 *   Forum: [Fixing WordPress](https://wordpress.org/support/forum/how-to-and-troubleshooting/)
   
   In reply to: [How to Managing Tables trought WordPress ???](https://wordpress.org/support/topic/how-to-managing-tables-trought-wordpress/)
 *  [codingpet](https://wordpress.org/support/users/codingpet/)
 * (@codingpet)
 * [13 years, 8 months ago](https://wordpress.org/support/topic/how-to-managing-tables-trought-wordpress/#post-2984825)
 * try [http://wordpress.org/extend/plugins/tinymce-advanced/](http://wordpress.org/extend/plugins/tinymce-advanced/)
 *   Forum: [Fixing WordPress](https://wordpress.org/support/forum/how-to-and-troubleshooting/)
   
   In reply to: [how to align the Logo in the front page](https://wordpress.org/support/topic/how-to-align-the-logo-in-the-front-page/)
 *  [codingpet](https://wordpress.org/support/users/codingpet/)
 * (@codingpet)
 * [13 years, 8 months ago](https://wordpress.org/support/topic/how-to-align-the-logo-in-the-front-page/#post-2984817)
 * basiclly add float:left to css will solve the issue. It will be helpful to show
   URL, so we can check the real issue.

Viewing 15 replies - 106 through 120 (of 181 total)

[←](https://wordpress.org/support/users/codingpet/replies/page/7/?output_format=md)
[1](https://wordpress.org/support/users/codingpet/replies/?output_format=md) [2](https://wordpress.org/support/users/codingpet/replies/page/2/?output_format=md)
[3](https://wordpress.org/support/users/codingpet/replies/page/3/?output_format=md)…
[7](https://wordpress.org/support/users/codingpet/replies/page/7/?output_format=md)
8 [9](https://wordpress.org/support/users/codingpet/replies/page/9/?output_format=md)…
[11](https://wordpress.org/support/users/codingpet/replies/page/11/?output_format=md)
[12](https://wordpress.org/support/users/codingpet/replies/page/12/?output_format=md)
[13](https://wordpress.org/support/users/codingpet/replies/page/13/?output_format=md)
[→](https://wordpress.org/support/users/codingpet/replies/page/9/?output_format=md)