Edit File: loop-megamenu-product.php
<?php /** * Template for displaying posts inside mega menus * * To override this template copy it to <theme_root>/includes/ directory. * * @package themify * @since 1.0.0 */ global $post, $product; $dimensions = apply_filters( 'themify_mega_menu_image_dimensions', array( 'width' => themify_get( 'setting-mega_menu_image_width', 180 ), 'height' => themify_get( 'setting-mega_menu_image_height', 120 ) ) ); ?> <article class="post type-<?php echo get_post_type(); ?>"> <figure class="post-image"> <a href="<?php echo themify_get_featured_image_link(); ?>"> <?php echo themify_get_image('ignore=true&w='. $dimensions['width'] .'&h=' . $dimensions['height']); ?> </a> </figure> <?php echo $product->get_price_html(); ?> <p class="post-title"> <a href="<?php echo themify_get_featured_image_link(); ?>"> <?php echo the_title_attribute( 'echo=0&post='.$post->ID ); ?> </a> </p> </article> <!-- /.post -->
Back to File Manager