Shahriar

Forum Replies Created

Viewing 25 posts - 1,526 through 1,550 (of 12,513 total)
Aug 27, 2019 at 6:35 am
#111396
Moderator
Shahriar
Staff OP

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.

Aug 27, 2019 at 6:32 am
#111395
Moderator
Shahriar
Staff OP
This reply has been marked as private.
Aug 27, 2019 at 6:32 am
#111394
Moderator
Shahriar
Staff OP

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.

Aug 26, 2019 at 3:15 pm
#111379
Moderator
Shahriar
Staff OP

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/

Aug 26, 2019 at 2:55 pm
#111376
Moderator
Shahriar
Staff OP

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.

Aug 26, 2019 at 2:53 pm
#111375
Moderator
Shahriar
Staff OP

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

Aug 26, 2019 at 7:34 am
#111358
Moderator
Shahriar
Staff OP
This reply has been marked as private.
Aug 26, 2019 at 7:25 am
#111354
Moderator
Shahriar
Staff OP

Do you have the latest version 4.9.8?

Aug 26, 2019 at 7:21 am
#111350
Moderator
Shahriar
Staff OP

Please send me the URL to check.

Aug 26, 2019 at 7:17 am
#111349
Moderator
Shahriar
Staff OP

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.

Aug 26, 2019 at 7:10 am
#111348
Moderator
Shahriar
Staff OP

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.

Aug 26, 2019 at 7:00 am
#111347
Moderator
Shahriar
Staff OP

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.

Aug 26, 2019 at 6:51 am
#111345
Moderator
Shahriar
Staff OP

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.

Aug 26, 2019 at 6:32 am
#111341
Moderator
Shahriar
Staff OP

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

Aug 26, 2019 at 6:31 am
#111340
Moderator
Shahriar
Staff OP

Hi,

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

Best regards.

Aug 26, 2019 at 6:22 am
#111339
Moderator
Shahriar
Staff OP

Please try now.

Aug 24, 2019 at 6:13 pm
#111328
Moderator
Shahriar
Staff OP

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

Aug 24, 2019 at 6:11 pm
#111327
Moderator
Shahriar
Staff OP
This reply has been marked as private.
Aug 24, 2019 at 2:55 pm
#111321
Moderator
Shahriar
Staff OP

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

Aug 24, 2019 at 2:54 pm
#111320
Moderator
Shahriar
Staff OP

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 );
}
Aug 24, 2019 at 2:48 pm
#111319
Moderator
Shahriar
Staff OP

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');
Aug 24, 2019 at 1:39 pm
#111316
Moderator
Shahriar
Staff OP

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.

Aug 24, 2019 at 1:26 pm
#111315
Moderator
Shahriar
Staff OP

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

Aug 24, 2019 at 1:23 pm
#111314
Moderator
Shahriar
Staff OP

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.

Aug 24, 2019 at 1:20 pm
#111312
Moderator
Shahriar
Staff OP

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)