the5kyliner
Forum Replies Created
-
Forum: Plugins
In reply to: [Public Post Preview] Content visible only on preview url?I think it’s possible. In your template file (e.g. single.php) you can check for the parameter “_ppp” used by public-post-preview.
Via $_GET[‘_ppp’] or http://codex.wordpress.org/Function_Reference/get_query_var#Custom_Query_Vars
example:
if (isset($_GET['_ppp'])) { echo 'This is just a preview.'; }Forum: Plugins
In reply to: [Theme My Login] After update to 6.3.8 it says "Login" before my login-formHi,
I just hide it via javascript on page load.
Not a very nice trick, thoughForum: Plugins
In reply to: [Frontend Uploader] Category assignment not workingSame problem here.
But there’s a workaround:
in line 745
\wp-content\plugins\frontend-uploader\frontend-uploader.phpadd “category” to shortcode attributes, so it looks like this
http://pastie.org/8290895Hope this will be fixed soon.
Hello Sunny,
You have to include these kinds of files into the header.php above the </head> tag.
But I think that the events_manager.css is automatically included, if the plugin is activated, so if there are some css codes, that overwrite the events manager’s styles, you have to check your own style.css and edit them.
Forum: Plugins
In reply to: [Total Control HTML5 Audio Player Basic] Fatal Errorlook at line 466. there it says “<?” instead of “<?php”.