Support

Account

Forum Replies Created

  • Good to know I’m not alone, haha. Thanks for linking that plugin, I will try it.

  • Thanks for the help, changed few extra strings to make everything work as I want to. As for value ‘1’ or TRUE(both work fine) I misspelled and wrote show_main in the key instead of show-main, heh.

    In case if someone will need this

    <?php 
    
    $posts = get_posts(array(
        'cat' => $current,
        'post_type' => array( 'page' ),
    	'numberposts'       => -1,
    	'meta_query' => array(
    		array(
    			'key' => 'show-main',
    			'value' => '1',
    		)
    		)
    		)
    );
    
    if( $posts ): ?>
    		
    	<?php foreach( $posts as $post ): 
    		
    		setup_postdata( $post )
    		
    		?>
    loop
    
    	<?php endforeach; ?>
    	
    	<?php wp_reset_postdata(); ?>
    
    <?php endif; ?>
  • Thanks for the reply! I’ve come up with this code but unfortunately it still doesn’t work, can you tell me what’s wrong here?

    <?php 
    
    $posts = get_posts(array(
        'cat' => $current,
        'post_type' => array( 'page' ),
    	'meta_query' => array(
    		array(
    			'key' => 'show_main',
    			'compare' => '==',
    			'value' => '1'
    		)
    		)
    		)
    );
    
    if( $posts ): ?>
    	
    		
    	<?php foreach( $posts as $post ): 
    		
    		setup_postdata( $post )
    		
    		?>
    loop
    	<?php endforeach; ?>
    	
    	
    	<?php wp_reset_postdata(); ?>
    
    <?php endif; ?>
  • Yeah, i want to use thumbnail or medium size images inside catalog(not on product page) on front end, to make site loading a little bit lighter

  • Thanks for the reply,

    I have a simple catalog and I want thumbnails to be used on preview, all pictures is being uploaded via admin site, watermark automatically applying by “Image Watermark” plugin to full-size images.

  • I’m currently using free version(and object was chosen). Thank you so much for your input, worked like charm :3

Viewing 7 posts - 1 through 7 (of 7 total)