Vova
Forum Replies Created
-
Forum: Plugins
In reply to: [Shortcodes Ultimate - Content Elements] Launch Lightbox on page load?Hi @vipmalawi,
This is already available in the Splash Screen shortcode. The shortcode is a part of the Pro version.
Forum: Reviews
In reply to: [Shortcodes Ultimate - Content Elements] Make the job now with WP 6.5.2Hi @peter94,
Iām taking security serious and have fixed the vulnerability the same day it was sent to me.
Forum: Plugins
In reply to: [Shortcodes Ultimate - Content Elements] Use as anchorThis is a common issue. Try this simple solution.
Forum: Plugins
In reply to: [Shortcodes Ultimate - Content Elements] Use as anchorHi @mstudioil,
probably, you don’t need a shortcode for this. Instead, you can use the
<a>tag with a name, like so:<a name="my-anchor"></a>and then link to it:
<a href="#my-anchor">Jump to my-anchor</a>Hi @meijin2k,
unfortunately, this isn’t possible with the current version of the Columns shortcode which is made using floats.
In the future I will make a new version of the shortcode using Flexbox and it will allow such alignment.
Forum: Plugins
In reply to: [Shortcodes Ultimate - Content Elements] Button with Link <a hrefHi @wrathyimp,
try adding the
urlattribute to your shortcode.Example:
[su_button url="/wp-content/PDF/Annual_2020.pdf" background="#004ab3" color="#fff"]Show[/su_button]Forum: Plugins
In reply to: [Shortcodes Ultimate - Content Elements] Can I insert Inline Tool-tip?Hi @banditsiix,
You can add a tooltip using the Tooltip shortcode.
Here’s an example code:
[su_tooltip title="title" text="..."]?[/su_tooltip]The editing screen:

The result:
Forum: Plugins
In reply to: [Shortcodes Ultimate - Content Elements] Shortcode not working properlyHi @ambitiousbaba,
update the plugin to version 5.12.5.
Hi @tackettz and @dan-isaksson,
thanks for letting me know.
I’m now releasing update that will fix the issue. The update will be available within a couple hours or less.
Forum: Plugins
In reply to: [Shortcodes Ultimate - Content Elements] su_plan icons not showingHi @nrmn,
the problem is caused by your theme or by a 3rd-party plugin. I’m not sure because all stylesheets on your page are minified and concatenated. But, the problem is one of stylesheets has the following part:
[aria-label='']:after, [aria-label='']:before, [data-hint='']:after, [data-hint='']:before { display:none !important }This code is a bad practice since it affects many elements on the page. It should be removed.
To fix the issue with plan icons, you can add the following snippet to the Custom CSS code field at the plugin settings page, but I’d recommend to fix the issue described above, because it definitely will break more stuff.
The snippet:
.sui[aria-label='']:before { display: inline-block !important; }Forum: Plugins
In reply to: [Shortcodes Ultimate - Content Elements] I need create thisHi @mikaelakub,
sorry for the late reply.
Shortcodes cannot be used in email templates, so the Shortcode creator won’t help here.
Hi @dinerobits,
the fonts folder moved to
/wp-content/plugins/shortcodes-ultimate/vendor/fork-awesome/.š Please see the solution posted here.
Hi @zargarov,
sorry for the late reply.
You can modify
WP_Queryargs used in the shortcode by utilizing thesu/shortcode/posts/wp_query_argsfilter in thefunctions.phpfile of your theme, like so:add_filter( 'su/shortcode/posts/wp_query_args', function( $args, $atts ) { // $args['tax_query'] ... return $args; } );Forum: Plugins
In reply to: [Shortcodes Ultimate - Content Elements] su_plan icons not showingForum: Plugins
In reply to: [Shortcodes Ultimate - Content Elements] Icons have href=”javascript:;” linkHey @nrmn,
the issue will be fixed in the closest update of the Extra shortcodes add-on. The update will be available in December.