Runo
Forum Replies Created
-
Forum: Plugins
In reply to: [Facebook Like Box Widget] Change languageThere doesn’t seem to be an option for changing the language locale of the like box.
What you could do is open facebook-like-box-widget.php inside the plugin folder and replace every instance of “en_US” in the PHP document to your own language locale code (“it_IT” in your case).
Be aware that if the plugin ever updates, your changes will be lost and you’ll likely have to do this again.
Forum: Plugins
In reply to: [Featured Video Plus] Missing allowfullscreenIf you’d like, I got the option working by changing featured-video-plus/php/general.php’s line 98 from
$embed = "\n\t" . '<iframe width="'.$size['width'].'" height="'.$size['height'].'" src="'.$src.'" type="text/html" frameborder="0" id="fvpyt'.$post_id.'"></iframe>' . "\n";
to:
$embed = "\n\t" . '<iframe width="'.$size['width'].'" height="'.$size['height'].'" src="'.$src.'" type="text/html" frameborder="0" id="fvpyt'.$post_id.'"' .$isfullscreen.' ></iframe>' . "\n";
And then by inserting this line:
$isfullscreen = isset($options['youtube']['fs']) ? 'allowfullscreen' : '';
Between lines 95 and 96.
No problems with the right sidebar now with the vanilla theme.
Still having issues with my child theme, but those should be gone when I update my files.
Well, I’m glad we sorted it out then.
I’ll mark this as solved when the next update hits.
My live site has not been updated yet, so I can’t say for sure it’s not just XAMPP being weird.
When I send these changes to the live website, I’ll make sure to test and post here if the problem is still there or not. =)
I’ve cleared the cache while using Chrome and Firefox, it did nothing.
I’m on celestial-lite 2.1.0, I’ve updated from 1.9.6 via the WordPress update option.
I’m on XAMPP 1.8.3.
I just tried manually replacing the theme with the newest one, but the error is still there.
The error is only when you see a blog post, the category archives is working as intended. And there doesn’t seem to be any particular widget that causes the error.
The live demo looks fine, the sidebar is floating at the right of the content, just like intended.
Edit: I’ve also deactivated every plugin I have and the problem persists.
Forum: Themes and Templates
In reply to: [Celestial - Lite] Can't insert logoI found out the issue was with my PHP configuration, for some reason it was rejecting any file I sent with a “This file exceeds the maximum upload size for this site” message.
I fixed it by adding these to my php.ini:
upload_max_filesize = 32M
post_max_size = 32MThanks for the attention anyway!
Sorry, this is my website.