Mrinal Roy
Forum Replies Created
-
Forum: Plugins
In reply to: [Single Post Message] Styling optionsHi Mike,
Extremely sorry for being late here.
As styles are getting added inline to override them we need to use !important rule. So, please use CSS like the following:
#single-post-message-preview { background-color: #fcf8e3 !important; border: 1px solid #fbeed5 !important; color: #ff0000 !important; font-family: 'Times New Roman', Sans-serif !important; font-size: 14px !important; } .single-post-message { background-color: #fcf8e3 !important; border: 1px solid #fbeed5 !important; color: #ff0000 !important; font-family: 'Times New Roman', Sans-serif !important; font-size: 14px !important; }
Hope this helps.
Cheers!
– Mrinal
Forum: Plugins
In reply to: [Single Post Message] Styling optionsHi Mike,
Thanks for your kind words and using our plugin.
It’s definitely possible to style the message using Custom CSS codes. Would you mind to share your URL, please?
By the way, Tom isn’t maintaining the plugin anymore, please check this announce.
Cheers.
Forum: Plugins
In reply to: [Subtitles] Adding subtitles to category pagesHi there,
You are welcome.
1) Category Pages: By default, subtitles appear on most views throughout a site. This includes single post views, single page views, archive views, and search results pages. Category means an archive in general WordPress theme. If Subtitles are not showing in Categorie Archives then you may need to share your website URL here, so I can check and provide best suggestion.
2) See this for Adding Subtitles Support into Custom Post Types.
Hope these help.
Cheers!
Forum: Plugins
In reply to: [Subtitles] Subtitles corrupting display of exceprtsHi Stephanie,
This can be a conflict of plugin vs theme or plugin vs plugin, see this as it’s exactly same as your issue. I’d suggest you to, turn off automatic subtitles and use template tags in your theme (Use Child Theme) to call subtitles in right place without weird issues.
Hope this helps.
Forum: Plugins
In reply to: [Subtitles] Custom Post TypeHi there,
If the slug is
articles
then please use the following:add_post_type_support in a function hooked to init, for example: function theme_slug_add_subtitles_support() { add_post_type_support( 'articles', 'subtitles' ); } add_action( 'init', 'theme_slug_add_subtitles_support' );
Note: Put the above codes into your theme’s functions.php file or a standalone file in your wp-content/mu-plugins directory.
Hope this helps.
Forum: Plugins
In reply to: [Subtitles] Integration with Yoast Custom AttributesHi Chad,
We have used
span
tag for subtitles, for Yoast SEO subtitles need to have semantic header tag h2 or h3, see here.To change our default
span
to header tag, please use the following codes viafunctions.php
file:function subtitle_markup_mods( $markup ) { $markup[ 'before' ] = '<h2 class="custom-subtitle-class">'; $markup[ 'after' ] = '</h2>'; return $markup; } add_filter( 'subtitle_markup', 'subtitle_markup_mods' );
Let me know if you need more help on this.
Hi there,
Thanks for your thread.
I found you have deactivated that plugin. Would you mind reactivate and show me again, so I can help you to sort this out?
Thanks again.
Forum: Plugins
In reply to: [Subtitles] Subtitle SizeHi there,
Thanks for your post.
To do so, please add the following codes to them:
span.entry-subtitle { font-size: 0.799999999999995em; }
Which will increase current font size to 1.5x.
If you don’t have an option via theme or not using any plugin or child theme, you can find a plugin for here Custom CSS Plugins or create a child theme.
Hope this helps, Cheers!
Forum: Plugins
In reply to: [Kanban Boards for WordPress] 404 errorSorry, I meant we would appreciate a good review, not that we expect it.
Forum: Plugins
In reply to: [Kanban Boards for WordPress] 404 errorHi Illias,
Glad to know that it worked fine for you. We expect a good review from you about our plugin.
Forum: Plugins
In reply to: [Kanban Boards for WordPress] Fatal error on plugin installationMany thanks for the info.
Have a nice day, Cheers!
Forum: Plugins
In reply to: [Kanban Boards for WordPress] Fatal error on plugin installationGlad to know that. Kudos to you.
Let us know how you’ve fixed this, so other can have a help if they face same.
Forum: Reviews
In reply to: [Kanban Boards for WordPress] Good plugin, good support from authorsThanks for the review. Much Appreciated.
Have a nice day, Cheers!
Forum: Plugins
In reply to: [Kanban Boards for WordPress] Fatal error on plugin installationHi Nicole,
Sorry for the inconvenience.
I think it’s an issue with your PHP version or conflict with other plugin. Would you mind to check if you’re using PHP 5.6 or greater? and try activate the plugin after deactivating other plugins.
Hi,
We made few small adjustments & updated the plugin to 1.1.1 version, this resolves the ordering issue. Please update.
Thanks!