cbenson583

Forum Replies Created

Viewing 25 posts - 76 through 100 (of 155 total)
Sep 9, 2014 at 3:12 pm
#20456
Member
cbenson583
OP

Any update on this? We are trying to schedule an upgrade to our site and I’d like to include this version.

Sep 5, 2014 at 2:11 pm
#20394
Member
cbenson583
OP

Cool when will the fixes in the demo page for the breadcrumb be available? Also, can you add order by title as an option?

Sep 2, 2014 at 8:07 pm
#20287
Member
cbenson583
OP

Anything new on this yet?

Aug 18, 2014 at 4:29 pm
#19856
Member
cbenson583
OP

Is there an estimated availability date for this?

Aug 12, 2014 at 7:44 pm
#19631
Member
cbenson583
OP

Is it also possible to have the categories in the advanced search displayed in hierarchical order instead of just alphabetically?

Aug 11, 2014 at 12:35 pm
#19583
Member
cbenson583
OP

Thanks

Aug 7, 2014 at 9:30 pm
#19479
Member
cbenson583
OP

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.

Aug 5, 2014 at 9:04 pm
#19339
Member
cbenson583
OP

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.

Jul 16, 2014 at 6:25 pm
#18570
Member
cbenson583
OP

Great – is it close? And what will the Advanced Search provide?

Jul 7, 2014 at 2:42 pm
#18231
Member
cbenson583
OP

We really need this and we have been told within the month for the past 2 months. Any chance of getting this soon?

Jul 1, 2014 at 5:31 pm
#17951
Member
cbenson583
OP

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

Jul 1, 2014 at 1:38 am
#17935
Member
cbenson583
OP

Any update on a new version of WPDM-Archive?

Jun 17, 2014 at 6:25 pm
#17390
Member
cbenson583
OP

Any progress on the updated archive add-on?

Jun 10, 2014 at 6:15 pm
#17081
Member
cbenson583
OP

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.

Jun 5, 2014 at 8:02 pm
#16841
Member
cbenson583
OP

We really need this for a major launch. Any chance the updated archive add-on will be available soon?

Jun 5, 2014 at 8:00 pm
#16840
Member
cbenson583
OP

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;

Jun 2, 2014 at 4:48 pm
#16593
Member
cbenson583
OP

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.

Jun 2, 2014 at 4:33 pm
#16592
Member
cbenson583
OP

I have resolved this. It was an issue with jquery.

May 28, 2014 at 12:40 pm
#16414
Member
cbenson583
OP

Any update on when a new version of wpdm-archive will be available?

May 21, 2014 at 3:49 pm
#16043
Member
cbenson583
OP

Any update on when the wpdm-archive update will be available? Thx

May 12, 2014 at 4:07 pm
#15427
Member
cbenson583
OP

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.

May 1, 2014 at 2:01 pm
#15135
Member
cbenson583
OP

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.

Apr 23, 2014 at 1:26 pm
#14746
Member
cbenson583
OP

Any update on this?

Apr 18, 2014 at 3:44 pm
#14607
Member
cbenson583
OP

Any update on when the wpdm-archive update with sort order and full breadcrumbs will be available?

Apr 17, 2014 at 8:37 pm
#14582
Member
cbenson583
OP

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 );
}

Viewing 25 posts - 76 through 100 (of 155 total)