Forum Replies Created
-
AuthorPosts
-
Hi, thanks for the quick respons, you find the login details in the private area.
ThanksHi Rikard,
I am very sorry, you’ll find the correct details in the private content.
Thank you for the patience.Hi Rikard,
can you please test the text editor issue, if you login with the details provided, and try to edit a text on a allready existing page, you will notice the text editor is broken.
I cannot add links, or buttons etcetera.
Hope you can help.Any news on the self hosted video tumbnails?
Thanks, best wishes, JochemHi Rikard
I’ve checked and the text editor issue seems to appear only on my own account.
Easy solution would be to create a new account for myself but then I loose all messages i created.
You can login with my own login details so you can check.
Thanks!Hi Yigit, thanks for the quick reply. How do i find out where the code comes from?
ThanksFound it,
I had this in the custom css:
#top div .avia-gallery img {
padding: 0;
border: none;
}That created the ‘ whitespace’ because there was nothing in there
Hi, I did this, but now the buttons are lined out on the left instead of the centre.
June 2, 2015 at 1:11 pm in reply to: Fallback image on easy slider video disappeared on mobile's #453109Hi Elliott,
No, that is not what i meant.
I mean i use a video in the easy slider on the top of my page.
On desktops it just plays the video, on mobile’s it used to show a fallback image.
Now after a theme update it doesn’t show this fall-back image any more on my android device, it only shows a black bar where the fallback image should be.Hope you can help!
Thank youJochem
This reply has been marked as private.Hi Elliott,
Thanks for your reply.
It does work when i use the default editor.
But i prefer to use the advanced editor..
Do you have a solution?PS: i tried to add this extra code to the functions.php but it didn’t help
/**
* Takes the youtube video ID stored in a custom field and adds a full Youtube URL to the content to allow
* the video SEO plugin to index it.
*
* The video URL is added to the top of content to make it override other video’s in the post.
*
* @param string $content the input content field.
* @param array $vid the video array for the post.
*
* @return string $content
*/
function fix_content_input( $content, $vid ) {
$slides = avia_post_meta($vid[‘post_id’], ‘slideshow’);
$video = ”;
if(!empty($slides[0]))
{
foreach($slides as $slide)
{
if(!empty($slide[‘slideshow_video’])) $video .= ‘ ‘ . $slide[‘slideshow_video’];
}
}
$content = “n” . $video . “n” . $content;return $content;
}
add_filter( ‘wpseo_video_index_content’, ‘fix_content_input’, 10, 2 ); -
AuthorPosts