Title: 20phy's Replies | WordPress.org

---

# 20phy

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

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

 Search replies:

## Forum Replies Created

Viewing 11 replies - 1 through 11 (of 11 total)

 *   Forum: [Fixing WordPress](https://wordpress.org/support/forum/how-to-and-troubleshooting/)
   
   In reply to: [upgrade wordpress](https://wordpress.org/support/topic/upgrade-wordpress-5/)
 *  Thread Starter [20phy](https://wordpress.org/support/users/20phy/)
 * (@20phy)
 * [10 years, 5 months ago](https://wordpress.org/support/topic/upgrade-wordpress-5/#post-6839944)
 * i have deactivated my all plugins via phpMyAdmin.
    and now i can open my website.
   so how do you think about it ? i mean what’s the next step for me after this ?
 *   Forum: [Fixing WordPress](https://wordpress.org/support/forum/how-to-and-troubleshooting/)
   
   In reply to: [upgrade wordpress](https://wordpress.org/support/topic/upgrade-wordpress-5/)
 *  Thread Starter [20phy](https://wordpress.org/support/users/20phy/)
 * (@20phy)
 * [10 years, 5 months ago](https://wordpress.org/support/topic/upgrade-wordpress-5/#post-6839940)
 * hey sorry i dont understand about this statement :
 * > navigate to /wp-content/themes/ and rename the directory of your currently 
   > active theme.
 *   Forum: [Fixing WordPress](https://wordpress.org/support/forum/how-to-and-troubleshooting/)
   
   In reply to: [upgrade wordpress](https://wordpress.org/support/topic/upgrade-wordpress-5/)
 *  Thread Starter [20phy](https://wordpress.org/support/users/20phy/)
 * (@20phy)
 * [10 years, 5 months ago](https://wordpress.org/support/topic/upgrade-wordpress-5/#post-6839938)
 * ok i’ll try
 *   Forum: [Fixing WordPress](https://wordpress.org/support/forum/how-to-and-troubleshooting/)
   
   In reply to: [upgrade wordpress](https://wordpress.org/support/topic/upgrade-wordpress-5/)
 *  Thread Starter [20phy](https://wordpress.org/support/users/20phy/)
 * (@20phy)
 * [10 years, 5 months ago](https://wordpress.org/support/topic/upgrade-wordpress-5/#post-6839936)
 * this my website [http://www.ontawall.com](http://www.ontawall.com)
 *   Forum: [Fixing WordPress](https://wordpress.org/support/forum/how-to-and-troubleshooting/)
   
   In reply to: [upgrade wordpress](https://wordpress.org/support/topic/upgrade-wordpress-5/)
 *  Thread Starter [20phy](https://wordpress.org/support/users/20phy/)
 * (@20phy)
 * [10 years, 5 months ago](https://wordpress.org/support/topic/upgrade-wordpress-5/#post-6839935)
 * when i opened my wp-admin it said like this :
 * > Notice: convert_to_screen(), add_meta_box() was called incorrectly. Likely 
   > direct inclusion of wp-admin/includes/template.php in order to use add_meta_box().
   > This is very wrong. Hook the add_meta_box() call into the add_meta_boxes action
   > instead. Please see Debugging in WordPress for more information. (This message
   > was added in version 3.3.) in /home/ontawall/public_html/wp-includes/functions.
   > php on line 3787
   > Warning: Cannot modify header information – headers already sent by (output
   > started at /home/ontawall/public_html/wp-includes/functions.php:3787) in /home/
   > ontawall/public_html/wp-includes/pluggable.php on line 1228
 * when i checked the codes i thought it’s fine, nothing wrong
 *   Forum: [Fixing WordPress](https://wordpress.org/support/forum/how-to-and-troubleshooting/)
   
   In reply to: [upgrade wordpress](https://wordpress.org/support/topic/upgrade-wordpress-5/)
 *  Thread Starter [20phy](https://wordpress.org/support/users/20phy/)
 * (@20phy)
 * [10 years, 5 months ago](https://wordpress.org/support/topic/upgrade-wordpress-5/#post-6839911)
 * hi i tried but still nothing happened
 *   Forum: [Fixing WordPress](https://wordpress.org/support/forum/how-to-and-troubleshooting/)
   
   In reply to: [upgrade wordpress](https://wordpress.org/support/topic/upgrade-wordpress-5/)
 *  Thread Starter [20phy](https://wordpress.org/support/users/20phy/)
 * (@20phy)
 * [10 years, 5 months ago](https://wordpress.org/support/topic/upgrade-wordpress-5/#post-6839908)
 * ok i’ll try
 *   Forum: [Themes and Templates](https://wordpress.org/support/forum/themes-and-templates/)
   
   In reply to: [[Hueman] social button got noticed](https://wordpress.org/support/topic/social-button-got-noticed/)
 *  Thread Starter [20phy](https://wordpress.org/support/users/20phy/)
 * (@20phy)
 * [10 years, 5 months ago](https://wordpress.org/support/topic/social-button-got-noticed/#post-6834307)
 * this is it on line 297 at function.php script :
 *     ```
       /*  Social links
       /* ------------------------------------ */
       if ( ! function_exists( 'alx_social_links' ) ) {
   
       	function alx_social_links() {
       		if ( !ot_get_option('social-links') =='' ) {
       			$links = ot_get_option('social-links', array());
       			if ( !empty( $links ) ) {
       				echo '<ul class="social-links">';
       				foreach( $links as $item ) {
   
       					// Build each separate html-section only if set
       					if ( isset($item['title']) && !empty($item['title']) )
       						{ $title = 'title="' .$item['title']. '"'; } else $title = '';
       					if ( isset($item['social-link']) && !empty($item['social-link']) )
       						{ $link = 'href="' .$item['social-link']. '"'; } else $link = '';
       					if ( isset($item['social-target']) && !empty($item['social-target']) )
       						{ $target = 'target="' .$item['social-target']. '"'; } else $target = '';
       					if ( isset($item['social-icon']) && !empty($item['social-icon']) )
       						{ $icon = 'class="fa ' .$item['social-icon']. '"'; } else $icon = '';
       					if ( isset($item['social-color']) && !empty($item['social-color']) )
       						{ $color = 'style="color: ' .$item['social-color']. ';"'; } else $color = '';
   
       // Put them together
       	if ( isset($item['title']) && !empty($item['title']) && isset($item['social-icon']) && !empty($item['social-icon']) && ($item['social-icon'] !='fa-') ) {
       	echo '
       <li><a rel="nofollow"><i '.$icon.' '.$color.'></i></a></li>
       ';
       					}
       				}
       				echo '';
       			}
       		}
       	}
   
       }
       ```
   
 *   Forum: [Fixing WordPress](https://wordpress.org/support/forum/how-to-and-troubleshooting/)
   
   In reply to: [google xml sitemaps](https://wordpress.org/support/topic/google-xml-sitemaps-14/)
 *  Thread Starter [20phy](https://wordpress.org/support/users/20phy/)
 * (@20phy)
 * [10 years, 6 months ago](https://wordpress.org/support/topic/google-xml-sitemaps-14/#post-6748945)
 * thanks
 *   Forum: [Fixing WordPress](https://wordpress.org/support/forum/how-to-and-troubleshooting/)
   
   In reply to: [can't open wp-admin](https://wordpress.org/support/topic/cant-open-wp-admin-3/)
 *  Thread Starter [20phy](https://wordpress.org/support/users/20phy/)
 * (@20phy)
 * [10 years, 6 months ago](https://wordpress.org/support/topic/cant-open-wp-admin-3/#post-6723254)
 * ok im waiting you..
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[WP Fastest Cache - WordPress Cache Plugin] Tutorial on setting up WP Fastest Cache?](https://wordpress.org/support/topic/tutorial-on-setting-up-wp-fastest-cache/)
 *  [20phy](https://wordpress.org/support/users/20phy/)
 * (@20phy)
 * [10 years, 6 months ago](https://wordpress.org/support/topic/tutorial-on-setting-up-wp-fastest-cache/#post-5751756)
 * emre i have problem with new version.
 * i don’t know how to setting cache timeout. and when i was opened my home page,
   it can’t open. it’s blank.
 * please explaine me

Viewing 11 replies - 1 through 11 (of 11 total)