fesomia
Forum Replies Created
-
Forum: Plugins
In reply to: [FSM Custom Featured Image Caption] ‘Save Menu’ causes errorsNot errors, just notices, your wordpress installation must be in debug mode. Added an extra check to take care of it, update the plugin to the last version (1.13) to get rid of the messages.
Thanks for reporting.
- This reply was modified 6 years, 9 months ago by fesomia.
Forum: Plugins
In reply to: [FSM Custom Featured Image Caption] Can’t Get it To Work on Divi ThemeAfter being able to examine a Divi theme, seems that it does not use the default wordpress function to show the featured image nor does provide a way to hook into the one it uses. So you’ll have to edit the theme code (or better make a child and edit the relevant files) to make it work
i.e. in the single.php file of your theme you can find something like
print_thumbnail( $thumb, $thumbnail["use_timthumb"], $titletext, $width, $height );
there are to options, one is to simply replace that function with the wordpress default one:
the_post_thumbnail();
the other is to use the functions provided by our plugin to get the caption text:
print_thumbnail( $thumb, $thumbnail["use_timthumb"], $titletext, $width, $height ); get_featured_image_caption(array('tag'=>'p'));
In most situations, you’ll prefer to use the second one, as it allows you to better customize how the caption is shown while maintaing the original divi configuration for the image (size, classes, etc.)
Hope that helped you
Forum: Plugins
In reply to: [FSM Custom Featured Image Caption] Can’t Get it To Work on Divi ThemeSorry for the delay, looks like www.ads-software.com hasn’t notified us. You can be sure we’ll look into the problem.
Great, it works now. Thanks a lot for prompt response and fix.
Thanks for looking at it.
This page has the problem: https://feso.me/2ySKdbE (print icon on the right to launch pdf friendly)
Forum: Reviews
In reply to: [FSM Custom Featured Image Caption] Very useful!We are glad that you find the plugin useful. About the custom CSS features, stay tunned because they are definitively in our closest planning.
And thank you for your suggestion about credited source, we’ll keep it in mind, although we will have to study how vertical text can affect accessibility.