lelebart
Forum Replies Created
-
i need that too, and i tried to eneque script and style, but afaik it’s not possible: https://lists.automattic.com/pipermail/wp-testers/2010-June/013271.html… maybe a footer js which loads css? mmh.. thinking…
thanks ??
great, glad to be helpful ??
Forum: Plugins
In reply to: [Plugin: Contact Form 7] Generate PDFit could be a very usefull thing, any updates?
Modifying
the-events-calendar.class.php
from:
const DBDATETIMEFORMAT = 'Y-m-d G:i:s';
into:
const DBDATETIMEFORMAT = 'Y-m-d H:i:s';
should work tooForum: Plugins
In reply to: [Plugin: NextGEN Gallery] Add NextGen Gallery button – Error 500I’ve solved changing permission for window.php and tinymce.php in
{root}/wp-content/plugins/nextgen-gallery/admin/tinymce/
from 644 to 744. hthForum: Plugins
In reply to: [Plugin: NextGEN Gallery] [NextGallery] – Internal Server ErrorI’ve solved changing permission for window.php and tinymce.php in
{root}/wp-content/plugins/nextgen-gallery/admin/tinymce/
from 644 to 744. hthForum: Plugins
In reply to: [Plugin: NextGEN Gallery] Using NextGEN inside postI’ve solved changing permission for window.php and tinymce.php in
{root}/wp-content/plugins/nextgen-gallery/admin/tinymce/
from 644 to 744. hth@kgagne: I’ve tried to do the replacement you suggested, with no results.
any ideas?
manually modify the .htacess? o_O
Forum: Plugins
In reply to: [Plugin: NextGEN Gallery] Add NextGen Gallery button – Error 500i’ve the same problem. (what an unusefull post, uhu?)
Forum: Plugins
In reply to: [Plugin: NextGEN Gallery] [NextGallery] – Internal Server Errori’ve the same problem. (what an unusefull post, uhu?)
Forum: Fixing WordPress
In reply to: Truncate Titles in Recent Posts Widget?nevermind, i didn’t get the options’ page of the plugin-in for bbpress topics.. shame on me :/
however i get a Fatal error: Call to undefined function wp_reset_postdata() because i’m using the to-be-updated WordPress 2.9.2, right? can i simply “comment” it?
edit: solved right now as below ^^
// Reset the global $the_post as this query will have stomped on it
if (!function_exists('wp_reset_postdata')) { //for wp < 3.0 by lelebart
function wp_reset_postdata() {
global $wp_query;
if ( !empty($wp_query->post) ) {
$GLOBALS['post'] = $wp_query->post;
setup_postdata($wp_query->post);
}
}
}
wp_reset_postdata();
Forum: Fixing WordPress
In reply to: Truncate Titles in Recent Posts Widget?great! I need something similar for links widget and bbpress discussions (this plugin).. for the plugin I’ll take the code from it and try to modify, but regarding the links widget I really don’t know how/where to start..