fourlightsweb
Forum Replies Created
-
Forum: Plugins
In reply to: [WP Gallery Custom Links] Image SizeThe problem you are describing is outside the scope of what this plugin is built to do. I’ve provided you with some pointers, but you’ll need to discuss with your theme author, another plugin author, or a WordPress developer for further help, or try a different support forum, as your question is unrelated to this plugin’s functionality.
Forum: Plugins
In reply to: [WP Gallery Custom Links] Media Files same as WP Gallery?Featured images are different from galleries – a gallery is when you use a [gallery] shortcode in your content (you can create a gallery through the “Add Media” button when editing post/page content), whereas featured images are set separately in the “Featured Image” section on the side.
You can upload/set a featured image, and then reuse it in a gallery – all uploaded images are stored as Media Files, and can be reused. But this plugin only affects the [gallery] shortcode – if you’re looking to put a link around your featured images, you’ll need to modify your theme or find a different plugin.
Side note: this plugin adds a custom url field for each item uploaded as a Media File, which this plugin applies in the [gallery] shortcode. But if you’re modifying your theme code for featured images, you can reuse this custom field if you’d like to apply it to your featured image instead (see FAQ #4 for how to pull the custom url value out of the database for a particular image).
Forum: Plugins
In reply to: [WP Gallery Custom Links] Image SizeThis plugin doesn’t really have anything to do with image sizes – that’s something you’d need to change either in your theme’s functions.php file or your theme’s gallery display code. Try taking a look here, it may help:
http://www.wpbeginner.com/wp-tutorials/how-to-create-additional-image-sizes-in-wordpress/
Good luck!
Forum: Plugins
In reply to: [WP Gallery Custom Links] Gallery Slideshow Image IssueMarking this as resolved since it’s outside the scope of what the plugin does and the poster has no further information.
Forum: Plugins
In reply to: [WP Gallery Custom Links] Link not workingThis issue was not related to the [gallery] shortcode, but a custom theme gallery, and was handled outside this post.
Forum: Plugins
In reply to: [WP Gallery Custom Links] Lightbox still llaunchesMarking this as resolved since the poster has no further information.
Marking this as resolved since the poster has no further input.
Forum: Plugins
In reply to: [WP Gallery Custom Links] Gallery Slideshow Image IssueI think you’re going to need to look at your theme/plugin code – this plugin only deals with links, not formatting.
Forum: Plugins
In reply to: [WP Gallery Custom Links] Link not workingIf you’ve gone through all the FAQ suggestions and your gallery has the filter, I’d probably need to actually see the page. You can contact me at info@fourlightsweb.com to send me login info.
Forum: Plugins
In reply to: [WP Gallery Custom Links] Lightbox still llaunchesHave you looked at the FAQ page? Some possible solutions/fixes are listed there, particularly #5 and #6:
http://wordpress.org/plugins/wp-gallery-custom-links/faq/
Do you have a link where I can see your gallery?
Forum: Plugins
In reply to: [WP Gallery Custom Links] Conflict with simple modal loginSince the original poster has no further information, I’m marking this as resolved.
Actually, you might want to put that in the footer before where the shadowbox script is included, so the changes go in before shadowbox loads with the rel attributes that are there.
Technically it *is* working with your plugin, but your plugin appears to be assuming gallery items will be linked to images and brings up the image viewer even though the links are for videos. Try putting the following in your footer to change the rel attribute on gallery images from “img” to “swf” for the video player:
<script> var galleryImages = jQuery('#gallery-2 .gallery-icon a'); galleryImages.each(function(){ var currentRel = jQuery(this).attr('rel'); var videoRel = currentRel.replace(/player=img;/,'player=swf;width=640;height=385;'); jQuery(this).attr('rel',videoRel); }); </script>You may need to tweak this script depending on which galleries/images you want to use it on, etc.
I’m not familiar with your theme/plugin for doing the shadowbox, but I noticed that on the first image, the link “rel” attribute looks like this:
rel="shadowbox[sbpost-145];player=swf;width=640;height=385;"and on the gallery image the rel looks like this:
rel="shadowbox[sbalbum-15];player=img;"I’m guessing that the rel on the gallery image needs to match the one on the standalone image, or at least have “player=swf” since it’s a video, but I’m not sure how you’d change that for your particular site. Maybe jQuery?
Forum: Plugins
In reply to: [WP Gallery Custom Links] Links not workingGlad you got it working 🙂