Rolf

Forum Replies Created

Viewing 15 posts - 301 through 315 (of 327 total)
  • Author
    Posts
  • in reply to: Easy FancyBox doesn't work anymore #3365
    Rolf
    Keymaster

    Salut Jean-Christophe,

    It does seem to work now on your site. Which plugins did you have to deactivate before it started working again?

    About Dailymotion: those should work fine. Can you share an example on your site where it is not working for you?

    Kind regards,
    Rolf

    in reply to: Won't work in Google Chrome #3369
    Rolf
    Keymaster

    Hi spamis, can you provide a link? Seeing the ussue live might tell me more about what might be going wrong…

    Rolf
    Keymaster

    Hi Jenny,

    I’m sorry to say that thumbnail images inside the modal window are not possible without nearly completely rewriting the FancyBox 1.3.4 script. It simply was not built to do such a thing…

    A counter is theoretically easier but still it cannot be done without changing the plugin code. If you are not afraid of messing with PHP files, just let me know and I can help you with that 🙂

    You could also wait for the next upgrade of the Pro version. I am considering several approaches to give different title formats as a Pro option, including one with a counter.

    in reply to: remove border/white padding #3375
    Rolf
    Keymaster

    Hi Marie,

    You can set Border to 0 in the Dimensions settings. Go to “Settings > Media”, under “FancyBox” in the “Window” section and enter the value of zero for the border.

    Let me know if you need any further help 🙂
    Rolf

    in reply to: Licensing Questions #3377
    Rolf
    Keymaster

    Hi Richard, yes I can give you a discount code to compensate for VAT if you like. Please contact us directly via http://status301.net/contact-en/

    The domain name change is not going to affect your licence in any way.

    Kind regards,
    Rolf

    Rolf
    Keymaster

    Hi Danna, I’ve seen a wrong or missing DOCTYPE do funny things in Internet Explorer but not yet in the iPad browser variant. But I cannot rule out the possibility. Even though the declaration <!DOCTYPE html> is a valid (HTML5) one, it might be interesting to quickly test with simply replacing it with <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> to see what happens. But please remember to place the original doctype declaration back because the theme uses HTML5 tags so it actualy must have the doctype it has now.

    Looking at the dev site with an Android tablet (don’t have an iPad) I notice the image map link zones do not seem to be there at all. Tapping the red dots does not open an image even without the lightbox effect. Strange.

    What happens if you disable Easy Fancybox? Do the linked areas (red buttons) pull up the linked images then? If not, there might be a conflict going on with another script running on the dev site. Or there might be something (small) wrong with the image map code. Like the target="null" attribute because I’m not sure if a ‘null’ value is allowed. Maybe replace it with ‘_blank’ or a friendly name like ‘imagetab’?

    Thinking about it, I’d start with that last suggestion. And you might want to pass your site through http://validator.w3.org/check?uri=http://www.pedruxella.com/dev/first-floor-map/&charset=%28detect+automatically%29&doctype=HTML5&group=0 to make sure it validates 🙂

    in reply to: Disable auto gallery on archive pages #3382
    Rolf
    Keymaster

    Hi Craig,

    To disable the automatic gallery feature, go to Settings > Media and find the Autogallery option. Set it to Disabled.

    But if you want to keep the gallery feature on a per-post basis, meaning that images within the same post are grouped together but not include images from other posts on the same archive page, then you need to choose the option Galleries per Section. After that, you need to define the sections below, so they match your themes template. By default, the plugin uses “article” and “div.hentry” because that are the most commonly used identifiers in modern WordPress themes but your theme might use completely different identifiers.

    If you can provide a link to your archive page, I can tell you more 🙂

    in reply to: removing unnecessary code? #3384
    Rolf
    Keymaster

    Hi Devin,

    The plugin itself can not detect if the code is going to be needed or not so that is why it is included in every page. That said, you can manually add the following code to your themes functions.php file. I’m supposing here that the page in question has slug ‘portfolio’ used in !is_page('portfolio') but you can change that to fit your case 🙂

    
    function my_conditional_script() {
      if( class_exists('easyFancyBox') && !is_page('portfolio') ) {
        remove_action('wp_enqueue_scripts', array('easyFancyBox','enqueue_styles'), 999);
        remove_action('wp_print_scripts', array('easyFancyBox','register_scripts'), 999);
        remove_action('wp_head', array('easyFancyBox','main_script', 999);
        remove_action('wp_footer', array('easyFancyBox','enqueue_footer_scripts'), 999);
        remove_action('wp_footer', array('easyFancyBox', 'on_ready'), 999);
      }
    }
    add_action('wp_head','my_conditional_scripts',0);
    
    in reply to: You Tube link on iPhone #3387
    Rolf
    Keymaster

    Hi Andrew,

    The issue is not related to the device (iPhone) but to the select option menu that is used for screens smaller than 769px wide. FancyBox typically works on links, not select options.

    But as this is an interesting use case, I’ll do some testing to see if I can make it work on a mobile menu select option too. Cannot promise anything though…

    in reply to: Very curious #3389
    Rolf
    Keymaster

    Hi George, it is impossible for a WordPress plugin to do its thing outside WordPress. If you’d like to have FancyBox on these Xenforo forum pages then you’ll have to look for a Xenforo FancyBox plugin (does that platform have a plugin API at all?) and if there is none then you’ll have to integrate the version from http://fancybox.net/ manually…

    in reply to: Very curious #3392
    Rolf
    Keymaster

    Hi George, I have no idea how this Xenforo plugin works. If you can share a link to your site where I can see the forum (together with an image that you would like to display in FancyBox) then I might be able to tell you more 🙂

    If you do not want to share the URL here publicly, then you can send it to me via the contact form on http://status301.net/contact-en/

    in reply to: When using with new gallery #3394
    Rolf
    Keymaster

    Hi George, choose Link to: Media file when inserting galleries or single images. This will make it skip the attachment page.

    After inserting the gallery, switch to the HTML editor tab and look for the [ gallery ] shortcode. It should now have the parameter link="file" in it.

    in reply to: Disable Fancybox for certain links #3396
    Rolf
    Keymaster

    Hi Arno, yes there is. Give these links the class nofancybox to exclude them from auto-detection.

    in reply to: Compatability with WP 3.9 #3398
    Rolf
    Keymaster

    Hi Matthew, your theme, Velocity, already has (another version of) FancyBox built in. It is incompatible with the Easy FancyBox plugin.

    Unless there is an option in the theme to disable the FancyBox/Lightbox effect?

    in reply to: Compatability with WP 3.9 #3402
    Rolf
    Keymaster

    Hi Matthew, I was not aware that the current version is not working on WP 3.9… can you send me a link to your site so I can take a look?

    Or you could replace your current version with the development version from http://wordpress.org/plugins/easy-fancybox/developers/ (download the first zip under Other Versions) because that one is tested on WP 3.9

    Please let me know 🙂

Viewing 15 posts - 301 through 315 (of 327 total)