Title: WPSpeak's Replies - page 3 | WordPress.org

---

# WPSpeak

  [  ](https://wordpress.org/support/users/devplus/)

 *   [Profile](https://wordpress.org/support/users/devplus/)
 *   [Topics Started](https://wordpress.org/support/users/devplus/topics/)
 *   [Replies Created](https://wordpress.org/support/users/devplus/replies/)
 *   [Reviews Written](https://wordpress.org/support/users/devplus/reviews/)
 *   [Topics Replied To](https://wordpress.org/support/users/devplus/replied-to/)
 *   [Engagements](https://wordpress.org/support/users/devplus/engagements/)
 *   [Favorites](https://wordpress.org/support/users/devplus/favorites/)

 Search replies:

## Forum Replies Created

Viewing 6 replies - 31 through 36 (of 36 total)

[←](https://wordpress.org/support/users/devplus/replies/page/2/?output_format=md)
[1](https://wordpress.org/support/users/devplus/replies/?output_format=md) [2](https://wordpress.org/support/users/devplus/replies/page/2/?output_format=md)
3

 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[Crayon Syntax Highlighter] Strange behaviour](https://wordpress.org/support/topic/strange-behaviour-3/)
 *  Thread Starter [WPSpeak](https://wordpress.org/support/users/devplus/)
 * (@devplus)
 * [13 years, 5 months ago](https://wordpress.org/support/topic/strange-behaviour-3/#post-3326119)
 * Thanks for your reply.
    Yes, I’ve another id that can replace s
 * Thanks for your reply
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[Genesis Featured Grid] Element below Grid wraps around left(odd) grid](https://wordpress.org/support/topic/element-below-grid-wraps-around-leftodd-grid/)
 *  [WPSpeak](https://wordpress.org/support/users/devplus/)
 * (@devplus)
 * [13 years, 5 months ago](https://wordpress.org/support/topic/element-below-grid-wraps-around-leftodd-grid/#post-3316267)
 * I think the best way is to provide the live site.
 * Clear: both seems the right way to fix the problem, BUT that depends WHERE you
   use it.
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[Genesis Grid] Filter The Image for CPT archive](https://wordpress.org/support/topic/filter-the-image-for-cpt-archive/)
 *  Thread Starter [WPSpeak](https://wordpress.org/support/users/devplus/)
 * (@devplus)
 * [13 years, 5 months ago](https://wordpress.org/support/topic/filter-the-image-for-cpt-archive/#post-3301759)
 * Got some rough ideas, but not sure exactly,
    So from you blogpost, I can see 
   these codes (from the Advance example):
 *     ```
       /**
        * Grid Image Sizes
        *
        */
       function be_grid_image_sizes() {
       	add_image_size( 'be_grid', 175, 120, true );
       	add_image_size( 'be_feature', 570, 333, true );
       }
       add_action( 'genesis_setup', 'be_grid_image_sizes', 20 );
   
       /**
        * Grid Loop Featured Image
        *
        * @param string image size
        * @return string
        */
       function be_grid_loop_image( $image_size ) {
       	global $wp_query;
       	$grid_args = be_grid_loop_pagination();
       	if( ! $grid_args )
       		return $image_size;
   
       	// Feature
       	if( ( ! $wp_query->query_vars['paged'] && $wp_query->current_post < $grid_args['features_on_front'] ) || ( $wp_query->query_vars['paged'] && $wp_query->current_post < $grid_args['features_inside'] ) )
       		$image_size = 'be_feature';
   
       	if( ( ! $wp_query->query_vars['paged'] && $wp_query->current_post > ( $grid_args['features_on_front'] - 1 ) ) || ( $wp_query->query_vars['paged'] && $wp_query->current_post > ( $grid_args['features_inside'] - 1 ) ) )
       		$image_size = 'be_grid';
   
       	return $image_size;
       }
       add_filter( 'genesis_pre_get_option_image_size', 'be_grid_loop_image' );
       ```
   
 * Ok, on the image-archive.php, I want to have a feature. Just grid. So I need 
   to put the code above, and.. Do I just need to remove this part?
 * `add_image_size( 'be_feature', 570, 333, true );`
    and this part
 *     ```
       // Feature
       	if( ( ! $wp_query->query_vars['paged'] && $wp_query->current_post < $grid_args['features_on_front'] ) || ( $wp_query->query_vars['paged'] && $wp_query->current_post < $grid_args['features_inside'] ) )
       		$image_size = 'be_feature';
       ```
   
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[Download Shortcode] [Plugin: Download Shortcode] Security issue](https://wordpress.org/support/topic/plugin-download-shortcode-security-issue/)
 *  [WPSpeak](https://wordpress.org/support/users/devplus/)
 * (@devplus)
 * [13 years, 5 months ago](https://wordpress.org/support/topic/plugin-download-shortcode-security-issue/#post-2934697)
 * Is this issue has been fixed? Feel insecure to use this plugin
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[CSV Importer] Support Post Format](https://wordpress.org/support/topic/support-post-format/)
 *  Thread Starter [WPSpeak](https://wordpress.org/support/users/devplus/)
 * (@devplus)
 * [13 years, 6 months ago](https://wordpress.org/support/topic/support-post-format/#post-3174266)
 * AWESOME
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[Genesis Tabs] [Plugin: Genesis Tabs] work on pages](https://wordpress.org/support/topic/plugin-genesis-tabs-work-on-pages/)
 *  [WPSpeak](https://wordpress.org/support/users/devplus/)
 * (@devplus)
 * [13 years, 10 months ago](https://wordpress.org/support/topic/plugin-genesis-tabs-work-on-pages/#post-2784500)
 * No, it won’t work. Unless you know how to create shortcode for the plugin to 
   be used on the page.
 * Btw, try creating widgetized template.
 * This is a tutorial on how to create 404 widgetized page – [http://genesisthemes.de/en/2011-08/tutorial-widgetized-404-error-page-in-genesis/](http://genesisthemes.de/en/2011-08/tutorial-widgetized-404-error-page-in-genesis/)
 * Maybe you can work around a little bit – create a custom page template (give 
   a new name).

Viewing 6 replies - 31 through 36 (of 36 total)

[←](https://wordpress.org/support/users/devplus/replies/page/2/?output_format=md)
[1](https://wordpress.org/support/users/devplus/replies/?output_format=md) [2](https://wordpress.org/support/users/devplus/replies/page/2/?output_format=md)
3