Help Center
  • Welcome
  • Setka Editor
    • Getting started
    • Drag-and-Drop & Multiselect
    • Text editing
    • Grids and Layout
    • Images
      • Image Editor
    • Background images
    • Icons
    • Animations
    • Lists
    • Tables
    • Dividers
    • Footnotes
    • Hotspots
    • Enhance Symbols
    • Post templates
    • Buttons
    • Comments and collaboration
    • Embeds
    • Hyphenation
    • Responsive layout for mobile screens
    • Custom CSS
    • Custom JS plugins
  • Setka Content Design System Manager
    • Creating and editing styles
    • Text formats and fonts
    • Styles display for mobile mevices
    • Text and background colors
    • Dividers
    • Icons
    • Components – reusable design elements
      • Creating Components with HTML and CSS
        • CSS in components
        • Component examples
    • Configuring layout grids
    • Editing default elements with Custom CSS
    • Adding team members
  • Account Settings
    • Account settings basics
    • Access rights
    • Billing and subscription
  • Preserve your Setka Editor content after the service shutdown
  • Integrations
    • Setka and WordPress
      • Installing Setka Editor WordPress plugin
      • Launching Setka Editor on the post creation page
      • Setka Editor and WordPress compatibility
      • Setka Editor compatibility with the most popular WordPress plugins
      • Inserting graphs, charts, or diagrams into a post
      • Setka Editor and Google AMP
      • Inserting adverts into a post
      • srcset — the attribute for image size optimization
      • Page load speed optimization settings
        • Autoptimize plugin configuration
      • WordPress troubleshooting: known Issues and how to fix them
      • Preserve your Setka Editor content after the service shutdown
    • Setka and Drupal
      • Setka for Drupal — compatibility, and features
      • Installing Setka modules for Drupal
      • Setka content on AMP pages in Drupal
    • Setka and Magento
      • Installing Magento 2 extension
        • Setka Editor configuration page
      • Preserve your Setka Editor content after the service shutdown
    • Setka and HubSpot
      • Setka Editor and HubSpot Blogs
      • Setka Editor and HubSpot Landing Pages
      • Semi-gated content with a HubSpot form
      • Preserve your Setka Editor content after the service shutdown
    • Setka and Bitrix
      • Preserve your Setka Editor content after the service shutdown
    • Setka and Ghost
      • Copying and pasting posts from Setka to Ghost
    • Setka and SharePoint Online
      • Installing Setka Editor application into SharePoint Online
    • Setka and Zapier
      • Setka and Webflow
        • Exporting new posts
        • Updating exported posts
      • Setka and Shopify
    • Setka and Integromat
    • Content Cloud
  • API
    • Setka Content Cloud API
    • Webhooks
    • API for Custom CMS Integration
      • Introduction to custom integration
      • Integration with Content Design System Manager (CDSM)
        • Initial sync — receiving Setka Editor files to connect them to your CMS
        • Storing and processing Setka Editor files
        • Connecting Setka Editor files to the pages of your site
        • Receiving style updates from the Style Manager and new editor versions
      • Setka Post Editor initialization (JavaScript)
      • Integration with Style Manager (API v1, previous version)
      • Preserve your Setka Editor content after the service shutdown
    • Custom Components API
  • VIDEO TUTORIALS
    • Setka Editor Video Tutorials
  • Components Library
    • Components Library
    • Guide: Ideas for Using Setka Editor’s Components to Improve Content Design
  • Content Experience Design Best Practices
    • Guide To Designing a Great Content Experience
Powered by GitBook
On this page
  • Does installing the Setka Editor plugin affect my previous posts in WordPress?
  • What happens to my posts' layout when the Setka Editor plugin is deactivated or deleted?
  • Do changes in a Setka Editor style influence my WordPress theme?
  • How does a WordPress theme influence Setka Editor styles?
  • Why Text and Visual tabs turn inactive?
  • How to return to Text and Visual editors?
  • Is Setka Editor compatible with Gutenberg?
  • How to set a Post Excerpt?
  • Excerpt meta box for quick summaries
  • How to add an excerpt?

Was this helpful?

  1. Integrations
  2. Setka and WordPress

Setka Editor and WordPress compatibility

About Setka Editor and WordPress compatibility.

Does installing the Setka Editor plugin affect my previous posts in WordPress?

No.

Installing the Setka Editor plugin does not affect posts you have created in the past. If you would like to change your previous posts' look and feel, we advise you to re-create them using Setka Editor rather than trying to edit the original.

Old posts will display correctly in Setka Editor unless they have complicated layouts or were built using custom shortcodes.

What happens to my posts' layout when the Setka Editor plugin is deactivated or deleted?

When you deactivate or delete the Setka Editor plugin, you also remove CSS files used on the page. Therefore your posts lose their styles.

However, you can keep your Styles even after the plugin is deactivated.

Go to Admin panel > Plugins > Installed Plugins > Setka Editor > Settings > Uninstall, copy the code, and paste it to the functions.php file of your active WordPress theme.

The code below is only an example, do not copy it. Take a respective code from your settings, for it contains valid links to your .css and .js files.

function your_theme_slug_scripts() {
 wp_enqueue_style( 'setka-editor-theme-resources', 'https://ceditor.setka.io/clients/98eEMwnLM-3QgZUZjVnVoOZ5oG8vMSc3/css/559_account_1_115.min.css', array(), '1.0.0' );
 wp_enqueue_script( 'setka-editor-theme-plugins', 'https://ceditor.setka.io/clients/js_plugins/9ed14c68f3cb06393efee65ceb7c97ea/public.js', array( 'jquery' ), '1.0.0', true );
}
add_action( 'wp_enqueue_scripts', 'your_theme_slug_scripts' );

This code is an instruction for WordPress to save the CSS files of your Styles. From now on, if you delete or deactivate the plugin, the posts created in Setka Editor will not lose their styles.

Do changes in a Setka Editor style influence my WordPress theme?

Setka Editor styles are created to format posts and are independent of WordPress themes, so they do not influence each other.

How does a WordPress theme influence Setka Editor styles?

Each WordPress theme has its own CSS settings with CSS classes in it. Setka Editor partially overwrites theme settings using CSS reset to use custom styles for your posts created in the Content Design System Manager (CDSM).

A WordPress theme may also determine the width available for your post, or it may be adaptive and have no fixed width. This influences the final appearance of the post for each reader depending on the width of their screen. To check the posts' layout at various screen widths, click the View Post button in the top left corner of Setka Editor.

Why Text and Visual tabs turn inactive?

Once the Setka Editor plugin has been installed, you can still select other editors to add new posts.

However, when using the Setka Editor tab, other editors' tabs will deactivate. Posts created in Setka Post Editor cannot be edited by other editors.

Deactivation of default WordPress editors is a necessary measure to prevent conflicts with Setka Editor. Posts created in Setka Editor may contain a complex design that is not compatible with other post-editors or page-builders.

How to return to Text and Visual editors?

If you have switched to Setka Editor by mistake and Visual, and Text tabs are not active anymore, please do the following:

  1. Open developer tools (⌘+⌥+I, CTRL+SHIFT+I, or F12).

  2. Go to the Console tab.

  3. Enter the command:

setkaEditorPlugin.switchToDefaultEditor();

And hit the Enter key.

In the editing history, you will be able to revoke your post to a state before it was switched from WordPress built-in editor to Setka Editor.

Is Setka Editor compatible with Gutenberg?

Gutenberg — is a block editor and a new post creation page included in WordPress 5.0 release. You will be able to add Setka Editor as a block amidst all other Gutenberg blocks. Setka Editor will remain a 100% WYSIWYG editor with all its functionality (grids, backgrounds, animation, etc.) We've developed a new plugin version compatible both with Gutenberg and earlier WordPress post creation page functionality.

How to set a Post Excerpt?

The way your posts are displayed depends on the WordPress theme settings: posts on the front page can be shown as a full-length article or as a short preview. Sometimes it is required to cut a long article manually and provide a “read more...” link to the rest of a post.

As the <--more--> tag is not supported by Setka Editor, we recommend using an Excerpt meta box.

Excerpt meta box for quick summaries

Find Excerpt meta box on Posts > Add new page under the post edit area:

If it is hidden by default, activate it with a checkbox:

  • Go to Posts > Add new.

  • Click on Screen Options at the pull-down menu on the top.

  • Check the Excerpt box.

Excerpt meta box is theme dependent and can be useless with some WordPress themes.

How to add an excerpt?

Add a short fragment of text or post summary (usually a couple of sentences) to the excerpt field. You can use HTML-tags – <b>, <i>, insert an image with <img src=”...”, etc.

For a read more... link paste this code:

<a href="yourdomain.name/link_to_the_entire_post"> Read more...</a>
PreviousLaunching Setka Editor on the post creation pageNextSetka Editor compatibility with the most popular WordPress plugins

Last updated 1 year ago

Was this helpful?

Matches in Setka Editor and WordPress themes class names are almost impossible, so the chances of style conflicts are minimal. However, if you encountered style conflict, please contact our or your WordPress specialist.

support team
Setka Editor plugin tab
Screenshot of Excerpt metabox in WordPress themes
Screenshot of the Excerpt activation in WordPress themes