• Resolved banesto

    (@banesto)


    Thanks for powerful tool!

    Is there any convenient way to display details and download info (using one of Custom Output Formats) in sidebar?

    i’m trying to achieve similar stucture like wordpress plugin download section – in middle (post content) i have all the info about product and in the sidebar basic facts + download picture & link.

Viewing 1 replies (of 1 total)
  • Thread Starter banesto

    (@banesto)

    ok, i figured it out:

    <?php if (is_single() || is_page()) {
    		if (intval(get_post_meta($post->ID, 'Download', true)) > 0) {
    			$download_section = wp_dlm_parse_downloads('[download#'.get_post_meta($post->ID, 'Download', true).']', 2); ?>
    		<li>
    			<ul>
    				<?php echo $download_section; ?>
    			</ul>
    		</li>
    	<?php
    		}
    	}
    	?>

    i altered function wp_dlm_parse_downloads so that i can assign other format than the default one

Viewing 1 replies (of 1 total)
  • The topic ‘[Plugin: WordPress Download Monitor] download details in sidebar’ is closed to new replies.