seothemes
Forum Replies Created
-
Forum: Plugins
In reply to: [SEO Slider] Images not rotatingHi @ericaski
I had a look at your site and the images are loading correctly.
Did you manage to solve this issue?
Forum: Plugins
In reply to: [SEO Slider] Adding submit form in SEO SliderI have just added a new filter which allows you to remove the WordPress content filters.
Hi @hyilmaz
Can you please try re-saving the plugin settings from Settings > Icon Widget?
Forum: Plugins
In reply to: [Block Areas] This is an Important FeatureThe Gutenberg plugin has wp_template_part which is essentially the same concept
Forum: Plugins
In reply to: [Icon Widget] Widget TitleHi @chriscobb
A quick fix would be to add some non breaking space special characters to the title. Copy and paste the code snippet below:
- This reply was modified 5 years, 1 month ago by seothemes.
Forum: Plugins
In reply to: [Icon Widget] Convert it to Gutenberg BlockThere are plans to add an icon block to core so this probably wont be added to the plugin.
Forum: Reviews
In reply to: [SEO Slider] Great, clean and effective slider@mafreprezent Thank you so much! That’s the goal, fast and simple without the bloat.
Forum: Reviews
In reply to: [SEO Slider] Does what it’s supposed to do@stevejohnson Thank you for the review! Much appreciated.
It is already possible to reorder slides within a slider using the order arrow buttons to the bottom left of each slide.
If you have any other suggestions please let me know, I’ll be happy to consider adding your ideas.
Forum: Plugins
In reply to: [SEO Slider] Captions on sliders@cheryls I just released an update (1.0.7) which makes this possible with a filter. Add the following code snippet to your themes functions.php file:
add_filter( 'seo_slider_image_output', function ( $img_html, $img_id ) { return sprintf( '%s<figcaption>%s</figcaption>', $img_html, get_the_excerpt( $img_id ) ); }, 10, 2 );
Forum: Plugins
In reply to: [SEO Slider] Image sizing@cheryls images will resize to fill the entire space so that there are no gaps.
A workaround for this is to add some additional media queries with CSS to change the height of the slider at multiple breakpoints instead of the default mobile/desktop.
Forum: Plugins
In reply to: [SEO Slider] Reordering slides@stevejohnson as @cheryls mentioned, this is already possible using the arrow buttons to the bottom left of each slide.
Forum: Plugins
In reply to: [Icon Widget] Can the icon be clickable?This has been added in version 1.2.1
Forum: Plugins
In reply to: [Icon Widget] Adding new iconsFont Awesome 5 has been added
Forum: Plugins
In reply to: [Icon Widget] Convert it to Gutenberg BlockIt is possible to use the shortcode in a block. E.g:
[icon_widget classes="icon-widget" title="Icon Widget" content="Add a short description" icon="fa-star" size="2x" align="center" color="#fff" bg="#333" padding="30" radius="30" heading="h4" break="<br>"]
Forum: Plugins
In reply to: [Icon Widget] Convert it to Gutenberg Block@despachotres yes, that is planned for the next update. Sorry I can’t give an exact timeframe for this.