• Resolved starapple

    (@starapple)


    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.
    https://media.abengnews.com/

    Thanks for marking UPM available and for the update but a little finetuning is needed.

    https://www.ads-software.com/plugins/universal-post-manager/

Viewing 15 replies - 1 through 15 (of 15 total)
  • Plugin Author Tomdever

    (@tomdever)

    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

    (@tomdever)

    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

    (@starapple)

    Thanks Tom. It’s fixed. Have you taken over maintenance of the plugin?

    Thread Starter starapple

    (@starapple)

    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

    (@tomdever)

    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

    (@starapple)

    Cool.

    Thread Starter starapple

    (@starapple)

    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

    (@tomdever)

    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

    (@starapple)

    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

    (@tomdever)

    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

    (@starapple)

    I’ll try it in that site. I had placed the CSS in a file in another site using UPM: https://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

    (@tomdever)

    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

    (@starapple)

    Ok. It worked in that carton/style.css.

    I’ll try it in the main style.css of the other site.

    Thread Starter starapple

    (@starapple)

    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

    (@tomdever)

    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.