Vova
Forum Replies Created
-
Hello everybody,
Fixed in 7.1.4, please update.
Hi @ghanchet,
Please re-instal the plugin, this may fix the issue. Also, try updating to the latest version 7.1.4
Forum: Plugins
In reply to: [Shortcodes Ultimate - Content Elements] Проблема с переводомЗдравствуйте. Это сторонняя библиотека реселлера. К сожалению, не могу повлиять на это. В последнем обновлении возможно проблема исправлена. Пожалуйста, проверьте.
Forum: Plugins
In reply to: [Shortcodes Ultimate - Content Elements] quote citation looks brokenHello everybody,
Fixed in 7.1.4, please update.
Forum: Plugins
In reply to: [Shortcodes Ultimate - Content Elements] Tabs showing HTML CodeHello everybody,
Fixed in 7.1.4, please update.
Hi @mariusfv,
First, no need to be rude.
You can always download purchased plugin(s) from the Restore Purchase page. The plugins are still receive updates. As for the changed site address, I moved the project from my personal site gndev.info to a separate project-only website getshortcodes.com.
Hi kslabo,
Try using the
onclickattribute instead:[su_button onclick="tree('click1')"] ... [/su_button]If that won’t work, please read the following article:
Forum: Plugins
In reply to: [Shortcodes Ultimate - Content Elements] BUG with Button in new 7.0Hi Jack,
The plugin doesn’t include such feature, but you can customize its behavior using the
su/shortcode/posts/wp_query_argsfilter. The source code is available here:And here’s the possible solution:
Hi ksheni,
You can add the following CSS rule to the animated element using the Custom CSS feature of the plugin:
animation-iteration-count: infinite;Forum: Plugins
In reply to: [Shortcodes Ultimate - Content Elements] Version 7.0.1I’m not sure this must be a part of the plugin, but I understand that some users may need this. If you want to use relative URLs, add the following snippet to the end of the
functions.phpfile of your theme:add_filter('shortcode_atts_button', function ($out, $pairs, $atts, $shortcode) { if (strpos($out['url'], '..') !== false) { $path = rtrim($_SERVER['REQUEST_URI'], '/') . '/' . ltrim($out['url'], '/'); do { $path = preg_replace('/[^\/]+\/\.\.\//', '', $path, 1, $count); } while ($count); $protocol = empty($_SERVER['HTTPS']) ? 'http' : 'https'; $url = "{$protocol}://{$_SERVER['HTTP_HOST']}{$path}"; $out['url'] = esc_url($url) === $url ? $url : $out['url']; } return $out; }, 10, 4);This should turn your relative URLs into absolute ones automatically, like so:
Page URL value Result ------------------------------------------------------- https://wp.org/ ../123/ https://wp.org/ https://wp.org/abc/ ../123/ https://wp.org/123/Forum: Plugins
In reply to: [Shortcodes Ultimate - Content Elements] Image CarouselHi @ledwellplastics ,
Try disabling all optimization plugins on your sites. They are usually breaking code for non-guest users.
Forum: Plugins
In reply to: [Shortcodes Ultimate - Content Elements] CSS Overrride doesn’t workHi @jsnowbusiness,
I’m marking topics as resolved if they don’t receive answer after 2 weeks.
As for your original question, there’s missing curly brackets in your code. Media queries should also have a set of brackets. See an example below:
@media only screen and (max-width: 767px) { .su-row .su-column + .su-column { margin-top: 0px; } }It was a mistake made by Patchstack…You can find the details by following the link below:
I’ve updated the codebase and have fixed all the issues. Thank you for letting me know.
Please update the plugin to the latest version – 5.13.2.
I’ll also release an update for the Extra shortcodes add-on later.