Any update on this? We are trying to schedule an upgrade to our site and I’d like to include this version.
Cool when will the fixes in the demo page for the breadcrumb be available? Also, can you add order by title as an option?
Anything new on this yet?
Is there an estimated availability date for this?
Is it also possible to have the categories in the advanced search displayed in hierarchical order instead of just alphabetically?
Thanks
I added the title as an order by option not a search option. We have some users who want the search results alphabetized.
What about getting the breadcrumb to show the full path? I thought this was going to be changed in the update as well. For example, I have a category with subcategories for year. It is confusing because it only shows the year not category->year.
The order_by issues seem to be caused by these if statement which should use && not ||
if($order_by != ‘modified’ || $order_by != ‘date’){
if($extra_search[‘order_by’] != ‘modified’ || $extra_search[‘order_by’] != ‘date’){
I also modified the code to add the title as a sort option.
Great – is it close? And what will the Advanced Search provide?
We really need this and we have been told within the month for the past 2 months. Any chance of getting this soon?
Has a version been released that fixes this or can we get the file or code snippet to change? We would like to upgrade, but need the bulk import to work correctly.
Thx
Any update on a new version of WPDM-Archive?
Any progress on the updated archive add-on?
I still don’t understand how to do this. It shows an items per page, but I am looking for the ability to show for example, the last 3 items entered in a category.
We really need this for a major launch. Any chance the updated archive add-on will be available soon?
I only have on a local site. Basically, no matter what settings I choose in the Category Page settings, I get the Category Page template from my theme without the link template or additional wpdm meta data. I modified the Category Page function where it says:
if(defined(‘WPDM_THEME_SUPPORT’) || !is_post_type_archive(‘wpdmpro’)) return $content;
to the following.It appears the wpdm category pager settings never get used the way the if statement was coded.
if(defined(‘WPDM_THEME_SUPPORT’) || get_post_type()!==’wpdmpro’) return $content;
The issue with the category page settings still occurs. If I read this right, these settings should override my theme category page, correct? And I should see additional information or a link template in place of the excerpt. I am not seeing this when I set the category page settings.
The WPDM-Archive Page setting also continues to show Disabled.
I have resolved this. It was an issue with jquery.
Any update on when a new version of wpdm-archive will be available?
Any update on when the wpdm-archive update will be available? Thx
So, what about the problem that when I add custom fields to a Package, they don’t show up for every package. I’d like them to show up on the add/edit for all packages once I create them so users don’t forget to enter the values.
So, now that 4.10 is out, can we expect an update to wpdm-archive soon? We are particularly interested in the ability to set the sort order and the breadcrumb showing the parent and subfolder.
Thx.
Any update on this?
Any update on when the wpdm-archive update with sort order and full breadcrumbs will be available?
Download Manager 4 is not backwards compatible with versions of WordPress before 3.6. We modified the Download Manager functions.php file to include the WP 3.6. functions it was looking for. These would have to be removed if you upgrade WordPress.
/* Patch to work in 3.5.1
* Whether the passed content contains the specified shortcode
*
* @since 3.6.0
*
* @global array $shortcode_tags
* @param string $tag
* @return boolean
*/
function has_shortcode( $content, $tag ) {
if ( shortcode_exists( $tag ) ) {
preg_match_all( ‘/’ . get_shortcode_regex() . ‘/s’, $content, $matches, PREG_SET_ORDER );
if ( empty( $matches ) )
return false;
foreach ( $matches as $shortcode ) {
if ( $tag === $shortcode[2] )
return true;
}
}
return false;
}
/*
* Patch to work in 3.5.1
* Whether a registered shortcode exists named $tag
*
* @since 3.6.0
*
* @global array $shortcode_tags
* @param string $tag
* @return boolean
*/
function shortcode_exists( $tag ) {
global $shortcode_tags;
return array_key_exists( $tag, $shortcode_tags );
}