coe13
Forum Replies Created
-
Forum: Plugins
In reply to: [Powerkit – Supercharge your WordPress Site] Social links not workingFor me, the Social Links will only work if I add them to a page with the shortcode. The widget only works for me if I use it in the Widgets area of the admin section.
Forum: Plugins
In reply to: [Powerkit – Supercharge your WordPress Site] Social links not workingSame here. I get an error on the in the widgets section of the admin area, but it just says “The powerkit_social_links_widget block was affected by errors and may not function properly. Check the developer tools for more details.”
The post type is correct, but disabled blocks shows none. The ads still show. Here are the debugger entries for the post:
POST TYPE: business
BLOCK SETTINGS
5 In-Article Ad o . . . . . . o . . x . . [After paragraph][Default][paragraph_number: %4][taxonomy_list: post-type:business]BLOCKS FOR THIS PAGE TYPE
CONTENT HOOK: 5, 6DISABLED BLOCKS:
We tried Essential Blocks on three different sites, on three different servers. There were issues with your plugin on all of them, so we gave up and switched to the PostX plugin, which, works much, much better for our needs.
I found it. In case anyone else wants to know, this is the CSS to stop the zoom in animation when over anything other than the image:
.ultp-block-item:hover .ultp-block-image-zoomIn img {
transform: none;
}To change it for other animations, it should be the same other than changing the .ultp-block-image-zoomIn to the appropriate class for that animation.
Uggh. Now I’ve noticed that in the page builder, the preview looks fine, but when the page is viewed, the author name doesn’t show “by” before the author name, the author name element has incorrect spacing, and the URL for the author name link domain.com?taxonomy=author&term=cap-authorname instead of the proper URL of domain.com/author/authorname/.
I fixed the issue that wasn’t allowing it to save. Apparently the plugin saves a LOT of data to the database and it was timing out.
The thumbnail issue still exists, though. Also, it would be nice if there were an option to overlay the category onto the thumbnail image and if the author avatar size could be changed in the options.Forum: Plugins
In reply to: [Kirki Customizer Framework] Is the Plugin DSGVO/GDPR compliant?Their homepage says Kirki is GDPR compliant. https://kirki.org/
Forum: Plugins
In reply to: [Kirki Customizer Framework] Rollback to previous version before 4.0.3?I’m using Squaretype from Codesupplyco. The customize area has huge margins between most of the sections in the left side accordion menu. Inside several of the sections are things that don’t line up and options that don’t work correctly with the theme. I can’t really get into more specifics, since I’ve already rolled back the plugin.
Forum: Plugins
In reply to: [Kirki Customizer Framework] Rollback to previous version before 4.0.3?Thanks for the link to the previous versions. The newest version doesn’t work with my theme, either.
Okay, I’ve figured it out. class-powerkit-gallery.php has this code in it:
if ( ! empty( $atts['link'] ) && 'file' === $atts['link'] ) { $image_output = wp_get_attachment_link( $id, $atts['size'], false, false, false, $attr ); } elseif ( ! empty( $atts['link'] ) && 'none' === $atts['link'] ) { $image_output = wp_get_attachment_image( $id, $atts['size'], false, $attr ); } else { $image_output = wp_get_attachment_link( $id, $atts['size'], true, false, false, $attr ); }
So, unless you add a link=”file” attribute to the shortcode, it will default to the image permalink instead of the direct URL. However, the permalink does not include the image file extension and the javascript that enables the lightbox checks the link URL for a valid image file extension. The problem is, the documentation (at least for the Squaretype theme) does not mention this at all.
So, if you are trying to use the justified gallery shortcode and it’s not working, add link=”file” to the shortcode. The developers need to fix this issue, either by changing the code or changing the documentation.
It’s only the gallery created with the shortcode that doesn’t work. Using the gallery widget in an editor in the admin area works fine. It’s only the shortcode that doesn’t work. Unfortunately, I have to use the shortcode for the pages I’m using the gallery on.