maurizio04
Forum Replies Created
-
It is very clear on the example, first line is original (starts with _e written), next line cut out first php statement
<?php _e( 'Written by', 'evolve' ); ?>
that will cut out only the written by, the name still print.
if you want it cleaned you have to delete all the line (i think).sorry we are talking about two different things.
I assumed you wanted to delete the credit line at the end of the page.
The error is caused by too much stuff deleted on that line, i kept the line and cleaned up the functions itself.to remove the written by just on the home page like in my test site https://www.blogma.it you need to edit index.php.
the home part is in line 627, just cut out the echo written by…or all the line if you do not want the author name printed (but that will leave a thick line empty…:<?php _e( 'Written by', 'evolve' ); ?> <strong><?php printf( '<a class="url fn" href="' . get_author_posts_url( $authordata->ID, $authordata->user_nicename ) . '" title="' . sprintf( 'View all posts by %s', $authordata->display_name ) . '">' . get_the_author() . '</a>' ) ?></strong></span>
<strong><?php printf( '<a class="url fn" href="' . get_author_posts_url( $authordata->ID, $authordata->user_nicename ) . '" title="' . sprintf( 'View all posts by %s', $authordata->display_name ) . '">' . get_the_author() . '</a>' ) ?></strong></span>
wrong file…
to remove completely the author line edit file function.php and delete line<?php echo evolve_copy(); }
the function is in functions/functions.php
Forum: Alpha/Beta/RC
In reply to: WP needs a working backup/restoreThe plugin way is a bit strange.
I haven’t seen a single backup program with an optional restore…
WP is now a BIG tool, and it should have a proper backup/restore like a real OS, Seven for example ??Forum: Alpha/Beta/RC
In reply to: My IE8 is not obsolete!!!!I’m not “stuck” on XP, i’m just keeping it until I can, and it looks 2011 will be the last year.
I have a collection of all Windows boxes, the Vista one was never opened, the Seven Ultimate was tried on the notebook, but is it so mac alike and no classic mode that every time i went back.Forum: Alpha/Beta/RC
In reply to: My IE8 is not obsolete!!!!I have the latest browser on XP so i’ll keep clicking on dismiss….
And i’m using Firefox anyway for the dashboard.what is really annoying anyway is not the browser warning but the complete dashboard translation. I cannot use the italian one, every word is translated….for me the dashboard should stay in English.
How about you cutout from localization some terms, dashboard, theme and plugin just for starter ??
Forum: Themes and Templates
In reply to: [evolve] [Theme: EvoLve] Page Menu CreationFirst write the page, next make it a menu….
Forum: Alpha/Beta/RC
In reply to: My IE8 is not obsolete!!!!@ipstenu
linked image, it says RC1 but is the same with RC2.
If WP is flagging also Ie7 I don’t know what signature will send IE8 in compatibility mode….I used it only in compat mode for a long time, now it is ok.Forum: Alpha/Beta/RC
In reply to: My IE8 is not obsolete!!!!I’ve got the message also on the last Firefox…nahhhhhh
It’s a clear case of browser persecution…
Ok, after Firefox decided to update itself against my will, the machines are taking over….BTW I use them both, but without a bidirectional sync I still like more IE for casual browsing. Bookmarks design in Firefox is terrible.
Forum: Alpha/Beta/RC
In reply to: Twenty Eleven theme … are you guys joking?1024pix wide is and should be the standard horizontal max resolution or better fixed resolution on a theme.
I hate themes with a fixed and a fluid design that will never work.Just do the basic theme at 1024 (980real) and put extra widget outside the space when resolution of user is huge…
Yes, it is difficult but is the best way…BTW, 1024pix at 150% is perfect for a 22inch…the new generations, already deaf for ipod usage will be blind soon for too much browsing with a 3,2 inch screen ??
Forum: Alpha/Beta/RC
In reply to: RC2 crashed siteRestore from my ISP very good.
I did it again, same result and I remember about the old problems of file permissions.I forgot about it because RC1 did not trigger it.
RC2 left some files not at 755 perms…i should put back chmod 755 in the config.php…..
Forum: Alpha/Beta/RC
In reply to: My IE8 is not obsolete!!!!again, screenshot
Forum: Alpha/Beta/RC
In reply to: My IE8 is not obsolete!!!!Also Firefox 4 is obsolete…
Gee…..Forum: Themes and Templates
In reply to: [evolve] [Theme: EvoLve] Tested with WP 3.2RC1, no problemsThe new update is still cutting out ADS (see old topics for fix) and there is only 1 line added apart advertising.
The theme is practically only updated on the pay versions.Forum: Themes and Templates
In reply to: [evolve] Move Post Title Above Post<h1 class="entry-title"><a href="<?php the_permalink(); ?>" rel="bookmark" title="Permanent Link to <?php the_title(); ?>"><?php if ( get_the_title() ){ the_title();}else{ _e( 'Untitled', 'evolve' ); } ?></a></h1>
it is at line 607 of index.php and it’s in a big if (all the code is an endless string of if else….
you can move it in line 622 empty, just after the vcard and before the end of the if (}).
-m