Simivar
Forum Replies Created
-
Forum: Plugins
In reply to: [Elegance Modal Box] Disables Media UploadsForum: Plugins
In reply to: [Elegance Modal Box] Media into post and page not workingFix is available here: https://wordpress.org/support/topic/how-to-fix-media-uploads-error?replies=1#post-7645761
Forum: Plugins
In reply to: [Elegance Modal Box] Disables Media Uploads@chiwaili: what you’ve done to make it work?
Forum: Plugins
In reply to: [Plugin: GL Facebook Likebox] Conflict with others scriptsIncluded in version 1.0.2.
Thanks a lot.
Yes, exactly.
Choose “yes” or “no” in the “loop” option, it should help.
Give a screenshot from your settings of the mod (Widgets Menu).
1. Open the /gl-facebook-likebox/css/style.css and find:
#facebook-right { position: fixed; right: -243px; top: 10%; z-index: 100; } #facebook-left { position: fixed; left: -243px; top: 10%; z-index: 100; }Change the “top” value.
2. Open /gl-facebook-likebox/gl-facebook-likebox.php, find near 43 line:
echo '<iframe src="http://www.facebook.com/plugins/likebox.php?href='.$pageurl.'&width=237&colorscheme='.$colorscheme.'&show_faces='.$faces.'&stream='.$stream.'&header='.$header.'&height=475" scrolling="no" frameborder="0" style="border:none; overflow:hidden; width:237px; height:475px;" allowTransparency="true"></iframe>';
in-line find:
height=475andheight:475pxChange the “height” value.
Forum: Plugins
In reply to: [GL Facebook Likebox] [Plugin: GL Facebook Likebox] Zachodzenie slideraPoprawione w wersji 1.0.1.
Dzięki za raport.
Forum: Plugins
In reply to: [GL Facebook Likebox] [Plugin: GL Facebook Likebox] Icons not displayingYou are using WordPress 3.1-RC3, GL Facebook Likebox is compatible up to 3.0.5.
The plugin needs a widget-area – theme must be Widgetized.
Screenshot is a little old. Twitter has change the logo.
The Twitter logo will be white and I can’t change it.
Yes. Just open a CSS file of your current style and insert these lines:
/* Advanced Twitter Profile Widget */ .twtr-widget-profile h4 a { font-size: 15px; }change the font-size value and save file.
What you mean? How you are not able to open the file? Which file?
Forum: Hacks
In reply to: How to create radio button in options page?I have made it in this way:
<input type="radio" id="[ID]" name="[NAME]" <?php if($[VARIABLE] == 'true') echo 'checked="checked"'; ?> value="true" />yes <input type="radio" id="[ID]" name="[NAME]" <?php if($[VARIABLE] == 'false') echo 'checked="checked"'; ?> value="false" />no