Txanny
Forum Replies Created
-
Forum: Fixing WordPress
In reply to: Video Embeds Not WorkingI’ve found that some times, on some videos them don’t embed at some exact sizes.
One of my videos had this problem: It embedded if I set the video with on embedding settings to 589 or 691 pixels, but stop embedding if I set it at 590 pixels.
Seems it was an strange response from the YT oEmbed API. And seems it works with no problems just from today.
Forum: Themes and Templates
In reply to: Blank startup pageIs your server running PHP 5 or higher? (The theme requires PHP 5 and it is recommended not to use and PHP version below 5.2).
If yes, set this on your wp-config.php file to see the errors, as WordPress disables the errors output:
define ('WP_DEBUG', true);Forum: Plugins
In reply to: [Plugin: Alkivia SidePosts] SidePosts widget broken?Having some not used files on the server, normally, it’s not a problem if are know files that you’re sure come from a known origin (you).
About the troubles installing and manually deleting the files, it look like a permissions problem on the server folder. If you cannot delete the files is because you have no rights to delete them on the server.
This problem arises sometimes when the automatic install failed and the server runs as a special user (named nobody) that don’t grant rights to modify the files to the FTP user.
I recommend asking your hosting provider to delete the folder and to upload the plugin manually to server (that way you have full control to the files).
I don’t like hosting providers who runs the apache server as nobody, as most of times all sites from all users run on the same user and this is a security flaw.
Forum: Plugins
In reply to: [Plugin: Capability Manager] Error trying to connect to admin panelAs you’re talking about PoEdit, I assume that some translation files are involved on your problem.
If removing the translation or going back to english WP solves it, indeed would be something wrong with the translation files.
Forum: Themes and Templates
In reply to: Header bachground image doesn’t show upTell me on which browser does this happen. Looks like the browser does not properly send the given file.
I tried uploading a new header image with Firefox, Chrome, Safari and IE and worked fine on all them.
Forum: Themes and Templates
In reply to: Blank startup pageDo you have any other plugin installed? This is only a newly installed site ?
Have you tried to remove the theme, go back to default and to reinstall it ?
Forum: Plugins
In reply to: [Plugin: Capability Manager] Error trying to connect to admin panelNone of this files are from the Capability Manager plugin. All them are WordPress core files.
Perhaps I would ask on the Codestyling Manager forum.
Forum: Plugins
In reply to: Capsman: How do I edit capabilities listCreate the new capability by using the box creation provided. Do it on the role you want it to be added.
Forum: Plugins
In reply to: [Plugin: Capability Manager] How to switch the language?What language are you triying and what language have your WordPress ?
Please, give basic info when asking for support, you’ll have more chances to get an answer 😉
By now there is no way to do it. I will think about including this on a next release as I find it a nice idea.
Forum: Plugins
In reply to: Sideposts CSSForgot that:
Another way to disable the styles is to create a file named ‘alkivia.ini’ in the wp-content folder with this content:
[sideposts] disable-module-styles = OnForum: Plugins
In reply to: [Plugin: SidePosts Widget] CSS file insert location is wrongThis has been fixed. Today will release 2.5.2 with this fix.
Forgot to tell you the easy way: Delete the style.css file (And it will not load anymore).
Another way to disable the styles is to create a file named ‘alkivia.ini’ in the wp-content folder with this content:
[sideposts] disable-module-styles = OnForum: Plugins
In reply to: Sideposts CSSThe easy way: detele the style.css file on the widget folder.
If you’re interested on doing it by a plugin, you need to hook into the ‘ak_sideposts_style_url’ and return an empty string:
function disable_sideposts_styles( $url ) { return ''; } add_filer('ak_sideposts_style_url', 'disable_sidepost_styles');Forum: Plugins
In reply to: [Plugin: SidePosts Widget] CSS file insert location is wrongYou’re right, this is a bug and I submitted an issue to the tracker to be solved in a bugfix release at http://alkivia.org/tracker/view.php?id=194
To disable loading the style, you can insert this code as a plugin:
function disable_sideposts_style( $url ) { return ''; } add_filter('ak_sideposts_style_url', 'disable_sideposts_style');I prefer the function because I have not to declare any global. Using functions also prevents the plugins stop working if the variable name changes in some WP version or if converted to a class in the future. I don’t like accessing globals directly, I think is better to do it with a function.
Some sort of user search is planned in the future. Sorting the lists is up to you by creating a custom list template.