stmalk
Forum Replies Created
-
Forum: Plugins
In reply to: [Make Column Clickable Elementor] Make it compatible with pop upsPlease, we are all waiting for this. It doesn’t work with popups…
Forum: Plugins
In reply to: [Popup Trigger URL for Elementor Pro] Popup appear only onceSame issue for me. I created a popup and didn’t set any triggers, trying to use one of the buttons to open/close it. Popup opens only once and once closed, I can never bring it back.
I tried it in Chrome and Mozilla – disabled all additional plugins and reinstalled Elementor – no result.
The only time it actually works as needed is when I click “Preview” while editing page and then it opens and closes multiple times as needed. But when I open that page separately – it only opens once. It feels like it’s an Elementor bug.- This reply was modified 5 years, 6 months ago by stmalk.
Forum: Plugins
In reply to: [Portfolio for Elementor & Image Gallery | PowerFolio] Link to Project PageIt doesn’t even link to those “pages”, instead it says such page doesn’t exist for some reason. This plugin is just useless load of garbage.
Forum: Reviews
In reply to: [Slider by 10Web - Responsive Image Slider] Doesn’t work at allAlso, most of the options are only pro, free version doesn’t even let you add text.
Forum: Reviews
In reply to: [Slider by Supsystic] BxSlider option is brokenOk, I manged to make it work by overriding native WP Jquery which is old with a new 3.0
But BXSlider transition animation just doesn’t work, slides changes instantly.Forum: Fixing WordPress
In reply to: Lightbox plugins work locally but bug on serverWell, it’s ok, I actually fixed it by adding “overflow: visible” to the overlay layer. But thanks for replying!
Forum: Plugins
In reply to: [Categories Images] How to make resizing and alt text work?Ok, I managed to resize the icons and to remove the title. And also make the icons into links.
Here is my code:<?php foreach (get_the_category() as $cat) : ?> <a href="<?php echo get_category_link($cat->term_id); ?>"><?php $attr = array( 'class' => 'category_image', 'alt' => 'image alt', 'height' => 25, 'width' => 25, 'title' => 'category title', ); z_taxonomy_image($cat->term_id, 'full', $attr); ?></a> <?php endforeach; ?>
What I still need is give category description on hover, not just “category title” text. Is it possible to link a category description data here?
And also, is it possible to use the a custom URL from the image somehow so instead of linking to category page it’s going to link to the link from the URL that image has?Forum: Plugins
In reply to: [Categories Images] How to use it?Sorry, dumb me, I watched some old tutorials. I used a loop code from your page and it all works perfectly. Thank you so much!
But if I remove it, my site functionality stops working as if there was no Jquery built in WP at all. That JQuery line was included in my theme’s header.php file btw, it’s not that I added it
I have https://code.jquery.com/jquery-3.1.0.min.js loaded and referenced in my header.php and I have the same issue. I need that jquery there and if I remove it things stop working on my website! While foobox starts to work. I don’t think there is any JQuery coming from WP by default, as my features don’t work when I remove that 3.1.0 line from header.php
Looks like foobox is simply not compatible with JQuery