pedrogas_g
Forum Replies Created
-
Forum: Fixing WordPress
In reply to: Problem uploading imagesHi
this problem is a theme probleme
in your functions.php cut all theadd_theme_support( 'post-thumbnails' );and paste all of them to the end of the file.
Forum: Hacks
In reply to: Possibe jQuery plugin?Yes but some programming knowledge will be needed.
Forum: Hacks
In reply to: Help With Custome Page Template Using _wp_page_templateIt’s maybe only me but I believe there’s a better way to do that, try ‘remove_meta_box’, you can play with roles by example you remove the pageparentdiv if the user is not an administrator
Forum: Hacks
In reply to: Website not displaying contentsit’s maybe a theme modification you look if you still use your old theme or there’s a new one installed ?
Forum: Plugins
In reply to: Favicon no show at login, does show in dashboardthe easy way is this
add_action( 'wp_print_scripts', 'favicon4admin' );A Happy New Year to you
Forum: Plugins
In reply to: Favicon no show at login, does show in dashboardadmin_head was removed for the wp_login,
I think you should be use the two for a better semantic, you can use another action as well, but try to keep separed the login of the admin is cleenerForum: Plugins
In reply to: Favicon no show at login, does show in dashboardUse login_head for add your favicon wp_login.php.
add_action( ‘login_head’, ‘favicon4admin’ );
Forum: Plugins
In reply to: [Plugin: WP-Table Reloaded] Custom CSS for rows that contain specific wordYeah that should do it and it’s really most easy to read for anyone who is not used to jQuery
Have nice new years eve.
PedroForum: Plugins
In reply to: How to grab part of screen and add it to WordPress post as a hosted image?I see… I don’t believe that firefox or chrome has the rights for do the screenshot in your computer sorry and good look with your search
Forum: Plugins
In reply to: How to grab part of screen and add it to WordPress post as a hosted image?Sorry i don’t think this another way to do that but maybe with windows live writer and the protocol atom activate in your wordpress look this page http://en.wordpress.com/windows-live-writer/
Forum: Plugins
In reply to: [Plugin: WP-Table Reloaded] Custom CSS for rows that contain specific wordSorry is JQuery(this).find(‘td:last-child’) and not JQuery(this).find(‘:last-child’)
Forum: Plugins
In reply to: [Plugin: WP-Table Reloaded] Custom CSS for rows that contain specific wordwell maybe this with jquery
JQuery(‘#yourtable tr’).each(function(){
if(JQuery(this).find(‘:last-child’).text() == ‘Permanent’)
JQuery(this).addClass(‘Permanent’)
else
JQuery(this).addClass(‘Temporary’)
})Forum: Plugins
In reply to: How to grab part of screen and add it to WordPress post as a hosted image?cmd + shift + 4 mac
snippingTool windowsForum: Plugins
In reply to: [Plugin: WP-Table Reloaded] Custom CSS for rows that contain specific wordsomething like this maybe
foreach($linesAsocArray as $line)
{
$tp = “<tr class=”%s” ><td>%s</td><td>%s</td><tr>”;
echo sprintf($tp,$line[‘Type’],$line[‘Workplace’],$line[‘City’]);
}
and litle css
.Permanent
{
backgrond:green;
}
.Temporary
{
backgrond:red;
}