Showing posts from a category on a separate page and applying an extension
Every category in WordPress by default will have a auto-generated page visible at a URL like http://yoursite.com/category/category-a (where category-a is the slug for a category titled Category A ). We call this category page. It is straight forward to use a extension on this page by going to My Theme -> Layouts and Views, then Views tab, and adding a view to set a layout for our desired category page.
The screenshot above applies "Full Width" layout to http://localhost/builder3/category/issues/ ( http://localhost/builder3 is just for example, it can very well be www.yoursite.com) and uses Magazine layout for the display of posts.
The result is:
Let's say we want to have all posts from Issues category appear on a Page titled Issues List and use Magazine extension, follow the steps below. i.e., the objective is to have http://localhost/builder3/issues-list/ appear like the above screenshot.
1. Copy the extension that you would like to be use from parent directory into child directory (Ex.: from wp-content/themes/Builder/extensions/magazine to wp-content/themes/BuilderChild-Thinner/extensions/magazine)
Note: If the child theme directory does not contain extensions directory, create it.
2.
a. Rename the extension.
b. Edit functions.php to remove the if ( ! is_singular() ) ...
limitation. Add query_posts() call just above the loop to restrict the posts from your desired category.
Ex.:
a. Rename wp-content/themes/BuilderChild-Thinner/extensions/magazine to wp-content/themes/BuilderChild-Thinner/extensions/magazine-issues
Edit wp-content/themes/BuilderChild-Thinner/extensions/magazine-issues/style.css.
Change
Name: Magazine Layout
to
Name: Magazine Layout for Issues List Page
b. Edit wp-content/themes/BuilderChild-Thinner/extensions/magazine-issues/functions.php.
Change
// Calling only if not on a singular if ( ! is_singular() ) { add_action( 'builder_layout_engine_render', array( &$this, 'change_render_content' ), 0 ); }
to
// Calling only if not on a singular //if ( ! is_singular() ) { add_action( 'builder_layout_engine_render', array( &$this, 'change_render_content' ), 0 ); //}
Add
<?php $paged = (get_query_var('paged')) ? get_query_var('paged') : 1; query_posts("cat=18&paged=$paged"); ?> <!-- Change 18 to ID of category from which posts should be shown -->
immediately above
<?php while ( have_posts() ) : // the loop ?>
3. Create a layout and apply the extension from the previous step.
Ex.:
4. Create a Page in which you would like to have the posts from the specific category appear and set the layout to the one created in above step.
Ex.:
That's it!
If you would like to show posts from another category similarly on another Page, repeat the above process to create a new extension while remembering to specify the category ID and apply it to the Page.
Update
One extra step has to be done in addition to the above to apply the above method in the case of Featured Image Grid & Showcase .
Change
global $post, $wp_query; $args = array( 'ignore_sticky_posts' => true, 'posts_per_page' => 9, 'meta_key' => '_thumbnail_id', 'paged' => get_query_var( 'paged' ), ); $args = wp_parse_args( $args, $wp_query->query ); query_posts( $args ); // Query only posts with a feature image set.
to
global $post/*, $wp_query; $args = array( 'ignore_sticky_posts' => true, 'posts_per_page' => 9, 'meta_key' => '_thumbnail_id', 'paged' => get_query_var( 'paged' ), ); $args = wp_parse_args( $args, $wp_query->query ); query_posts( $args );*/ // Query only posts with a feature image set.
Modifying Portfolio extension so that 2 images appear per row rather than 3
Before:
After:
Note:
- The width and height values used in the steps below are to be taken only as an example and are not to be treated absolute. They may have to be changed depending on child theme you are using and the layout width.
- We are going to edit the extension in parent theme directly. When Builder is updated, our custom edits will be erased. Therefore you have to either take a backup of the extension before updating and re-apply the changes or duplicate the extension, place it in child theme while making sure function names are changed.
Child theme: BuilderChild-Acute
Layout width: 980px
1. Edit wp-content/themes/Builder/extensions/portfolio/lib/image-size.php
Change
add_image_size( 'it-portfolio-thumb', 350, 150, true );
to
//add_image_size( 'it-portfolio-thumb', 350, 150, true ); add_image_size( 'it-portfolio-thumb', 450, 193, true );
2. Edit wp-content/themes/Builder/extensions/portfolio/style.css
Change
.portfolio-post-wrap { display: inline-block; width: 32.8%; vertical-align: top; }
to
.portfolio-post-wrap { display: inline-block; /* width: 32.8%; */ width: 49%; vertical-align: top; }
and
.portfolio-post img { width: 100%; max-width: 350px; height: auto; margin: 0; }
to
.portfolio-post img { /*width: 100%; max-width: 350px;*/ max-width: 450px; height: auto; margin: 0; }
3. Refresh the page on the front-end for which Portfolio extension is being applied. If the new sized thumbnails do not appear, install and run Regenerate Thumbnails plugin.
Displaying archive/category title above the output of Portfolio extension
1. Copy the extension from parent Builder directory into the child theme under extensions directory so that wp-content/themes/ BuilderChild-themename /extensions/portfolio is present.
2. Edit wp-content/themes/ BuilderChild-themename /extensions/portfolio/functions.php.
Above
<div class="loop-content">
paste
<div class="loop-header"> <h4 class="loop-title"> <?php the_post(); if ( is_category() ) { // Category Archive $title = sprintf( __( 'Archive for %s', 'it-l10n-Builder' ), single_cat_title( '', false ) ); } else if ( is_tag() ) { // Tag Archive $title = sprintf( __( 'Archive for %s', 'it-l10n-Builder' ), single_tag_title( '', false ) ); } else if ( is_tax() ) { // Tag Archive $title = sprintf( __( 'Archive for %s', 'it-l10n-Builder' ), builder_get_tax_term_title() ); } else if ( is_day() || is_time() ) { // Day-Specific Archive $title = sprintf( __( 'Archive for %s', 'it-l10n-Builder' ), get_the_time() ); } else if ( is_month() ) { // Month-Specific Archive $title = sprintf( __( 'Archive for %s', 'it-l10n-Builder' ), get_the_time( 'F Y' ) ); } else if ( is_year() ) { // Year-Specific Archive $title = sprintf( __( 'Archive for %s', 'it-l10n-Builder' ), get_the_time( 'Y' ) ); } else if ( is_author() ) { // Author Archive $title = sprintf( __( 'Author Archive for %s', 'it-l10n-Builder' ), get_the_author() ); } else if ( function_exists( 'is_post_type_archive' ) && is_post_type_archive() && function_exists( 'post_type_archive_title' ) ) { // Post Type Archive $title = post_type_archive_title( '', false ); } else { // Default catchall just in case $title = __( 'Archive', 'it-l10n-Builder' ); } if ( is_paged() ) printf( '%s – Page %d', $title, get_query_var( 'paged' ) ); else echo $title; rewind_posts(); ?> </h4> </div>
How to change number of posts when using Featured Image Grid & Showcase extension
Copy the extension to your child theme and edit its functions.php.
Ex.: Copy wp-content/themes/Builder/extensions/image-grid
to wp-content/themes/BuilderChild-Default/extensions/image-grid
(create extensions directory in child theme directory if doesn't exist) and edit wp-content/themes/BuilderChild-Default/extensions/image-grid/functions.php
.
Set your desired number of posts in the following line:
'posts_per_page' => 6,
Showing products from a specific WP e-Commerce category in Slider extension
When Slider extension is applied to a layout or view and that layout is used in a listing page (Ex.: Posts page, archives), the sliding images will be featured images attached to the blog posts. When you have WP e-Commerce plugin activated and would like to show images attached to products belonging to a specific WPEC category in the Slider, follow this:
Copy the extension to your child theme and edit its functions.php.
Ex.: Copy wp-content/themes/Builder/extensions/slider
to wp-content/themes/BuilderChild-Depot/extensions/slider
(create extensions directory in child theme directory if doesn't exist) and edit wp-content/themes/BuilderChild-Depot/extensions/slider/functions.php
.
Change
$args = array( 'posts_per_page' => 6, 'order' => 'date', 'meta_key' => '_thumbnail_id' );
to
$args = array( 'posts_per_page' => 6, 'order' => 'date', 'meta_key' => '_thumbnail_id', 'post_type' => 'wpsc-product', 'wpsc_product_category' => 'product-category' );
In the above replace product-category
with the slug of WP e-Commerce category from which you would like Product Thumbnails to be shown in the slider.
If you would like to know how to replace the standard blog posts that appear below the slider with products added in WP e-Commerce (screenshot below), see this forum topic.
Displaying Slideshow at the top of Magazine layout
If you would like to display PluginBuddy Slideshow above the posts when using Magazine extension, follow this:
Copy the extension to your child theme and edit its functions.php.
Ex.: Copy wp-content/themes/Builder/extensions/magazine
to wp-content/themes/BuilderChild-Expansion-Blue/extensions/magazine
(create extensions directory in child theme directory if doesn't exist) and edit wp-content/themes/BuilderChild-Expansion-Blue/extensions/magazine/functions.php
.
Above
<?php if ( have_posts() ) : ?>
add
<div id="my-slideshow-container"><?php echo do_shortcode('[pb_slideshow group="0"] '); ?></div>
In the above replace 0
with the ID of Slideshow group that you would like to be shown.
The following has been added at the end of child theme's style.css (WP dashboard -> Appearance -> Editor) in this particular example:
#my-slideshow-container { margin-bottom: 4em; } .magazine-post-wrap { width: 43% !important; }
How to show Read More below each excerpt when using 'Teasers Layout - Image Left' extension
-
Before
-
After
When 'Teasers Layout - Image Left' extension is applied to a listing page 'Read More' link appears only if the post has more than 60 words. If you would like to show Read More at the bottom of every excerpt regardless of the number of words in the post, follow this:
1. Copy the extension to your child theme under extensions
directory and edit its functions.php
.
Ex.: Copy wp-content/themes/Builder/extensions/post-teasers-left
to wp-content/themes/BuilderChild-Acute-Purple/extensions/post-teasers-left
(create extensions directory in child theme directory, it doesn't exist by default) and edit wp-content/themes/BuilderChild-Acute-Purple/extensions/post-teasers-left/functions.php
.
2. Below
<?php the_excerpt(); ?>
paste
<p><a href="<?php the_permalink(); ?>" class="more-link">Read More →</a></p>
3. Change
function excerpt_more( $more ) { global $post; return '...<p><a href="'. get_permalink( $post->ID ) . '" class="more-link">Read More→</a></p>'; }
to
function excerpt_more( $more ) { global $post; return ''; }
How to right align "Read More" box and move it up a bit when using 'Teasers Layout - Image Left' extension
In this example, Builder Child Theme - Adept is the active theme.
Before
After
1. Copy the extension to your child theme under extensions
directory and edit its functions.php
.
Ex.: Copy wp-content/themes/Builder/extensions/post-teasers-left
to wp-content/themes/BuilderChild-Adept/extensions/post-teasers-left
(create extensions directory in child theme directory, it doesn't exist by default) and edit wp-content/themes/BuilderChild-Adept/extensions/post-teasers-left/functions.php
.
2. Change
return '...<p><a href="'. get_permalink( $post->ID ) . '" class="more-link">Read More→</a></p>';
to
return '...<p class="more-link-para"><a href="'. get_permalink( $post->ID ) . '" class="more-link">Read More→</a></p>';
3. Add the following at the end of child theme's style.css
(WP dashboard -> Appearance -> Editor):
.more-link-para { margin-top: 0; float: right; }
How to show comments count below post titles when using Portfolio extension
1. Copy the extension to your child theme under extensions
directory (create extensions directory in child theme directory, it doesn't exist by default) and edit its functions.php
.
Ex.: Copy wp-content/themes/Builder/extensions/portfolio
to wp-content/themes/BuilderChild-Covell/extensions/portfolio
and edit wp-content/themes/BuilderChild-Covell/extensions/portfolio/functions.php
.
2. Below
<span class="portfolio-title"><a href="<?php the_permalink(); ?>"><?php the_title(); ?></a></span>
paste
<?php do_action( 'builder_comments_popup_link', '<div class="entry-meta"><span class="comments">', '</span></div>', __( '%s', 'it-l10n-Builder' ), __( '', 'it-l10n-Builder' ), __( '(1 Comment)', 'it-l10n-Builder' ), __( '(% Comments)', 'it-l10n-Builder' ) ); ?>
3. Add the following at the end of child theme's style.css (WP dashboard -> Appearance -> Editor):
.portfolio-post-wrap .entry-meta { text-align: center; } .portfolio-post-wrap .entry-meta .comments a { color: #cfab8e; font-size: 0.9em; }
How to show a certain number of posts for a particular category page while showing another number of posts for other pages when using Magazine extension
See #1 in this forum post.
jQuery Masonry Extension for Pinterest-Like Posts Display
jQuery Masonry comes included in WordPress core library beginning 3.5.
I (Sridhar) have modified a copy of iThemes Builder's magazine extension into masonry
extension with some help from Ronald.
When this extension is applied to a layout and this layout applied to any webpage in the site that has a list of posts, the posts will automatically appear in boxes in a Pinterest-style display. Included in the extension is Infinite Scroll jQuery script which automatically loads next set of posts as the user scrolls down.
Next Page link disappears as the user scrolls down and next set of posts will auto load
Live Demo (with few modifications on top of the extension)
1. Go here and click on ZIP button to download the extension. Extract the downloaded zip file and rename the resulting folder to masonry
.
2. Using a FTP client or cPanel file manager, navigate to wp-content/themes and inside your active theme (should ideally be a child theme of Builder).
3. Create a directory named extensions
if one doesn't already exist.
4. Upload the masonry
folder from step 1 into the above extensions
folder.
Example
5. In WordPress dashboard, go to My Theme -> Layouts & Views and edit the layout that is being used for your Posts (blog) page or archive page. If there is currently no such layout, create (either from scratch or by duplicating an existing one) layout(s) that you wish to be applied to your site's Posts (blog) page and/or archives.
From Extension dropdown, select Masonry Layout
.
Example
Save the layout.
6. Now visit the page that uses above layout to see extension in action.
Note:
The extension is set to show posts in 3 columns by default in a 960px wide layout. Therefore you might want to ensure that content module does not have any sidebar.
Also depending on which child theme is being used, only 2 columns might be appearing. This can be fixed by adjusting the width of ".builder-module-content .hentry" as noted in the extension's style.css.
Width of each post block can be changed in extension's style.css. Note the CSS and comments for ".builder-module-content .hentry"
This should be considered as unofficial extension and support is not guaranteed.
How to remove date when using Teasers Layout - Image Left extension
Before:
After:
1. Copy the extension to your child theme under extensions
directory (create "extensions" directory in child theme directory, it doesn't exist by default) and edit its functions.php
.
Ex.: Copy wp-content/themes/Builder/extensions/post-teasers-left
to wp-content/themes/BuilderChild-Default/extensions/post-teasers-left
and edit wp-content/themes/BuilderChild-Default/extensions/post-teasers-left/functions.php
.
2. Change
<?php printf( __( 'Posted on %s', 'it-l10n-Builder' ), '<span class="the_date">' . get_the_date() . '</span>' ); ?>
to
<?php //printf( __( 'Posted on %s', 'it-l10n-Builder' ), '<span class="the_date">' . get_the_date() . '</span>' ); ?>
How to add a widgetized sidebar under Magazine extension's content area
If content module does not have a sidebar and if you would like to add a 3-column sidebar below it, it is pretty straight forward to add a widget bar module below the content module.
However, when content module has a sidebar and you would like to add a multiple widget columns below the content area then the following method can be used.
1. Add the following in child theme's functions.php
before closing PHP tag, if any:
// register our sidebar add_action('widgets_init', 'register_my_content_sidebar'); function register_my_content_sidebar() { $sidebar = array( 'id' => 'my_content_sidebar', 'name' => __('Content Sidebar'), 'description' => __( 'This widget section ...' ), 'before_widget' => '<div id="%1$s" class="widget %2$s">', 'after_widget' => '</div>', 'before_title' => '<h4 class="widget-title">', 'after_title' => '</h4>' ); register_sidebar($sidebar); }
2. Copy the extension from parent Builder directory into the child theme under extensions directory so that (for example,) wp-content/themes/BuilderChild-Default/extensions/magazine is present.
Edit wp-content/themes/BuilderChild-Default/extensions/magazine/functions.php.
Above
<?php else : // do not delete ?>
add
<?php // add the sidebar if ( is_active_sidebar( 'my_content_sidebar' ) ) { echo '<div class="my-content-sidebar">'; dynamic_sidebar( 'my_content_sidebar' ); echo '</div>'; } ?>
3. Add the following at the end of child theme's style.css
(WP dashboard -> Appearance -> Editor):
.my-content-sidebar { float: left; padding-left: 1em; padding-right: 1em; } .my-content-sidebar .widget { width: 32%; float: left; overflow: hidden; margin-right: 1em; } .my-content-sidebar .widget:last-child { margin-right: 0; }
Thanks to Ronald for providing the base code here .
How to display Posts from a specific category on a Page in Magazine Extension style
The instructions below outline how to have all posts from a category named Issues (ID = 18) appear on a Page titled Issues List (slug = issues-list ).
1. Ensure that pretty permalinks are enabled. Create a Page titled Issues . Do not enter any content in the Page. Just enter the title and publish.
2. Save this code as page-issues-list.php. (i.e., page- <<slug>> .php)
- Set a title for this Page in line 12.
- Edit the category ID in line 21.
Upload this file to child theme directory.
3. Copy lib directory from parent Builder/extensions/magazine directory into child theme directory.
4. Add this at the end of child theme's style.css.
That's it.
Note: If a layout is applied to this Page, ensure that it (the layout) does not have an extension applied.
Styling ContactBuddy
http://ithemes.com/styling-contactbuddy-using-ithemes-builder-extensions/