Forum Replies Created

Viewing 15 replies - 46 through 60 (of 427 total)
  • Plugin Author redpixelstudios

    (@redpixelstudios)

    There are some limits to what the plugin can do with dynamically generated content as it relies on switching blogs temporarily and then switching back. Your forms would need to be engineered to also handle the switch between blogs so they do not pull content from the blog where they are displayed but rather get the data from the blog of origin. Hopefully this points you in the right direction. Let us know if you have additional questions.

    Plugin Author redpixelstudios

    (@redpixelstudios)

    We took a look at your site and notice that another gallery plugin, Foo Gallery, is active. The first step to troubleshooting will be to get the other gallery plugin deactivated. Let us know when that is done and we’ll have another look. Thanks in advance.

    Plugin Author redpixelstudios

    (@redpixelstudios)

    You bet. Always happy to help.

    Displaying the sharing buttons in the slideshow view is a feature slated for a future release.

    We are going to go ahead and mark this topic as resolved, but feel free to open a new topic should the need arise. Thanks for using RPS Image Gallery!

    Plugin Author redpixelstudios

    (@redpixelstudios)

    Glad to help. The font-size attribute of the sharing buttons might be getting in the way as well. You could try the following modification to the previous adjustment. In addition, we’ve have added some properties that will put the sharing buttons at the top of the image, extending beyond its border, which might work better than the sharing buttons appearing at the bottom. Feel free to experiment with the style properties to get the desired layout.

    .rps-image-gallery-social .gallery-item .gallery-icon .gallery-item-sharing-buttons > ul { font-size: 0 !important; line-height: 1 !important; -moz-transform: translateX(-50%) !important;
    -ms-transform: translateX(-50%) !important;
    -webkit-transform: translateX(-50%) !important;
    transform: translateX(-50%) !important; top: 3px !important;}

    To display the slideshow caption in center, you can access your RPS Image Gallery settings under the tab Slideshow. Set the Title Alignment to “Center”. If you are using the gallery shortcode, use the attribute fb_title_align=”center” instead.

    Plugin Author redpixelstudios

    (@redpixelstudios)

    We happened to notice the sharing buttons weren’t aligned quite right. Here is a style override to fix the issue

    .gallery-item-sharing-buttons > ul { line-height: 1 !important; }

    Plugin Author redpixelstudios

    (@redpixelstudios)

    Good news on the speed. Thanks for the screenshot since it did help clarify the issue considerably. We were able to find your blog and look directly at the source.

    It seems there is an inline style for the active pseudo-class for hyperlinks which causes the color to appear when the “next” or “previous” link is clicked in the slideshow viewer. You would either need to remove the style, use a more specific selector or reset the pseudo-class using the appropriate fancybox selectors.

    Since you’re using the Jetpack plugin, you may also be using its Custom CSS module, which should make it easy to locate and modify the overriding style.

    If you wish to remove the style, search for the following and remove it:

    a:active {background-color:#2f9c9a; color:#1d1b1b; }

    If you wish to override the style, add the following to the end of the style overrides:

    .fancybox-skin > .fancybox-outer > .fancybox-nav:active { background-color: transparent; color: unset; }

    Plugin Author redpixelstudios

    (@redpixelstudios)

    Glad the EXIF data is more readable and that you were able to test the new version.

    The changes we made to the plugin should not have caused the symptoms you are experiencing. The slowness and colored rectangle appearing over the link perhaps instead point toward a browser inspector being open or some accessibility setting being active. The browser inspector allows you to see behind the scenes into the code being executed. That process adds overhead and slows things down as do certain accessibility options.

    It might be a good idea to try a different browser to see if the problem vanishes. If so, then open the original browser and make certain only the main window is open and no “code view” is present. If the problem persists, please provide the name of the browser, version and platform (i.e. MacOS, Windows, Linux, etc.) so we can try to replicate it. Regardless, let us know how it turns out.

    Plugin Author redpixelstudios

    (@redpixelstudios)

    Sure thing. We were just wrapping up version 2.2.2 and included the EXIF data manipulations with it.

    We determined it might be best to use a common set of shutter speeds as the reference point, should the shutter speed fall below 1 second. In this way we can present shutter speeds such as .0063s, which normally would convert to 1/158.73s, in the more readable/useful form of 1/160s.

    They common set of shutter speeds (less than 1 second) included with the plugin are as follows:
    1/2, 1/4, 1/8, 1/15, 1/30, 1/40, 1/50, 1/60, 1/80, 1/100, 1/125, 1/160, 1/200, 1/250, 1/320, 1/400, 1/500, 1/640, 1/800, 1/1000, 1/2000, 1/4000, 1/8000

    If the shutter speed is 1 second or greater, the value is simply rounded to the nearest integer (i.e. 1.12568s -> 1s).

    While through the EXIF data points, we noticed the focal length value was too precise in some cases. It now now will round to the nearest integer.

    We will likely update the stable tag to version 2.2.2 tonight or tomorrow, but you can go ahead and download it if you wish to try out the fixes before that time.

    Let us know what you think if you have the opportunity. Thanks.

    Plugin Author redpixelstudios

    (@redpixelstudios)

    We are going to go ahead and mark this topic as resolved but feel free to contact us if you have additional inquiries.

    Plugin Author redpixelstudios

    (@redpixelstudios)

    We are going to mark this topic as resolved but please let us know if you have any trouble with the featured image functionality.

    Plugin Author redpixelstudios

    (@redpixelstudios)

    Glad to look into it and offer the suggestion. We would be happy to provide an estimate for the work. Please submit your inquiry through our contact form and reference the link to this support thread to assist in defining the scope of work.

    As an alternative, you may wish to contact the developers of WPDM to see if they would be willing to add a blog-switching mechanism to the associated shortcode. It’s a good idea really and could help others, though it may not be on the roadmap for their plugin.

    Plugin Author redpixelstudios

    (@redpixelstudios)

    It sounds like you are on the right track with the issue. It seems you would need custom functionality to make this happen since WPDM has no assets to query on the site containing the RPS Include Content shortcode.

    The wpdm_category shortcode is bound to a callback function by the same name, and within that function is a call to the function responsible for issuing the query and the HTML generation (wpdm_embed_category).

    You could clone the wpdm_embed_category function into your theme functions file with a unique name (i.e. my_wpdm_embed_category), remove the wpdm_category shortcode and add it along with a callback to your cloned function.

    From there you would need to modify the function to temporarily switch blogs, run the query and switch back.

    Of course the solution is somewhat speculative and results from a cursory view of the source code, but it indeed seems possible to achieve what you are attempting to do, though it may take quite a bit of time and testing to make certain everything works as expected.

    We hope this information helps you in your efforts.

    Plugin Author redpixelstudios

    (@redpixelstudios)

    Glad to hear it. Be sure to post a review RPS Image Gallery if you get a chance. Thanks in advance!

    Plugin Author redpixelstudios

    (@redpixelstudios)

    Good news on the JavaScript issue. By default RPS Image Gallery attempts to write the responsive styles to a stylesheet file but can fail to do so with specific configurations. You might try changing the loading method for responsive styles to “inline” instead of “link”. The setting can be found at Settings > RPS Image Gallery > Gallery. Let us know how it works out.

    Plugin Author redpixelstudios

    (@redpixelstudios)

    Sure, we can help. It looks like there is a JavaScript error on the page:

    TypeError: $ is undefined on line 189.

    Fancybox, along with other RPS Image Gallery assets, are normally loaded later but the error is preventing them from doing so. Masonry works because it loads before the problematic JavaScript.

    We cannot seem to locate a plugin responsible for loading the JavaScript so it seems that it might have been added directly to the theme header or injected using a hook.

    We recommend contacting the theme developer for assistance in this particular case since it is not something we can remedy through RPS Image Gallery. According to the theme documentation the developer can be contacted through http://danielrhyshardy.com.

    Let us know if you find other potential issues with RPS Image Gallery and we will be happy to look into them for you.

Viewing 15 replies - 46 through 60 (of 427 total)