fesomia
Forum Replies Created
-
Forum: Reviews
In reply to: [FSM Custom Featured Image Caption] Not workingSorry it didn’t work for you, though you could have asked for assistance in the support forum before rating it… We’re always glad to help or give an explanation as to why it may not work in your installation
Forum: Plugins
In reply to: [FSM Custom Featured Image Caption] Divi compatibilityCurrently there are no plans to make it work with the divi page builder, sorry
Hi David
No sorry, right now the plugin has no integration with the featured image block. Maybe in the future we will look into this
Regards
Forum: Plugins
In reply to: [FSM Custom Featured Image Caption] plugin issue with kadence theme!Hi @faizbloch11
Strange, maybe some categories or some posts use a different template and that’s why the shortcode caption doesn’t appear there?As for the url, unfortunately I have not found any example in your site were that issue happens, and nothing in the plugin code is supposed to do that to the link. It looks like maybe you have another plugin or a javascript that tries to convert text to links or something like that? Have you tried if it does the same with a link like this one?:
<a href="https://www.google.com" target="_blank">test</a>
- This reply was modified 2 years, 10 months ago by fesomia.
Forum: Plugins
In reply to: [FSM Custom Featured Image Caption] Move the caption textYep @bjovaar, try adding
padding-right: 5px;
for example. Hope this helps ??Forum: Plugins
In reply to: [FSM Custom Featured Image Caption] Move the caption textHi @bjovaar
Just use text-align:centerForum: Plugins
In reply to: [FSM Custom Featured Image Caption] Not working with GenesisHi lkdsub0
Probably your theme does not use the default wordpress function to show featured images and thus, the plugin never gets called. Read the “for developers” section of the documentation for alternate ways to show the caption.
Hope that helps
Forum: Plugins
In reply to: [FSM Backend Category Organizer] The default category is not selectedWe can’t reproduce it, the default category works fine in our tests. Can you show us a screenshot or video with the issue? What do you mean with “the link next to the selected category”?
Forum: Plugins
In reply to: [FSM Custom Featured Image Caption] Moving the Feature CaptionHi Andy
Unfortunately your theme shows the featured image as a background rather than an object, so the default way to add the caption doesn’t work here. You can, however, show the caption within your theme using the function
the_FSM_featured_image_caption()
; Read the “for developers” section of the plugin description for more info.You’ll probably have to edit a template or look if your theme has a hook where you can attach an action to show it.
Hope that helps
Forum: Plugins
In reply to: [FSM Backend Category Organizer] The default category is not selectedHi @webfantastic, thanks for trying our plugin. We are swamped these weeks, but we’ll take a look at your issue, and we’ll keep you informed. Cheers! ??
Hi @webfantastic, thanks for trying our plugin. We are swamped these weeks, but we’ll take a look at your issue, and we’ll keep you informed. Cheers! ??
Forum: Plugins
In reply to: [FSM Custom Featured Image Caption] Conflict with Google Web Stories PluginYou can disable featured image caption for this post type so it does not interfere with it. In the functions.php file of your theme, add the following code:
//disables custom featured image caption for web stories posts add_filter( 'FSMFIC_post_type', 'disable_fic_for_custom_posttype', 10); function disable_fic_for_custom_posttype( $post_type ){ if ($post_type == 'web-story') return false; }
Now the cover image should be saved without problem
Forum: Plugins
In reply to: [FSM Custom Featured Image Caption] User Input TextNo, sorry, generating new images with the text integrated in them goes beyond the scope of the plugin.
Forum: Plugins
In reply to: [FSM Custom Featured Image Caption] Help me with CSSHi @elo1968! Yes, I see that the caption does not appear on both desktop and mobile, I suppose it’s the same problem.
In any case, it doesn’t look like a CSS problem; Your theme doesn’t seem to use the default WordPress method to show the featured images, so you may need to edit the templates to include the the_FSM_featured_image_caption() function. You can read more about it in the “For developers” section on the plugin details page.
If you need technical support with this, maybe you can talk with your theme developer. If you are interested, we also provide commercial support at https://wp.fesomia.cat/en/contact/. Thanks!
Forum: Plugins
In reply to: [FSM Custom Featured Image Caption] Caption not showingHi @sibikasilwal, thanks for trying our plugin. It seems that your theme is not using the default WordPress method to show featured images, and thus, the plugin has no effect.
The solution would be to edit your theme templates, so they use the default method or add a call to the_FSM_featured_image_caption() function under the featured image code to show the caption. You can read more about it in the “For developers” section on the plugin details page.
If you need technical support with this point, you can talk with your theme developer. We also provide commercial support; if you are interested, please contact us at https://wp.fesomia.cat/en/contact/ ??