Title: Update breaks site/theme
Last modified: August 22, 2016

---

# Update breaks site/theme

 *  Resolved [starapple](https://wordpress.org/support/users/starapple/)
 * (@starapple)
 * [11 years, 10 months ago](https://wordpress.org/support/topic/update-breaks-sitetheme/)
 * I just updated the plugin and immediately all posts were broken. No paragraphs
   breaks are on the homepage nor on the full posts. However, the breaks are preserved
   in the database because when the plugin is deactivated posts return to normal
   and while it is activated, documents that are generated by the saving manager
   print out with all paragraphs.
 * The fault also causes the complete post to display on the homepage despite the
   fact that the themes display only excerpts on the front page.
    [http://media.abengnews.com/](http://media.abengnews.com/)
 * Thanks for marking UPM available and for the update but a little finetuning is
   needed.
 * [https://wordpress.org/plugins/universal-post-manager/](https://wordpress.org/plugins/universal-post-manager/)

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

 *  Plugin Author [Tomdever](https://wordpress.org/support/users/tomdever/)
 * (@tomdever)
 * [11 years, 10 months ago](https://wordpress.org/support/topic/update-breaks-sitetheme/#post-5219750)
 * Hi,
    I’ve tested this plugin about a week with many themes and plugins. Please
   send me admin access to your dashboard to allow me check the issue. My email 
   is support[at]gvectors.com
 *  Plugin Author [Tomdever](https://wordpress.org/support/users/tomdever/)
 * (@tomdever)
 * [11 years, 10 months ago](https://wordpress.org/support/topic/update-breaks-sitetheme/#post-5219755)
 * Ok, please ignore my last reply, I just fixed all issues related to broken paragraphs
   and post excerpts and released a new UPM version. please download and update 
   your UPM 1.2.0 to UPM 1.2.1
 *  Thread Starter [starapple](https://wordpress.org/support/users/starapple/)
 * (@starapple)
 * [11 years, 10 months ago](https://wordpress.org/support/topic/update-breaks-sitetheme/#post-5219781)
 * Thanks Tom. It’s fixed. Have you taken over maintenance of the plugin?
 *  Thread Starter [starapple](https://wordpress.org/support/users/starapple/)
 * (@starapple)
 * [11 years, 10 months ago](https://wordpress.org/support/topic/update-breaks-sitetheme/#post-5219782)
 * Thanks Tom. It’s fixed. Nice that you’ve removed those features now in things
   like Jetpack. Great plugin. Unique in its features.
 *  Plugin Author [Tomdever](https://wordpress.org/support/users/tomdever/)
 * (@tomdever)
 * [11 years, 10 months ago](https://wordpress.org/support/topic/update-breaks-sitetheme/#post-5219783)
 * Great!
    Yes, I’ve changed the current UPM as a “Save & Print” Edition. I’ve removed
   all other features. For those features I’m going to release another “Universal
   Post Manager – HTML and Phrase Filter” edition.
 *  Thread Starter [starapple](https://wordpress.org/support/users/starapple/)
 * (@starapple)
 * [11 years, 10 months ago](https://wordpress.org/support/topic/update-breaks-sitetheme/#post-5219787)
 * Cool.
 *  Thread Starter [starapple](https://wordpress.org/support/users/starapple/)
 * (@starapple)
 * [11 years, 10 months ago](https://wordpress.org/support/topic/update-breaks-sitetheme/#post-5219791)
 * BTW, there’s one other issue that I’ve noticed since the previous version. Even
   though I set “Appearance type of saving buttons and strings” buttons to horizontal
   right, they always show vertically.
 *  Plugin Author [Tomdever](https://wordpress.org/support/users/tomdever/)
 * (@tomdever)
 * [11 years, 10 months ago](https://wordpress.org/support/topic/update-breaks-sitetheme/#post-5219808)
 * Ok, I see,
    That’s not a UPM issue, this comes from your Theme style.css
 * To fix this issue you should find this CSS code
 *     ```
       .image-anchor {
           border: 0 none !important;
           display: block;
       }
       ```
   
 * And replace to this:
 *     ```
       .image-anchor {
           border: 0 none !important;
           display: inline;
       }
       ```
   
 * Then do CTRL+F5 on front-ed to reload the style.css
 *  Thread Starter [starapple](https://wordpress.org/support/users/starapple/)
 * (@starapple)
 * [11 years, 10 months ago](https://wordpress.org/support/topic/update-breaks-sitetheme/#post-5219812)
 * Tried that but no luck. There isn’t any such code in my themes’ css. Scrolled
   through in WP theme editor and copied and pasted in a text editor and searched.
 * I copied the lines into the theme’s custom CSS but it had no effect.
 *  Plugin Author [Tomdever](https://wordpress.org/support/users/tomdever/)
 * (@tomdever)
 * [11 years, 10 months ago](https://wordpress.org/support/topic/update-breaks-sitetheme/#post-5219839)
 * Ah, sorry, that’s not the root style.css
    I’m talking about this css file:
 * `/wp-content/themes/carton/style.css`
 * You should make the changes in this file.
 * However I think if you put such a css code in the main root css it can also work:
 *     ```
       .image-anchor {
           display: inline!important;
       }
       ```
   
 *  Thread Starter [starapple](https://wordpress.org/support/users/starapple/)
 * (@starapple)
 * [11 years, 10 months ago](https://wordpress.org/support/topic/update-breaks-sitetheme/#post-5219853)
 * I’ll try it in that site. I had placed the CSS in a file in another site using
   UPM: [http://www.abengnews.com](http://www.abengnews.com) because I had the same
   problem there. Maybe the UPM CSS would be a better place to format its settings.
 *  Plugin Author [Tomdever](https://wordpress.org/support/users/tomdever/)
 * (@tomdever)
 * [11 years, 10 months ago](https://wordpress.org/support/topic/update-breaks-sitetheme/#post-5219854)
 * I see the same CSS issue on this site as well:
 * /wp-content/themes/magazine-basic/style.css
 *     ```
       a > img {
           border: 0 none !important;
           display: block;
       }
       ```
   
 * Should be:
 *     ```
       a > img {
           border: 0 none !important;
           display: inline;
       }
       ```
   
 * I’ll add some CSS in UPM next version to not allow affect saving buttons by such
   unintuitive CSS codes
 *  Thread Starter [starapple](https://wordpress.org/support/users/starapple/)
 * (@starapple)
 * [11 years, 10 months ago](https://wordpress.org/support/topic/update-breaks-sitetheme/#post-5219856)
 * Ok. It worked in that carton/style.css.
 * I’ll try it in the main style.css of the other site.
 *  Thread Starter [starapple](https://wordpress.org/support/users/starapple/)
 * (@starapple)
 * [11 years, 10 months ago](https://wordpress.org/support/topic/update-breaks-sitetheme/#post-5219859)
 * Great! I added the line to the custom css and it worked like a charm. Thanks 
   for helping out. I don’t know if the WP devs have a standard for CSS. Maybe the
   should have some basic guidelines for the core.
 *  Plugin Author [Tomdever](https://wordpress.org/support/users/tomdever/)
 * (@tomdever)
 * [11 years, 10 months ago](https://wordpress.org/support/topic/update-breaks-sitetheme/#post-5219860)
 * Great!
    Good to hear that)

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

The topic ‘Update breaks site/theme’ is closed to new replies.

 * ![](https://s.w.org/plugins/geopattern-icon/universal-post-manager_b5ceda.svg)
 * [Universal Post Manager](https://wordpress.org/plugins/universal-post-manager/)
 * [Frequently Asked Questions](https://wordpress.org/plugins/universal-post-manager/#faq)
 * [Support Threads](https://wordpress.org/support/plugin/universal-post-manager/)
 * [Active Topics](https://wordpress.org/support/plugin/universal-post-manager/active/)
 * [Unresolved Topics](https://wordpress.org/support/plugin/universal-post-manager/unresolved/)
 * [Reviews](https://wordpress.org/support/plugin/universal-post-manager/reviews/)

 * 15 replies
 * 2 participants
 * Last reply from: [Tomdever](https://wordpress.org/support/users/tomdever/)
 * Last activity: [11 years, 10 months ago](https://wordpress.org/support/topic/update-breaks-sitetheme/#post-5219860)
 * Status: resolved