Dirk
Forum Replies Created
-
Yes, I have disabled Lightbox Linking
Please check the image I have linked here. I would like to have a link by clicking on the title “Papageien” and/or the image next to the title (the upper left image). But I don’t want “View”-links in the other four images. These four images now appear as light box without the “View”-link to SmugMug. This is okay.
Sorry for coming back on this. I deleted the tokens with the result that I am not able anymore to upload galleries to my website. So, I’ll keep the tokens and make another gallery (collection), only showing the images I want to show and excluding those are hidden.
Ok, great! Very kind of you!
Best, DirkTo be honest, I don’t know if I use authentication! What is it?
Indeed, there is a problem as soon I have a gallery with hidden images. In Google Incognito mode, the gallery loads endlessly. As soon I unhide the hidden images, there are no problems with loading the gallery.Now I am a bit confused, how to handle this.
Yes, you are right! Thank you for the code. I got it working now as I want it.
Best,
DirkGreat, thank you!
Thank you! The issue is….The collection where I am referring to was set on private in SmugMug. I could see it in my browser because I was logged into SmuMug in parallel. On my smartphone I wasn’t. Now I have set the collection to public and it is working.
Forum: Plugins
In reply to: [Extensions for Leaflet Map] ZoomhomemapOk, thank you!
Forum: Plugins
In reply to: [Extensions for Leaflet Map] Fullscreen icon does not work@hupe13 Thank you. Indeed, I forgot to deactivate WP GPX Maps. Now I have everything to get red off WP GPX Maps. Great!
Forum: Plugins
In reply to: [NextCellent Gallery - NextGEN Legacy] Mehrere Anpassung für PHP 8Hallo Frank,
bei mir funktioniert das Plugin trotz Anpassungen nicht. Wenn ich Fotos von einer Gallerie einfügen m?chte, werden mir keine Gallerien zur Auswahl angezeigt. Was muss ich nun tun, damit es klappt?Dear Frank,
the plugin doesn’t work even I have used the corrected version. Inserting images from a gallery doesn’t work. No gallery appears to. choose from. What can I do to get it working?Forum: Plugins
In reply to: [iQ Block Country] GeoLite2 database free or not?The Downloadpage is a complete mess. Can you please tell us, where to click to get it downloaded. All the links lead to other pages. This is not really userfriendly.
Forum: Plugins
In reply to: [Events Manager - Calendar, Bookings, Tickets, and more!] ics parsing errorYes, see here
Forum: Plugins
In reply to: [Events Manager - Calendar, Bookings, Tickets, and more!] ics parsing errorNo ideas, how to fix it?
Forum: Plugins
In reply to: [Comment Mail] Title of custom post type not showingI found the solution myself.
Modify the following file:
manage-summary.php (comment-mail/src/includes/templates/type-s/site/sub-actions)Line 282 – 285:
<?php if ($_sub_post && $_sub_post_type_label) : ?> <?php echo sprintf(__('%1$s ID <a href="%2$s">#<code>%3$s</code></a> <a href="%4$s">%5$s</a>', 'comment-mail'), esc_html($_sub_post_type_label), esc_attr($_sub_post_url), esc_html($_sub_post->ID), esc_attr($_sub_post_comments_url), esc_html($_sub_post_title_clip)); ?> <?php else : // Post no longer exists for whatever reason; display post ID only in this case. ?> <?php echo sprintf(__('Post ID #<code>%1$s</code>', 'comment-mail'), esc_html($_sub->post_id)); ?> <?php endif; ?>
and modify it as follows….
<?php if ($_sub_post) : ?> <?php echo sprintf(__('%1$s ID <a href="%2$s">#<code>%3$s</code></a> <a href="%4$s">%5$s</a>', 'comment-mail'), esc_html($_sub_post_type_label), esc_attr($_sub_post_url), esc_html($_sub_post->ID), esc_attr($_sub_post_comments_url), esc_html($_sub_post_title_clip)); ?> <?php endif; ?>