Dinho78
Forum Replies Created
-
Forum: Plugins
In reply to: [WooCommerce] Restore anonymized data?Thanks for the reply Rynald. I guess that’s the route we’ll take then.
Forum: Plugins
In reply to: [WP24 Domain Check] Recaptcha failThanks for the quick update. That seems to have fixed it!
Hey Yuval,
Thanks for the replies. Tried it on another site and it seems saving and re-saving the settings helped with getting the events working. Will inspect this a bit further.
Hi Yuvalo,
Have you had the opportunity to look at this? It still doesn’t work. Checking or unchecking the button doesn’t make a difference.
Hi Yuvalo,
I’ve updated the permissions. So you should be able to take a look.
Unchecking the button didn’t help with the error.
Thanks! I’ve just used the contact form to send the login details.:)
Hi yuvalo,
Thanks for your quick response. I can create an admin login for you, so you can take a closer look at the issue.
Where can I send the login details to?
Hi Jeremy, after refreshing the error disappears. So it only seems to happen when first entering mobile mode.
Hi Jeremy,
For me it happens in the Chrome console when switching to the mobile view. The site I’m working on is not live yet, so I’ve taken a screenshot (see below). It doesn’t happen on manually resizing to a smaller view and I don’t seen any obvious errors with the images.
Got the exact same when resizing on mobile devices.
Did you happen to find a fix?
Alrighty, thanks for the reply!
Forum: Plugins
In reply to: [Ajaxify Wordpress Site(AWS)] AJAX works only every other timeThanks Abdelouahed! That fixed it for me as well. ??
Forum: Plugins
In reply to: [Easy Video Gallery Responsive HTML5] DailymotionFigured it out myself.
In the easy-video.php file, replace the Get video link section with:
/** * Get video link. */ function ev_video_link($url) { if (strpos($url, 'vimeo.com') !== false) { $link = '//player.vimeo.com/video/'.substr ( parse_url( $url, PHP_URL_PATH ), 1 ).'?title=0&byline=0&portrait=0&color=f22929'; } elseif (strpos($url, 'dailymotion.com') !== false) { $id = strtok(basename($url), '_'); $link = 'https://www.dailymotion.com/embed/video/' . $id . '' ; } else { parse_str( parse_url( $url, PHP_URL_QUERY ), $my_array_of_vars ); $link = '//www.youtube.com/embed/' . $my_array_of_vars['v'] . '?rel=0'; } return $link; }
And replace the Get video image section with:
/** * Get video image. */ function ev_video_image($url) { if (strpos($url, 'vimeo.com') !== false) { $hash = unserialize(file_get_contents('https://vimeo.com/api/v2/video/'.substr ( parse_url( $url, PHP_URL_PATH ), 1 ).'.php')); $link = $hash[0]['thumbnail_medium']; } elseif (strpos($url, 'dailymotion.com') !== false) { $id = strtok(basename($url), '_'); $link = 'https://www.dailymotion.com/thumbnail/video/' . $id . '' ; } else { parse_str( parse_url( $url, PHP_URL_QUERY ), $my_array_of_vars ); $link = 'https://img.youtube.com/vi/' . $my_array_of_vars['v'] . '/0.jpg'; } return $link; }
Now you past url’s like https://www.dailymotion.com/video/x1b6fu_mark-morrison-return-of-the-mack_music and it will fetch the screenshot and play the video. ??
Forum: Plugins
In reply to: [Responsive Lightbox & Gallery] Reinitialise slidebox after ajax loadThanks for the reply dFactory.
I don’t know if it had anything to do with the latest update, but suddenly I got it to work by simply using:
jQuery(".gallery a").swipebox();
Problem solved ??
Forum: Fixing WordPress
In reply to: Editor adds HTML@andrew, no it doesn’t happen with pasting. It really seems to be something with switching between the visual and code editor.
@Lettergrad. I’m using the reverie framework (based on Foundation). I’ll do a test tonight with all plugins disabled and the default theme, to see if I can replicate it there.