Liath
Forum Replies Created
-
Forum: Plugins
In reply to: [Asgaros Forum] when you hit enter it jumps down two lines instead of onemaybe it can help when you add the possibility to switch the Editor to “Text-Mode”
for this you have to change the following
File: ../wp-content/plugins/asgaros-forum/includes/forum.php
Line: 42
ToDo: Change to true'quicktags' => false
to fix the style of the Buttons in “Text-Mode, you have to change the width of them
File: ../wp-content/plugins/asgaros-forum/skin/style.css
Line: 35
ToDo: Change to autowidth: 100%;
Forum: Plugins
In reply to: [Asgaros Forum] Use Shortcodes in Threadif you have already Version 1.0.7, you don’t have to modify the thread.php
just put following line in the functions.php of your theme
add_filter( 'asgarosforum_filter_post_content', 'do_shortcode' );
then you can use all available shortcodes, or make your own like this
function youtube_shortcode( $attr, $content = null ) { return '<iframe width="560" height="315" src="https://www.youtube.com/embed/'.$content.'" frameborder="0" allowfullscreen></iframe>'; } add_shortcode('youtube', 'youtube_shortcode');
Forum: Reviews
In reply to: [Asgaros Forum] Layout is great but …great work and support…. but
6) A checkbox to disable this feature for admins would be nice. It is not really important, but perhaps you can add this in the future…
Forum: Plugins
In reply to: [Asgaros Forum] Use Shortcodes in Threadit works great, now i can add all the shortcodes i want ??
thank you for your great and fast support
Forum: Plugins
In reply to: [Asgaros Forum] Use Shortcodes in ThreadPrimary i want to add quickly iframes from pastebin with this shortcode
i.E.
[pastebin]YKXi3BZa[/pastebin]
function pastebin_shortcode( $attr, $content = null ) { return '<iframe src = "https://pastebin.com/embed_iframe.php?i=' . $content . '" style = "border:none;width:100%;height:500px;"></iframe>'; } add_shortcode('pastebin', 'pastebin_shortcode');
i have a lot of codes and scripts there, that i need to add as post
you have to set the priority to NULL
i don’t know this plugin, found your question on google ??
when there are no option to set the priority to NULL, you have look into the code for something like this
$result .= $this->HeaderLine('X-Priority', $varforpriority);
and set $varforpriority to NULL
this will remove the header
Forum: Plugins
In reply to: [Minecraft Control Panel] Das Plugin hat keinen validen HeaderFehler ist behoben.