Mike Storvick

Forum Replies Created

Viewing 4 posts - 1 through 4 (of 4 total)
in reply to: wpdm_all_packages Display Format #62828

That worked perfectly, thank you so much!!!!!!

in reply to: wpdm_all_packages Display Format #62739

Thank you very much, unfortunately that doesnt seem to be returning any data. I have validated both my test downloads contain data in these fields:

<tr>
<td style=”background-image: url(‘<?php echo $ext ; ?>’);background-size: 32px;background-position: 5px 8px;background-repeat: no-repeat;padding-left$
<?php the_title(); ?>
</td>
<td><?php echo wpdm_acf([ID], “cardatabase/make”); ?></td>
<td><?php echo wpdm_acf([ID], “cardatabase/model”); ?></td>
<td><?php echo wpdm_acf([ID], “cardatabase/year”); ?></td>
<td class=”hidden-xs” data-order=”<?php echo strtotime(get_the_date()); ?>”><?php echo get_the_date(); ?></td>
<td><?php echo $download_link; ?></td>

in reply to: wpdm_all_packages Display Format #62725

Thank you very much for the help. The title is now perfect and I am displaying the columns I intend. With that said, the last part is returning the custom data field:

For my test environment I am doing the following, however it is returning all of my custom fields at once in my table and with no data.

<td><?php echo wpdm_acf::acf_group([ID],’cardatabase’); ?></td>

If my fields are:
[acf_cardatabase_make]
[acf_cardatabase_model]
[acf_cardatabase_year]

How can I retrieve these values specifically for each Download?

Thank you again for all of your help!

in reply to: wpdm_all_packages Display Format #62682

Thank you for the response. I am comfortable editing the php file in a text editor, but I do not see a list of functions or variables to call. I also tried to read the “Theme Functions” document, but the page is empty. I am assuming I need to add additional fields to the below items, but I would need a reference of what variables/fields I can access.

<div class=”w3eden”>
<div class=”container-fluid” id=”wpdm-all-packages”>
<table id=”wpdmmydls-<?php echo $tid; ?>” class=”table table-striped wpdm-all-packages-table”>
<thead>
<tr>
<th class=””><?php _e(‘Title’,’wpdmpro’); ?></th>
<th class=”hidden-sm hidden-xs”><?php _e(‘Categories’,’wpdmpro’); ?></th>
<th class=”hidden-xs”><?php _e(‘Create Date’,’wpdmpro’); ?></th>
<th style=”width: 100px;”><?php _e(‘Download’,’wpdmpro’); ?></th>
</tr>
</thead>
<tbody>
<?php

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