cbenson583

Forum Replies Created

Viewing 25 posts - 76 through 100 (of 155 total)
in reply to: New Archive Page Order By Option #20456

cbenson583
Member

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

in reply to: New Archive Page Order By Option #20394

cbenson583
Member

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

in reply to: New Archive Page Order By Option #20287

cbenson583
Member

Anything new on this yet?

in reply to: New Archive Page Order By Option #19856

cbenson583
Member

Is there an estimated availability date for this?

in reply to: New Archive Page Order By Option #19631

cbenson583
Member

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

in reply to: New Archive Page Order By Option #19583

cbenson583
Member

Thanks

in reply to: New Archive Page Order By Option #19479

cbenson583
Member

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.

in reply to: New Archive Page Order By Option #19339

cbenson583
Member

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.

in reply to: wpdm-archive breadcrumb issue #18570

cbenson583
Member

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

in reply to: wpdm-archive breadcrumb issue #18231

cbenson583
Member

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

in reply to: CSV file not imported properly #17951

cbenson583
Member

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

in reply to: wpdm-archive breadcrumb issue #17935

cbenson583
Member

Any update on a new version of WPDM-Archive?

in reply to: controlling 'archive' shortcode #17390

cbenson583
Member

Any progress on the updated archive add-on?

in reply to: Showing a limited # of Packages in a Category #17081

cbenson583
Member

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.

in reply to: wpdm-archive breadcrumb issue #16841

cbenson583
Member

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

in reply to: Upgrade to 4.1.1 #16840

cbenson583
Member

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;

in reply to: Upgrade to 4.1.1 #16593

cbenson583
Member

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.

in reply to: Upgrade to 4.1.1 #16592

cbenson583
Member

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

in reply to: wpdm-archive breadcrumb issue #16414

cbenson583
Member

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

in reply to: wpdm-archive breadcrumb issue #16043

cbenson583
Member

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

in reply to: Custom Fields Issues #15427

cbenson583
Member

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.

in reply to: wpdm-archive breadcrumb issue #15135

cbenson583
Member

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.

in reply to: wpdm-archive breadcrumb issue #14746

cbenson583
Member

Any update on this?

in reply to: wpdm-archive breadcrumb issue #14607

cbenson583
Member

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

in reply to: v4 Causing problems with site #14582

cbenson583
Member

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)