Mrinal Roy
Forum Replies Created
-
Forum: Plugins
In reply to: [Category Sticky Post] Does not work anymoreHi Hai,
The plugin works fine with WordPress default themes. Unfortunately, we can not provide specific support for another theme that’s causing the issue. Please let us know if it worked after trying @iclysdale solution.
Cheers.
Forum: Plugins
In reply to: [Category Sticky Post] a few sugestionsHi Pawel,
1) I’ll look into that issue.
2) Please share your website URL, the border can be removed using simple CSS.
Cheers.
Forum: Plugins
In reply to: [Subtitles] Subtitles don’t show up at pagesHi Marc,
Glad that you found a way to resolve it.
The OceanWP file that I have mentioned above can be overridden using a child theme, having same file/folder structure. You can’t override that file’s code using functions.
Thanks.
Forum: Plugins
In reply to: [Subtitles] Subtitles don’t show up at pagesHi there,
Right now, I can see the OceanWP theme uses different title call for single post and page, single page different than the standard WordPress, this is why Subtitles do not work there, see: https://themes.svn.www.ads-software.com/oceanwp/1.5.5/partials/page-header.php
This line:
<<?php echo esc_attr( $heading ); ?> class="page-header-title clr"<?php oceanwp_schema_markup( 'headline' ); ?>><?php echo wp_kses_post( oceanwp_title() ); ?></<?php echo esc_attr( $heading ); ?>>
I think you should use Custom Template tags for the page. Afte the above line.
https://github.com/wecobble/Subtitles#using-template-tagsHope this helps.
Cheers.
Forum: Plugins
In reply to: [Subtitles] _subtitle field not showing in CSV pluginHi Harman,
I haven’t tested Subtitles with the plugin that you mentioned above. I can confirm our plugin works fine with this: https://www.ads-software.com/plugins/wp-all-import/.
Cheers.
Forum: Plugins
In reply to: [Subtitles] Conflict with WooCommerce Product SubtitleHi there,
As you are using another plugin for the products subtitle, you should consider disabling this Subtitles plugin for the product post type. How to do this? Please read and apply hook as described in the documentation: https://github.com/wecobble/subtitles#removing-default-support-from-posts-and-pages
Cheers.
Forum: Plugins
In reply to: [Subtitles] Space BetweenHi there,
Please use this via Customize > CSS:
.archive span.entry-subtitle { margin-top: 20px; }
Cheers.
Forum: Plugins
In reply to: [Subtitles] Separate $title and $subtitleHi there,
Currently I am seeing the SubTitle is only shown in top with the Title, in no other places it’s showing.
See screenshots: https://cloudup.com/c4b4bvVvGon and https://cloudup.com/cJ9hCi39vcJ
If this is your concern then please do not add subtitle to that post, it won’t show.
In other way, if you want to keep the Subtitle but don’t want to show in Single Post view then, please use following CSS to remove it.
.single.postid-13117 .entry-subtitle { display: none; }
Cheers.
Forum: Plugins
In reply to: [Subtitles] Problem with pluginHi there,
This means your theme isn’t compatible with our plugin. Please check this from our official documentation.
To resolve this you two options.
1) Modify the theme using Child theme to meet the requirements of standard WordPress coding.
or
2) Creating a child theme, then Removing Default Support from Posts and Pages and Using Template Tags where it’s neccessary to show.
Hope this helps, Cheers!
Forum: Plugins
In reply to: [Subtitles] How to change font for subtitles?Hi there,
Thanks for the posting.
Please use the following CSS codes to play with Subtitles fonts.
span.entry-subtitle { font-family: "Times New Roman", Times, serif; font-size: 24px; font-weight: 800; }
Hope this helps.
Cheers.
Forum: Plugins
In reply to: [Subtitles] Disable Subtitles in search viewsHi there,
Thanks for posting this thread.
Please have a look to this. You need to use,
if ( is_search() )
to disable in search views.Hope this helps.
Cheers.
Forum: Plugins
In reply to: [Subtitles] How to move the SubtitlesHi @loopy8 and nicoleamanda,
Thanks for the thread.
Both of you’d need to add template tags of Subtitles to your theme using a child theme, please read the Using Template Tags topic on our official documentation.
Hope this helps.
Cheers.
Forum: Plugins
In reply to: [Single Post Message] Styling optionsHi Mike,
Glad that you did it yourself.
Cheers.
Forum: Plugins
In reply to: [Single Post Message] Styling optionsHi Mike,
Yes, you can just add one more property to both CSS rules above.
border-radius: 5px;
Hope this helps.
Forum: Plugins
In reply to: [Subtitles] Add space between heading, subtitle and authorHi there,
Thanks for your thread.
Yes, really possible.
Please use the following CSS codes via Customize > CSS.
span.entry-subtitle { margin: 10px 0; }
Hope this helps, Cheers!
– Mrinal