Search Results for 'download link'

Viewing 25 results - 5,551 through 5,575 (of 9,350 total)
  • Author
    Search Results
  • #68204

    Shahriar
    Moderator

    Actually, you can add redirect URL with login shortcode,

    [wpdm_login_form logo="Logo Image URL" redirect="Redirect URL to redirect after login"]

    Here is the shortcode doc link for more info.

    #68200

    In reply to: Remove templates


    Shahriar
    Moderator

    If you disable a template it won’t appear in template dropdown in package settings. However, link and page template files are located in /download-maanger/tpls/ dir their respective folders.

    #68187

    wlm2015
    Member

    I’ve contacted customizations and it was no help.
    My code is:

    function bhc_create_package($package_data){
    
            if(isset($package_data['post_type']))
                unset($package_data['post_type']);
    
            $package_data_core = array(
                'post_title'           ► '',
                'post_content'           ► '',
                'post_excerpt'          ► '',
                'post_status'           ► 'publish',
                'post_type'             ► 'wpdmpro',
                'post_author'           ► get_current_user_id(),
                'ping_status'           ► get_option('default_ping_status'),
                'post_parent'           ► 0,
                'menu_order'            ► 0,
                'to_ping'               ►  '',
                'pinged'                ► '',
                'post_password'         ► '',
                'guid'                  ► '',
                'post_content_filtered' ► '',
                'import_id'             ► 0
            );
    
            $package_data_meta = array(
                'files'           ► array(),
                'fileinfo'           ► array(),
                'package_dir'           ► '',
                'link_label'          ► __('Download','wpdmpro'),
                'download_count'           ► 0,
                'view_count'             ► 0,
                'version'           ► '1.0.0',
                'stock'           ► 0,
                'package_size'           ► 0,
                'package_size_b'           ► 0,
                'access'            ► 0,
                'individual_file_download'               ►  -1,
                'cache_zip'               ►  -1,
                'template'                ► 'product.php',
                'page_template'         ► '5a5bcb3d9a457',
                'password_lock'                  ► '0',
                'facebook_lock'                  ► '0',
                'gplusone_lock'                  ► '0',
                'linkedin_lock'                  ► '0',
                'tweet_lock'                  ► '0',
                'email_lock'                  ► '0',
                'icon' ► '',
                'import_id'             ► 0
            );
    
            foreach($package_data_core as $key ► &$value){
                $value = isset($package_data[$key])?$package_data[$key]:$package_data_core[$key];
            }
    
            if(!isset($package_data['ID']))
                $post_id = wp_insert_post($package_data_core);
            else {
                $post_id = $package_data['ID'];
                $package_data_core['ID'] = $post_id;
                wp_update_post($package_data_core);
            }
    
            foreach($package_data_meta as $key ► $value){
                $value = isset($package_data[$key])?$package_data[$key]:$package_data_meta[$key];
                update_post_meta($post_id, '__wpdm_'.$key, $value);
            }
    
            if(isset($package_data['cats']))
                wp_set_post_terms( $post_id, $package_data['cats'], 'wpdmcategory' );
    
            return $post_id;
        }
    
    add_action('save_post_attachment', 'bhc_create_package', 10, 1);
    #68179

    Hello,
    I really like your WPDM plugin, it is really good. I am using ‘WordPress Download Manager Special Pack’.
    I have a question. At this stage I have a login page, in which I use the shortcode [wpdm_login_form]. When a user (role: Subscriber) logs in, rather than being redirected to the Dashboard page (the one using shortcode [wpdm_user_dashboard]) it reloads into itself, and displays a box where two links are displayed. [Dashboard] and [Log out]. I setup in the Settings the page ‘Dashboard Page’ to be my dashboard page.

    How can I redirect users logging in to the Subscribed members page rather than this reload to this same page? It is counter intuitive to have to log in, then have to click on a link to access the members page.
    Thank you!

    #68168

    Shahriar
    Moderator

    1 ) Internal hyperlinks are flattened during stamping. It is the limitation of the fpdf library. Will look into the possibility of solving this by adding customization but can’t assure you yet.

    2 ) Tried to log in to check stamping position issue. But getting the incorrect password error.

    3 ) You can modify the email content from Downloads Templates Email Template Tab.

    #68158

    Shahriar
    Moderator

    Hi,

    We are always happy to help. Some things are too long to discuss in a support ticket or don’t fall into the category of product support. That’s why we provide custom upgrade service when customers need a customized solution.

    About the package creation, Download Manager packages are custom post type. So, all basic things like title, content etc are saved by core WordPress when creating the package. And create package operation also handles by WordPress using the function I mentioned above wp_insert_post. We are saving the custom options using the save_post filter. You can check the function savePackage here /download-manager/admin/menus/class.Package.php which is linked to save_post filter.

    Thanks.

    #68155

    Shahriar
    Moderator

    1 ) If you want to just translate these text then use Download Manager language file to create the translation. It is also possible to change some of this text using filters.

    Related filters.

    • wpdm_email_lock_heading ( to change “Subscribe to download” text )- Filter Documentation
    • send_download_link_to_label ( to change “Send Download Link To:” text )

    You have to add the custom code to your theme’s functions.php file.

    2 ) We are changing the way lock options are handles now. Will be available from next version. You won’t face this issue in the new version.


    Martino Hugo
    Member

    1) I can not find transate POP-UP Link Template (Please view image Attach)
    2) Captcha Download Over Style

    #68109

    In reply to: Single file download

    Hi,

    You can show single file with the template code [file_list] to show the file list and download link. You can modify any existing template and include this with your specific styles from wp-admin/edit.php?post_type=wpdmpro&page=templates&_type=link and use with shortcode. For any single package view use page template instead.

    Thanks

    #68108

    Matthias
    Member
    This reply has been marked as private.
    #68058

    In reply to: Front end issue


    yfilali
    Member
    This reply has been marked as private.
    #68045

    SUPERIOR SRL
    Member

    Hi,
    Sice I installed the latest version the website lags very much, especially on the pages with links to downloads (but also on the backend). About 1 minute to open pages!

    Thank you in advance
    Gabriele

    #68034

    Hi, Seems like there is a problem with the "/plugins/download-manager/cache" directory on your server. The thumb images won’t loading for permission problem.
    I have created the thumb template and changes all packages with link template code in the page. It should be showing feature image with the direct download link in the grid.

    Please send your FTP to check the issue. Or contact server admin.

    Thanks

    #68026

    Shahriar
    Moderator

    On the frontend, you can edit/manage only packages created by you. But you can, of course, download files created by others.

    You can view the package by clicking ‘View’ link from ‘All packages’ admin page. If you want to show all packages then use [wpdm-all-packages] shortcode to list all downloads in a tabular format.

    #68012

    Shahriar
    Moderator

    Please create a custom link template from Downloads Templates page with the following code,

    <a href="[download_url]">[thumb_100x100]</a>

    Use this custom link template with your shortcode to show the pacakge featured image with the download link. You can adjust the image size ( I have set it to 100×100 ) to match your requirements.

    Or send temporary wp-admin login info in private reply, I can create the custom template for you.

    #67973

    Hi,

    You can create a custom template(link for use with shortcode/page template that will work with single category) to show only feature image and the download button for a file/package. You can find the existing template files from /wp-admin/edit.php?post_type=wpdmpro&page=templates.

    You can put [preview] to show feature image and [download_link] which gives you the direct download link. You can use HTML to design this template with the available tags.

    If you still find it confusing let me do it for you.

    Resources:

    Building a WordPress Download Manager Link Template from Scratch

    Template Tags

    Creating a new template

    Thanks

    #67955

    In reply to: Order_By –> Linkname


    Shahriar
    Moderator

    Do you mean sort by package/download name?

    You can add order_by="title" to sort by title.

    Here is the link to shortcode doc https://www.wpdownloadmanager.com/doc/short-codes/wpdm_category-query-all-downloads-from-one-or-more-categories/

    #67921

    In reply to: Preview not showing

    Hi,

    There can be several issues that the images are not showing. If you changed your domain also then there might be old domain link still into the database that is not replaced. Or in your new hosting check the folder permission, and if they are 755, then its ok. If you have had any cache plugin which stored cache files then remove them.

    The WordPress download manager files are stored in wp-content/uploads/download-manager-files folder. check the folder and the permission.

    If the problem does not resolve then send the login info in private to check.

    Thanks

    Hi,

    You can use Directory addon and use Archive page for showing the document library page.

    You can use link template to show customize template where the user can click on “view” button then view them in a tab if they are pdf files. You need to use this <a href="[download_url]" target="_blank">View</a> code in the template.

    If you are not sure how to customize template then let me know, i will do that for you.

    Thanks

    #67889

    I’m already using the all packages shortcode, but clicking on the category to filter I find it unintuitive. The shortcode already has a top selction filter to filter the amount of downloads shown on the table. I would like another dropdown selector for the categories. Is it possible to edit javascript like the link that I sent to work with wpdm?

    #67885

    Eura Mobil
    Participant

    Dear Support,

    how is it possible to order the downloads by the filename?

    this is our general shortcode:
    [wpdm_category id="XXXX," cols="1" toolbar=0 item_per_page=30 template="XXXX" order_by="post_title" order="asc" ]

    what do I need to put in order_by=”XXXX” to change the order to the linkname I entered in the download form.

    #67858

    In reply to: Pay as you want bug


    Shahriar
    Moderator

    I understand your use case. We have added this to our to-do list. For now, you can create a separate free package and share the download link on the pay as you want package. So, the user can have access to both options.

    Hi,

    Adding target blank is not available with the shortcode yet.

    But,
    You can modify an existing link template file from wp-admin/edit.php?post_type=wpdmpro&page=templates this page.

    And add this code <a href="[download_url]" target="_blank">[icon]</a> to make download target blank.

    And use this template tag with the shortcode.

    Thanks

    #67844

    ted
    Member

    Thanks for your help…It’s very confusing…

    OK, so I am getting there, but when I clicked on the download link for my test file, firstly I got “Package not available”, then when I tried a minute or so later, I got this message which is most undersierable : Calling 911! You better run now!!

    How on Earth do I get rid of that, and why is it showing that instead of just downloading the test file?

    #67836

    I’m making a page with a tabular view for downloads, but I would like to put a selector like the link bellow for categories:
    https://datatables.net/examples/api/multi_filter_select.html
    Could you help me configure?

Viewing 25 results - 5,551 through 5,575 (of 9,350 total)