Dominik Schilling
Forum Replies Created
-
The checkbox is only available for non-published posts and once a post was saved as a draft.
Forum: Plugins
In reply to: [Public Post Preview] Support of Custom Post TypeBy default all public post types are supported. Do you have a CPT that isn’t public but should still be previewable?
Forum: Plugins
In reply to: [Jetpack Without Promotions] Feature Request: Track # Ads BlockedHello @bftrick, thanks for your request.
The plugin disables the promotions before they even can be displayed. Therefore we can’t provide such functionality without changing how promotions are fundamentally removed.
Forum: Plugins
In reply to: [Public Post Preview] Post Preview not working on mobileIt’s working fine for me. Does it still happen with all plugins but Public Post Preview disabled and a default theme activated?
Forum: Plugins
In reply to: [Public Post Preview] Remove the nonce from the generated linkYou can retrieve the full link with
DS_Public_Post_Preview::get_preview_link( $post ). But you have to check first if public preview is actually enabled. You can do this with$enabled = in_array( $post->ID, get_option( 'public_post_preview', array() ), true );Forum: Plugins
In reply to: [Public Post Preview] Remove the nonce from the generated linkThat’s currently not possible. The random nonce is one of the main functionality of the plugin.
Forum: Plugins
In reply to: [Public Post Preview] Remove the nonce from the generated linkThere’s a filter
ppp_preview_linkin https://github.com/ocean90/public-post-preview/blob/2.7.0/public-post-preview.php#L281 which you can use to customize the preview link. But removing the nonce will break the preview becuase it’s a required argument.Forum: Plugins
In reply to: [Public Post Preview] How can I edit the preview link?There’s a filter
ppp_preview_linkin https://github.com/ocean90/public-post-preview/blob/2.7.0/public-post-preview.php#L281 which you can use to customize the preview link. Of course, you have to handle the redirections by yourself.Forum: Plugins
In reply to: [Public Post Preview] How can I edit the preview link?Hello @thenavigator321, what title do you want to add?
Forum: Plugins
In reply to: [Public Post Preview] Compatibility with GutenbergI just released an update which includes initial support for Gutenberg.
Please report any issues here or on GitHub at https://github.com/ocean90/public-post-preview/issues. Thank you!
Forum: Plugins
In reply to: [Public Post Preview] Compatibility with GutenbergYou can download the ZIP of the upcoming version with Gutenberg support: https://github.com/ocean90/public-post-preview/archive/gutenberg.zip
It’s still an aplha version but it should work.
Forum: Plugins
In reply to: [Public Post Preview] Compatibility with GutenbergThere will be a new version by end of this month with support for Gutenberg.
Forum: Plugins
In reply to: [Disable Privacy Tools] CommentformNo, the checkbox will be disabled in core by default with WordPress 4.9.8.
Forum: Plugins
In reply to: [Team List] Link User LogoHi @facinoroso, thanks!
You can customize the template by copying rplus-wp-team-list.php into your theme folder.
To add the link you have to replace the
wp_team_list()->get_avatar( $user )line with something like this:<?php printf( '<a href="%s">%s</a>', esc_url( $user->user_url ), wp_team_list()->get_avatar( $user ) ); ?>Forum: Plugins
In reply to: [Public Post Preview] Compatibility with GutenbergNo plans since there is no finalized API to extend the sidebar, yet.