Shahriar

Forum Replies Created

Viewing 25 posts - 1,526 through 1,550 (of 12,513 total)
in reply to: Card Images are not showing up #111396

Shahriar
Moderator

Download Manager doesn’t control your blog posts. By card image are you referring to the featured image? Anyway, please send temporary admin login info in private reply. I will check if there is any issue with package featured images.

in reply to: Pls cannel my auto renew function #111395

Shahriar
Moderator
This reply has been marked as private.
in reply to: License Invalid after Update #111394

Shahriar
Moderator

Looks like you have missed my previous reply. I requested the temporary login info to check the issue on your site. Your license key isn’t linked to any domain so it should work.

in reply to: I need to disable page/post link #111379

Shahriar
Moderator

You can do that by customizing your link/page template. Clone the template you are using now and remove all link tags from there. For example, replace [page_link] with just [title]

Here is a detailed blog post on template customization https://www.wpdownloadmanager.com/building-a-wordpress-download-manager-link-template-from-scratch/

in reply to: Changing domain vs license key #111376

Shahriar
Moderator

Follow these steps to update the plugin,

1 ) Deactivate and delete the old version. You won’t lose any data.
2 ) Download latest version from here https://www.wpdownloadmanager.com/user-dashboard/?udb_page=purchases
3 ) Install the latest version and activate the license key.

in reply to: Problems after updating to 4.8 #111375

Shahriar
Moderator

Deactivate the plugin from network admin. Then activate on each subsite separately.

in reply to: Licence Key #111358

Shahriar
Moderator
This reply has been marked as private.
in reply to: Licence Key #111354

Shahriar
Moderator

Do you have the latest version 4.9.8?


Shahriar
Moderator

Please send me the URL to check.

in reply to: Changing domain vs license key #111349

Shahriar
Moderator

Your key is linked to tps-activ.com Do you want to change the domain again? If you are facing the issue in this domain then install the latest version 4.9.8 That should fix license issue.

in reply to: "Lock" not working properly #111348

Shahriar
Moderator

Hi,

The issue was related to the Image Button add-on. I have deactivated it to fix the issue. Locks are working now https://samodding.com/download/los-santos-city-police-pack/

The add-on will be deprecated soon and we will add additional options in Downloads > Settings > UI Interface settings to implement a similar feature.

Thanks.

in reply to: Tags Issue #111347

Shahriar
Moderator

Which shortcode are you using to display downloads from a tag? There must be a way to show only downloads just like you want. WPDM tags usually exclude normal posts from the query result.

in reply to: Currency in WP Pro Membership #111345

Shahriar
Moderator

Please install the Premium Package ( https://www.wpdownloadmanager.com/download/premium-package-wordpress-digital-store-solution/ ) to customize the currency option.

If you have already installed it then go to Downloads > Settings > Premium Package > Payment > Currency Configuration to change the currency.

in reply to: Problems after updating to 4.8 #111341

Shahriar
Moderator

Please send temporary wp-admin login info in private reply to check the issue.

in reply to: Email Lock Single File Download #111340

Shahriar
Moderator

Hi,

Single file download is not possible in an email locked package.

Best regards.

in reply to: Changing domain vs license key #111339

Shahriar
Moderator

Please try now.

in reply to: "Lock" not working properly #111328

Shahriar
Moderator

Please send temporary wp-admin login info in private reply to check the issue.

in reply to: Not able to activate license key #111327

Shahriar
Moderator
This reply has been marked as private.
in reply to: Order_by "Title" Order="ASC" not working #111321

Shahriar
Moderator

It is case sensitive. Please copy the code I sent above. It has to be title not Title

in reply to: Tags Issue #111320

Shahriar
Moderator

You have to create another custom taxonomy if you want that. You can add the following code to your theme’s functions.php file to create a custom taxonomy. Adjust the slug as you want. I have set it to download-tag

add_action( 'init', 'wpdm_create_download_tag_taxonomy', 0 );
function wpdm_create_download_tag_taxonomy() {

    $labels = array(
        'name'                       ► _x( 'Download Tags', 'taxonomy general name', 'download-manager' ),
        'singular_name'              ► _x( 'Download Tag', 'taxonomy singular name', 'download-manager' ),
        'search_items'               ► __( 'Search Download Tags', 'download-manager' ),
        'popular_items'              ► __( 'Popular Download Tags', 'download-manager' ),
        'all_items'                  ► __( 'All Download Tags', 'download-manager' ),
        'parent_item'                ► null,
        'parent_item_colon'          ► null,
        'edit_item'                  ► __( 'Edit Download Tag', 'download-manager' ),
        'update_item'                ► __( 'Update Download Tag', 'download-manager' ),
        'add_new_item'               ► __( 'Add New Download Tag', 'download-manager' ),
        'new_item_name'              ► __( 'New Download Tag Name', 'download-manager' ),
        'separate_items_with_commas' ► __( 'Separate Download Tags with commas', 'download-manager' ),
        'add_or_remove_items'        ► __( 'Add or remove Download Tags', 'download-manager' ),
        'choose_from_most_used'      ► __( 'Choose from the most used Download Tags', 'download-manager' ),
        'not_found'                  ► __( 'No Download Tags found.', 'download-manager' ),
        'menu_name'                  ► __( 'Download Tags', 'download-manager' ),
    );

    $args = array(
        'hierarchical'          ► false,
        'labels'                ► $labels,
        'show_ui'               ► true,
        'show_admin_column'     ► true,
        'update_count_callback' ► '_update_post_term_count',
        'query_var'             ► true,
        'rewrite'               ► array( 'slug' ► 'download-tag' ),
    );

    register_taxonomy( 'download-tag', 'wpdmpro', $args );
}
in reply to: Sorting by advanced custom fields? #111319

Shahriar
Moderator

You can utilize the wpdm_embed_category_query_params hook to modify the query paramter to sort packages by custom field. Add the following code to your theme’s functions.php file. Based on the custom filed value type use meta_value_num or meta_value Also make sure you are using the correct meta_key name. I have added the __wpdm_ part here because all fields in file input array are saved in this format.

function wpdm_modify_category_query_params( $params ){
    $params['orderby'] = 'meta_value_num';
    $params['meta_key'] = "__wpdm_"."acf_CustomOrdering_Order";

    return $params;
}
add_filter('wpdm_embed_category_query_params', 'wpdm_modify_category_query_params');
in reply to: 500 error on download – too many redirects #111316

Shahriar
Moderator

Please install the latest version of WPDM – Amazon S3 add-on to fix the issue. Looks like your version isn’t compatible with the latest WPDM.

in reply to: File Cart Multiple Files Does Not Show Complete List #111315

Shahriar
Moderator

Please send temporary wp-admin login info in private reply to check the issue. The cart should display all files.

in reply to: License invalid…. again… #111314

Shahriar
Moderator

Hi,
If you are changing the domain, unlock the key from the old domain. You can do that from your WPDM dashboard or just send me the order id. I will unlock the key.

If you are getting the error without moving the license to another domain, Please install the latest version to fix the issue. Follow these steps to update the plugin,
1 ) Deactivate and delete the old version. You won’t lose any data.
2) Download latest version from here https://www.wpdownloadmanager.com/user-dashboard/?udb_page=purchases
3 ) Install the latest version and activate the license key.

If you were facing trouble with auto-update from plugins page, logout and then login again from your Downloads > Settings > Updates tab. That should fix the issue.
Thanks.

in reply to: Download Manger Pro Subdomain #111312

Shahriar
Moderator

Hi, You need another license for that. Pro works only on single site/subsite. Thanks.

Viewing 25 posts - 1,526 through 1,550 (of 12,513 total)