Title: codismo's Replies | WordPress.org

---

# codismo

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

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

 Search replies:

## Forum Replies Created

Viewing 15 replies - 1 through 15 (of 77 total)

1 [2](https://wordpress.org/support/users/codismo/replies/page/2/?output_format=md)
[3](https://wordpress.org/support/users/codismo/replies/page/3/?output_format=md)
[4](https://wordpress.org/support/users/codismo/replies/page/4/?output_format=md)
[5](https://wordpress.org/support/users/codismo/replies/page/5/?output_format=md)
[6](https://wordpress.org/support/users/codismo/replies/page/6/?output_format=md)
[→](https://wordpress.org/support/users/codismo/replies/page/2/?output_format=md)

 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[Subscribe To Comments Reloaded] Code deprecated on comment form](https://wordpress.org/support/topic/code-deprecated-on-comment-form/)
 *  [codismo](https://wordpress.org/support/users/codismo/)
 * (@codismo)
 * [5 years, 7 months ago](https://wordpress.org/support/topic/code-deprecated-on-comment-form/#post-13568360)
 * wrong account. check below.
    -  This reply was modified 5 years, 7 months ago by [codismo](https://wordpress.org/support/users/codismo/).
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[Subscribe To Comments Reloaded] Automatically register users with comments](https://wordpress.org/support/topic/automatically-register-users-with-comments/)
 *  [codismo](https://wordpress.org/support/users/codismo/)
 * (@codismo)
 * [6 years, 9 months ago](https://wordpress.org/support/topic/automatically-register-users-with-comments/#post-11935886)
 * **(wrong account)**
    -  This reply was modified 6 years, 9 months ago by [codismo](https://wordpress.org/support/users/codismo/).
 *   Forum: [Developing with WordPress](https://wordpress.org/support/forum/wp-advanced/)
   
   In reply to: [Disable widgets in customizer for sidebar](https://wordpress.org/support/topic/disable-widgets-in-customizer-for-sidebar/)
 *  [codismo](https://wordpress.org/support/users/codismo/)
 * (@codismo)
 * [9 years ago](https://wordpress.org/support/topic/disable-widgets-in-customizer-for-sidebar/#post-9162585)
 * I’d suggest using `unregister_widget()` to disable widgets you do not need. More
   info in [the WordPress codex](https://codex.wordpress.org/Function_Reference/unregister_widget)
 *   Forum: [Fixing WordPress](https://wordpress.org/support/forum/how-to-and-troubleshooting/)
   
   In reply to: [Removing the header/footer in theme template](https://wordpress.org/support/topic/removing-the-headerfooter-in-theme-template/)
 *  [codismo](https://wordpress.org/support/users/codismo/)
 * (@codismo)
 * [9 years ago](https://wordpress.org/support/topic/removing-the-headerfooter-in-theme-template/#post-9162575)
 * In that custom page template replace `get_header()` with the contents of header.
   php and replace `get_footer()` with the contents of footer.php
 * Then remove the elements you do not need ( do not remove anything above `<body
   >` or below `</body>` )
 *   Forum: [Fixing WordPress](https://wordpress.org/support/forum/how-to-and-troubleshooting/)
   
   In reply to: [My own custom template can’t Embed, other WP themes can](https://wordpress.org/support/topic/my-own-custom-template-cant-embed-other-wp-themes-can-help/)
 *  [codismo](https://wordpress.org/support/users/codismo/)
 * (@codismo)
 * [9 years ago](https://wordpress.org/support/topic/my-own-custom-template-cant-embed-other-wp-themes-can-help/#post-9162552)
 * Can you share the code for single.php ( and content-single.php or some other 
   file in case you use a template part to output content on single.php )?
 * My first guess is that you are using `get_the_content()` instead of `the_content()`,
   in which case filters are not applied and those URLs do not convert to an embed.
 *   Forum: [Fixing WordPress](https://wordpress.org/support/forum/how-to-and-troubleshooting/)
   
   In reply to: [Published date changes over time](https://wordpress.org/support/topic/published-date-changes-over-time/)
 *  [codismo](https://wordpress.org/support/users/codismo/)
 * (@codismo)
 * [9 years ago](https://wordpress.org/support/topic/published-date-changes-over-time/#post-9149922)
 * I think the theme is showing the “modified date” ( date of the last update you
   made to the post ).
 * It’s using `the_modified_time()` instead of `the_time()`
 *   Forum: [Fixing WordPress](https://wordpress.org/support/forum/how-to-and-troubleshooting/)
   
   In reply to: [custom image field does not show up?](https://wordpress.org/support/topic/custom-image-field-does-not-show-up/)
 *  [codismo](https://wordpress.org/support/users/codismo/)
 * (@codismo)
 * [9 years ago](https://wordpress.org/support/topic/custom-image-field-does-not-show-up/#post-9149911)
 * You’re getting the image ID. So, wrap the get_post_meta() in wp_get_attachment_url()
 *   Forum: [Fixing WordPress](https://wordpress.org/support/forum/how-to-and-troubleshooting/)
   
   In reply to: [Hiding Page Post on Front Page](https://wordpress.org/support/topic/hiding-page-post-on-front-page/)
 *  [codismo](https://wordpress.org/support/users/codismo/)
 * (@codismo)
 * [9 years ago](https://wordpress.org/support/topic/hiding-page-post-on-front-page/#post-9149898)
 * To hide that bottom section entirely?
 * Add this in WP admin > Appearance > Customize > Additional CSS:
 *     ```
       body.page-id-2 #front-page-content {
           display: none;
       }
       ```
   
 *   Forum: [Fixing WordPress](https://wordpress.org/support/forum/how-to-and-troubleshooting/)
   
   In reply to: [Change Widget To Center On Mobile View](https://wordpress.org/support/topic/change-widget-to-center-on-mobile-view/)
 *  [codismo](https://wordpress.org/support/users/codismo/)
 * (@codismo)
 * [9 years, 1 month ago](https://wordpress.org/support/topic/change-widget-to-center-on-mobile-view/#post-9125143)
 * You’re welcome 🙂
 *   Forum: [Fixing WordPress](https://wordpress.org/support/forum/how-to-and-troubleshooting/)
   
   In reply to: [Post revision disappeared](https://wordpress.org/support/topic/post-revision-disappeared/)
 *  [codismo](https://wordpress.org/support/users/codismo/)
 * (@codismo)
 * [9 years, 1 month ago](https://wordpress.org/support/topic/post-revision-disappeared/#post-9125130)
 * I’d suggest disabling one plugin at a time and checking if the revisions are 
   back, you’ll find the plugin causing the issue.
 *   Forum: [Fixing WordPress](https://wordpress.org/support/forum/how-to-and-troubleshooting/)
   
   In reply to: [Change Widget To Center On Mobile View](https://wordpress.org/support/topic/change-widget-to-center-on-mobile-view/)
 *  [codismo](https://wordpress.org/support/users/codismo/)
 * (@codismo)
 * [9 years, 1 month ago](https://wordpress.org/support/topic/change-widget-to-center-on-mobile-view/#post-9125124)
 * You’re welcome.
 * In WP admin > Appearance > Customize > Additional CSS.
 *   Forum: [Fixing WordPress](https://wordpress.org/support/forum/how-to-and-troubleshooting/)
   
   In reply to: [Where WordPress stores Imported data](https://wordpress.org/support/topic/where-wordpress-stores-imported-data/)
 *  [codismo](https://wordpress.org/support/users/codismo/)
 * (@codismo)
 * [9 years, 1 month ago](https://wordpress.org/support/topic/where-wordpress-stores-imported-data/#post-9124985)
 * It has to be in the database, WordPress can’t work without database access. Log
   into phpMyAdmin and you’ll see it in there.
 *   Forum: [Fixing WordPress](https://wordpress.org/support/forum/how-to-and-troubleshooting/)
   
   In reply to: [Editing wp-config.php out of date?](https://wordpress.org/support/topic/editing-wp-config-php-out-of-date/)
 *  [codismo](https://wordpress.org/support/users/codismo/)
 * (@codismo)
 * [9 years, 1 month ago](https://wordpress.org/support/topic/editing-wp-config-php-out-of-date/#post-9124967)
 * But keep in mind that it might not work.
 * If it does not work and you do not have access to php.ini file then you’ll need
   to contact your hosting provider and ask them to increase it.
 *   Forum: [Fixing WordPress](https://wordpress.org/support/forum/how-to-and-troubleshooting/)
   
   In reply to: [Change Widget To Center On Mobile View](https://wordpress.org/support/topic/change-widget-to-center-on-mobile-view/)
 *  [codismo](https://wordpress.org/support/users/codismo/)
 * (@codismo)
 * [9 years, 1 month ago](https://wordpress.org/support/topic/change-widget-to-center-on-mobile-view/#post-9124955)
 * Use this:
 *     ```
       @media screen and (max-width: 768px) {
           .footer #text-2 { text-align: center; }
       }
       ```
   
 *   Forum: [Fixing WordPress](https://wordpress.org/support/forum/how-to-and-troubleshooting/)
   
   In reply to: [remove mailchipm popup](https://wordpress.org/support/topic/remove-mailchipm-popup/)
 *  [codismo](https://wordpress.org/support/users/codismo/)
 * (@codismo)
 * [9 years, 1 month ago](https://wordpress.org/support/topic/remove-mailchipm-popup/#post-9124941)
 * The popup is not coming from the plugin, it’s coming from Mailchimp itself. Check
   the “Subscriber pop-up” settings on the MailChimp control panel.

Viewing 15 replies - 1 through 15 (of 77 total)

1 [2](https://wordpress.org/support/users/codismo/replies/page/2/?output_format=md)
[3](https://wordpress.org/support/users/codismo/replies/page/3/?output_format=md)
[4](https://wordpress.org/support/users/codismo/replies/page/4/?output_format=md)
[5](https://wordpress.org/support/users/codismo/replies/page/5/?output_format=md)
[6](https://wordpress.org/support/users/codismo/replies/page/6/?output_format=md)
[→](https://wordpress.org/support/users/codismo/replies/page/2/?output_format=md)