BuilderChild-Expansion
(Difference between revisions)
(Added == Expansion demo sites Layouts and Views export files ==) |
(→Expansion demo sites Layouts and Views export files) |
||
| Line 11: | Line 11: | ||
[http://cl.ly/2j1I321r2b2I0p1P3F2A Expansion Red Demo Site Layouts & Views export file] | [http://cl.ly/2j1I321r2b2I0p1P3F2A Expansion Red Demo Site Layouts & Views export file] | ||
| − | [http:// | + | [http://demos.ithemes.com/expansion-blue/files/builder-export-data/export-4f27e66f516357.30887358/builder-export-expansion-blue-demo-site-layouts-and-views-export.zip Expansion Blue Demo Site Layouts & Views export file] |
To import this zip file, go to My Theme -> Settings -> Import / Export. | To import this zip file, go to My Theme -> Settings -> Import / Export. | ||
Revision as of 13:41, March 26, 2012
Contents |
Expansion demo sites Layouts and Views export files
Expansion Demo Site Layouts & Views export file
Expansion Red Demo Site Layouts & Views export file
Expansion Blue Demo Site Layouts & Views export file
To import this zip file, go to My Theme -> Settings -> Import / Export.
How to remove "by <author>" below post titles
1. Edit child theme's index.php and archive.php.
Change
<?php printf( __( 'by %s', 'it-l10n-BuilderChild-Expansion-Red' ), '<span class="author">' . builder_get_author_link() . '</span>' ); ?> <?php do_action( 'builder_comments_popup_link', '<span class="comments">· ', '</span>', __( 'Comments %s', 'it-l10n-BuilderChild-Expansion-Red' ), __( '(0)', 'it-l10n-BuilderChild-Expansion-Red' ), __( '(1)', 'it-l10n-BuilderChild-Expansion-Red' ), __( '(%)', 'it-l10n-BuilderChild-Expansion-Red' ) ); ?>
to
<?php //printf( __( 'by %s', 'it-l10n-BuilderChild-Expansion-Red' ), '<span class="author">' . builder_get_author_link() . '</span>' ); ?> <?php do_action( 'builder_comments_popup_link', '<span class="comments"> ', '</span>', __( 'Comments %s', 'it-l10n-BuilderChild-Expansion-Red' ), __( '(0)', 'it-l10n-BuilderChild-Expansion-Red' ), __( '(1)', 'it-l10n-BuilderChild-Expansion-Red' ), __( '(%)', 'it-l10n-BuilderChild-Expansion-Red' ) ); ?>
2. Add the following at the end of child theme's style.css (to take care of this in single posts):
.single-post .hentry .author {
display: none;
}

