Tajam
Forum Replies Created
-
Hi,
Changing the default values in attributes is not enough. This will also affect existing blocks. For example, if you have added a block with default layout (Layout 1), and save it. And then modify the attributes code (change default layout to Layout 2), the existing block with Layout 1 will also change to Layout 2. We still haven’t found the best solution for this.
Implementing a search box and multiple categories are not easy, but they are on the list for future updates. We still don’t have enough free time to develop the features.
Forum: Plugins
In reply to: [Flex Posts - Widget and Gutenberg Block] Display author imageThe image should be beside the author name. I’ve tested with WordPress default themes. If it doesn’t work with your theme, you may need to add a custom style.
Forum: Plugins
In reply to: [Flex Posts - Widget and Gutenberg Block] Display author imageWe have added this feature in the latest update.
Hi, we have fixed this issue in the latest update.
Hi, thanks for your report.
We will check this issue and try to fix it.
Forum: Plugins
In reply to: [Flex Posts - Widget and Gutenberg Block] Display author imageHi, there is no feature to display author image. We will consider adding this in the next update.
Forum: Plugins
In reply to: [Flex Posts - Widget and Gutenberg Block] Get rid of ellipsisPlease try the code again with priority higher than 10, for example:
add_filter( 'excerpt_more', function( $more ) { return ''; }, 20 );
Forum: Plugins
In reply to: [Flex Posts - Widget and Gutenberg Block] Get rid of ellipsisDo you have a live url with this problem?
Sorry, this feature is not as easy as we thought, so we haven’t implemented this in the latest update.
Hi, the warning has been cleared with the latest update.
Forum: Plugins
In reply to: [Flex Posts - Widget and Gutenberg Block] Get rid of ellipsisHi, the ellipsis is from WordPress excerpt function. You can use
excerpt_more
filter to change it. Please try this code in functions.php of your theme/child theme:add_filter( 'excerpt_more', function( $more ) { return ''; } );
Hi,
We don’t include the style for pagination to keep it minimal, and some themes already have the style for it.
If your theme doesn’t have the style, you can add this sample css code to the Customizer:
.page-numbers { padding: 4px 10px; border: 1px solid #ddd; }
Forum: Plugins
In reply to: [Flex Posts - Widget and Gutenberg Block] automatic category selectionSorry, there is no feature like this in the plugin.
Hi, it’s still in development. Sorry if it takes so long, because I have other work, too.
Forum: Plugins
In reply to: [Flex Posts - Widget and Gutenberg Block] how to change date colorHi,
the meta section has an opacity of 0.5
you can increase the value to make it darker
please use this css code:.fp-post .fp-meta a { opacity: 1; }