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.
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.
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/
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.
Deactivate the plugin from network admin. Then activate on each subsite separately.
Do you have the latest version 4.9.8?
Please send me the URL to check.
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.
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.
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.
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.
Please send temporary wp-admin login info in private reply to check the issue.
Hi,
Single file download is not possible in an email locked package.
Best regards.
Please try now.
Please send temporary wp-admin login info in private reply to check the issue.
It is case sensitive. Please copy the code I sent above. It has to be title
not Title
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 ); }
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');
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.
Please send temporary wp-admin login info in private reply to check the issue. The cart should display all files.
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.
Hi, You need another license for that. Pro works only on single site/subsite. Thanks.