Search Results for 'Add Url'

Viewing 25 results - 1,001 through 1,025 (of 1,661 total)
  • Author
    Search Results
  • #72858

    In reply to: 4.7.4 breaks layout


    Digital Nomads
    Participant

    Hi,

    Could you help me out with that? I’d like the page to display as it was before. Here’s my link template: –

    <div class=’col-md-6′>
    <div class=”panel panel-default”>
    <div class=”panel-body”>
    <div class=”media”>

    [thumb_60x60]

    <div class=”media-body”>
    <h4 class=”media-heading” style=”font-size: 16px;color: #337ab7;padding-top: 0px;padding-bottom:40px;border:0px;margin: 0px;height: 20px;overflow: hidden”>[title]</h4>
    <p style=”color: #666;”>[icon] Published [create_date]</p>
    </div>
    </div>
    </div>
    <div class=”panel-footer”><div class=”pull-left” style=”line-height: 50px;”><i style=”margin: 2px 0px 0 5px;opacity:0.5″ class=”fa fa-th-large”></i> [file_size]<i style=”margin: 2px 0 0px 45px;opacity:0.5″ class=”fa fa-download”></i> [download_count] downloads</div> <div class=”pull-right”>[download_link]</div><div style=”clear: both”></div></div>
    </div>
    </div>

    Ken

    #72818

    In reply to: WPDM – Amazon s3

    The code tags removed all white space.

    Defined constants file:

    /etc/aws_secrets/site.secrets.php
    <?php
    define(‘AWS_CLOUDFRONT_ACCESS_KEY_ID’,’*************’);
    define(‘AWS_CLOUDFRONT_KEY_PATH’ , ‘/etc/aws_secrets/cloudfront_privk.pem’);
    define(‘MY_DOMAIN’ , ‘.example.com’);
    define(‘AWS_CLOUDFRONT_USER_DOWNLOADS’,’***********.cloudfront.net’);
    define(‘AWS_USER_ACCESS_KEY_ID’,’****************’);
    define(‘AWS_USER_SECRET_ACCESS_KEY’,’********************************’);
    define(‘AWS_REGION’,’us-west-2′);
    ?>

    // Add to the end of functions.php in your WordPress theme
    add_action(‘init’, ‘setMyCookies’);

    function setCloudFrontCookies(){

    /*
    * We’re on app.example.com or http://www.example.com, files are on S3.
    * We need to send requests to files.example.com, becuase browsers will not
    * accept cookies for S3 or xxxxxxx.cloudfront.net sent from example.com
    *
    * Therefore, we will set cookies for .example.com,
    * so that they’re sent to the CloudFront subdomain files.example.com.
    *
    *
    * User request needs to go like this:
    *
    *
    * User visits *.example.com (our site)
    * After authenticating user, our site *.example.com sets cookies for
    * .example.com and redirects to files.example.com
    * DNS sends request to cloudfront. Cloudfront gets files from S3.
    *
    * Step: 1
    *
    * Set Route 53 (DNS) CNAME record for files.example.com that points to our
    * cloudfront distribution: xxxxxxx.cloudfront.net.
    * Now requests sent to files.example.com from our site will go to cloudfront.
    *
    * Step: 2
    * In our cloudfront xxxxxxx.cloudfront.net add CNAME files.example.com
    * Now xxxxxxx.cloudfront.net will respond to requests sent to files.example.com
    */

    // Settings
    //
    // Location of all defined constants used below
    require_once (‘/etc/aws_secrets/site.secrets.php’);
    //
    // AWS SDK User
    // Create an IAM user with cloudfront all access for use by the SDK
    $user_access_key_id = AWS_USER_ACCESS_KEY_ID;
    $user_secret_access_key = AWS_USER_SECRET_ACCESS_KEY;

    // AWS Cloudfront Access Key ID
    // NOT a regular IAM user.
    // In your root account look for “My Security Credentials”.
    // Or, from here:
    // https://console.aws.amazon.com/iam/home#/security_credential
    // Look for Your Security Credentials,Cloudfront Key Pairs, Access Key ID
    $key_pair_id = AWS_CLOUDFRONT_ACCESS_KEY_ID;
    // The private key .pem file associated with this Access Key ID.
    $private_key = AWS_CLOUDFRONT_KEY_PATH;

    // Region is a subset of the availbiity zone
    // If availbility zone = us-west-2b, then region is us-west-2
    $region = AWS_REGION;

    // MY_DOMAIN = .example.com
    $my_domain = MY_DOMAIN;

    // http*:// permits both https and http.
    // You can add a restriction in your Distribution Behavior to redirect all http to https.
    // Then this code is portable across distributions.
    $cloudfront_base_url = ‘http*://’ . $my_domain . ‘/’;

    // Path to cookie protected content.
    // Change * to your path after the base url http*://.example.com/
    //http*://.example.com/$cookie_path
    $cookie_path = ‘*’;

    // Full URL for cookie protected content
    $allowed_resource = $cloudfront_base_url . $cookie_path;

    // Cloudfront requires all policies to expire
    // This is the policy level expires
    $policy_expires_after = (86400 * 7); // 1 week

    // Set your own $expires at the cookie level to zero to make it a session cookie.
    // Easier to debug a session cookie.
    // And users do not need to be told to clear their cookies to get a new policy,
    // if you change the cookie policy.
    // Users will get the new policy on login.
    $expires = 0;

    // Initialize AWS SDK for PHP
    $site_path = get_home_path();
    $aws_path = ‘vendor/autoload.php’;
    $aws_package_path = $site_path . $aws_path;
    require_once $aws_package_path;

    $sdk_params =
    [
    ‘region’ ► $region,
    ‘version’ ► ‘latest’,
    ‘credentials’ ► new \Aws\Credentials\Credentials
    (
    $user_access_key_id,
    $user_secret_access_key
    )
    ];
    $sdk = new \Aws\Sdk($sdk_params);
    $cloudfront = $sdk->createCloudFront();

    // Setup CloudFront cookie #1: CloudFront-Key-Pair-Id
    $cookies = [ ];
    $cookies[ ‘CloudFront-Key-Pair-Id’ ] = $key_pair_id;

    // Setup CloudFront cookie #2: CloudFront-Policy
    $raw_policy =
    [
    ‘Statement’ ►
    [
    [
    ‘Resource’ ► $allowed_resource,
    ‘Condition’ ►
    [
    ‘DateLessThan’ ►
    [
    ‘AWS:EpochTime’ ► (time() + $policy_expires_after)
    ]
    ]
    ]
    ]
    ];

    $policy = json_encode($raw_policy);
    $cookies[ ‘CloudFront-Policy’ ] = base64_encode($policy);

    // CloudFront cookie #3: CloudFront-Signature
    $url_signing_params =
    [
    ‘url’ ► $allowed_resource,
    ‘policy’ ► $policy,
    ‘key_pair_id’ ► $key_pair_id,
    ‘private_key’ ► $private_key
    ];

    $signed_url = $cloudfront->getSignedUrl($url_signing_params);
    // We just need the “Signature” query string part of the signed URL
    parse_str(parse_url($signed_url, PHP_URL_QUERY), $signed_url_arr);
    $signature = $signed_url_arr[ ‘Signature’ ];
    $cookies[‘CloudFront-Signature’] = $signature;

    // Set cookies
    foreach ($cookies as $cookie_name ► $cookie_value)
    {
    setcookie($cookie_name, $cookie_value, $expires, $cookie_path, $my_domain);
    }

    }

    function setMyCookies() {
    setCloudFrontCookies();
    }

    #72817

    In reply to: WPDM – Amazon s3

    I can see my buckets, but clicking on them does nothing. I see the red “Loading…” and then nothing.

    Btw, I have mounted my S3 buckets inside my server at /mnt/s3/ using the aws s3fs fuse filesystem package.
    So, I can see, copy, delete, my files and directories just like any local file.

    For example, downloads are at:
    /mnt/s3/userdownloads/

    What I am hoping would get developed in this plugin would be Cloudfront together with S3, so that Cloudfront will serve my protected content.

    What I have working is that I copy private user-specific content to:

    /mnt/s3/userdownloads/private_content/username

    The url is then userdownloads.example.com/private_content/username/

    This content is protected by signed cookies.

    Here is the code that I have working that does all this.

    I hope it can be integrated with the WPDM package permissions.

    Defined constants file, change for your site, and set your own $cookie_path as desired:

    
    /etc/aws_secrets/site.secrets.php
    <?php
    define('AWS_CLOUDFRONT_ACCESS_KEY_ID','*************');
    define('AWS_CLOUDFRONT_KEY_PATH' , '/etc/aws_secrets/cloudfront_privk.pem');
    define('MY_DOMAIN' , '.example.com');
    define('AWS_CLOUDFRONT_USER_DOWNLOADS','***********.cloudfront.net');
    define('AWS_USER_ACCESS_KEY_ID','****************');
    define('AWS_USER_SECRET_ACCESS_KEY','********************************');
    define('AWS_REGION','us-west-2');
    ?>
    
    // Add to the end of functions.php in your WordPress theme
    add_action('init', 'setMyCookies');
    
    function setCloudFrontCookies(){
    
        /*
         * We're on app.example.com or www.example.com, files are on S3.
         * We need to send requests to files.example.com, because browsers will not
         * accept cookies for S3 or xxxxxxx.cloudfront.net sent from example.com
         *
         * Therefore, we will set cookies for .example.com,
         * so that they're sent to the CloudFront subdomain files.example.com.
         *
         * 
         * User request needs to go like this:
         *
         *
         * User visits *.example.com (our site)
         * After authenticating user, our site *.example.com sets cookies for
         *  .example.com and redirects to files.example.com
         * DNS sends request to cloudfront.  Cloudfront gets files from S3.
         *
         * Step: 1
         *
         * Set Route 53 (DNS) CNAME record for files.example.com that points to our
         * cloudfront distribution: xxxxxxx.cloudfront.net. 
         * Now requests sent to files.example.com from our site will go to cloudfront.
         *
         * Step: 2
         * In our cloudfront xxxxxxx.cloudfront.net add CNAME files.example.com
         * Now xxxxxxx.cloudfront.net will respond to requests sent to files.example.com
        */
       
        // Settings
        //
        // Location of all defined constants used below
        require_once ('/etc/aws_secrets/site.secrets.php');
        //
        // AWS SDK User
        // Create an IAM user with cloudfront all access for use by the SDK
        $user_access_key_id = AWS_USER_ACCESS_KEY_ID;
        $user_secret_access_key = AWS_USER_SECRET_ACCESS_KEY;
    
        // AWS Cloudfront Access Key ID
        // NOT a regular IAM user. 
        // In your root account look for "My Security Credentials".
        // Or, from here:
        // https://console.aws.amazon.com/iam/home#/security_credential
        // Look for Your Security Credentials,Cloudfront Key Pairs, Access Key ID
        $key_pair_id = AWS_CLOUDFRONT_ACCESS_KEY_ID;
        // The private key .pem file associated with this Access Key ID.
        $private_key = AWS_CLOUDFRONT_KEY_PATH;
       
        // Region is a subset of the availbiity zone
        // If availbility zone = us-west-2b, then region is us-west-2
        $region = AWS_REGION;
    
        // MY_DOMAIN = .example.com
        $my_domain = MY_DOMAIN;
       
        // http*:// permits both https and http.
        // You can add a restriction in your Distribution Behavior to redirect all http to https.
        // Then this code is portable across distributions.
        $cloudfront_base_url = 'http*://' . $my_domain . '/';
       
        // Path to cookie protected content.
        // Change * to your path after the base url http*://.example.com/
        //http*://.example.com/$cookie_path
        $cookie_path = '*';
       
        // Full URL for cookie protected content
        $allowed_resource = $cloudfront_base_url . $cookie_path;
    
        // Cloudfront requires all policies to expire
        // This is the policy level expires
        $policy_expires_after = (86400 * 7); // 1 week
    
        // Set your own $expires at the cookie level to zero to make it a session cookie.
        // Easier to debug a session cookie. 
        // And users do not need to be told to clear their cookies to get a new policy,
        // if you change the cookie policy.
        // Users will get the new policy on login.
        $expires = 0;
       
        // Initialize AWS SDK for PHP
        $site_path = get_home_path();
        $aws_path = 'vendor/autoload.php';
        $aws_package_path = $site_path . $aws_path;
        require_once $aws_package_path;
    
        $sdk_params =
        [
            'region' ► $region,
            'version' ► 'latest',
            'credentials' ► new \Aws\Credentials\Credentials
            (
                $user_access_key_id,
                $user_secret_access_key
            )
        ];
        $sdk = new \Aws\Sdk($sdk_params);       
        $cloudfront = $sdk->createCloudFront();
    
        // Setup CloudFront cookie #1: CloudFront-Key-Pair-Id
        $cookies = [ ];
        $cookies[ 'CloudFront-Key-Pair-Id' ] = $key_pair_id;
    
        // Setup CloudFront cookie #2: CloudFront-Policy
        $raw_policy =
        [
           'Statement' ►
           [
              [
                 'Resource' ► $allowed_resource,
                 'Condition' ►
                 [
                    'DateLessThan' ►
                    [
                        'AWS:EpochTime' ► (time() + $policy_expires_after)
                    ]
                 ]
              ]
           ]
        ];
       
        $policy = json_encode($raw_policy);
        $cookies[ 'CloudFront-Policy' ] = base64_encode($policy);
    
        // CloudFront cookie #3: CloudFront-Signature
        $url_signing_params =
        [
            'url' ► $allowed_resource,
            'policy' ► $policy,
            'key_pair_id' ► $key_pair_id,
            'private_key' ► $private_key
        ];
    
        $signed_url = $cloudfront->getSignedUrl($url_signing_params);
        // We just need the "Signature" query string part of the signed URL
        parse_str(parse_url($signed_url, PHP_URL_QUERY), $signed_url_arr);
        $signature = $signed_url_arr[ 'Signature' ];
        $cookies['CloudFront-Signature'] = $signature;
    
        // Set cookies
        foreach ($cookies as $cookie_name ► $cookie_value)
        {
            setcookie($cookie_name, $cookie_value, $expires, $cookie_path, $my_domain);
        }
    
    }
    
    function setMyCookies() {
        setCloudFrontCookies();
    }
    
    #72148

    For additionnal informations.
    IPN notification are enabled in my papypal and url is set like that :

    Home

    But my site is in “https”

    #71874
    This reply has been marked as private.
    #71784

    In reply to: 3 Important Questions

    Hi,

    Yes, there is a widget for the shopping cart.

    Please follow this tutorial, and for redirect off to dashboard please select none selected from settings frontend login page. And for disable logout confirmation follow this.

    For navigation function please see the gist file from here.

    And to show log out in any page use this PHP code <?php echo wp_logout_url( $redirect ); ?>

    Thanks

    #71750

    In reply to: 3 Important Questions

    Hi,

    1. You can get the name and email with the login. In that case, you can disable the billing address from Downloads Settings Premium Package frontend settings. Otherwise you can remove the fields from wp-content\plugins\wpdm-premium-packages\templates\checkout-cart\checkout-billing-info.php.

    2. You need to use [wpdm-pp-cart] shortcode on a page to show the cart on that page for the premium package.

    3. You can use default WordPress logout URL in the menu items, you need to add a custom function to change the navigation for logged in and logged out users.

    Thanks

    #71512

    In reply to: Search doesn't work


    Shahriar
    Moderator

    Hi Susan,

    First of all, I am really sorry that you had to deal with all these unexpected difficulties.

    I see that you have modified the Prime theme. I checked the style.css file which was missing the theme info like version, name etc.

    There is another old theme in wp.org with the same name. As the WPDM Prime version was missing WordPress was showing ‘Update Available’ message by confusing our theme with the wp.org theme. So, I think someone updated the theme by clicking the ‘update’. And as a result, our theme was removed and the wp.org Prime theme was installed. And all of these happened due to the missing Prime theme info.

    Now, I have added the theme info again in the style.css file which removed the ‘update available’ notice from the Prime theme. So, the issue shouldn’t happen again.

    Another thing is, you should use a child theme if you want to modify theme feature or look. That will keep your modification safe when there is a theme update available.

    About the search issue, are you using a custom search from there? The form code should look like the following snippet,

    <form action="<?php echo home_url('/'); ?>">
                                <div class="input-group search-inputs">
                                    <input type="hidden" name="post_type" value="post" />
                                    <input type="text" name="s" placeholder="<?php _e('Search...','the-next'); ?>" value="" class="form-control input-sm search">
                                <span class="input-group-btn">
                                    <button type="submit" class="btn btn-sm"><i class="tn-search"></i></button>
                                </span>
                                </div>
                            </form>

    Please use this code or just use the search as it comes with the prime theme ( e.g. https://themes.wpdownloadmanager.com/prime/download-category/free/ )

    Please let me know if you have any other query.

    Thanks.

    #71472

    In reply to: Invalid License Key

    Hi,

    1. WPDM Block Hotlink add-on will help you to block hotlink to download URL from the external site. You must have to click on download button placed in your site to download packages. The external site can only place the link with your page.

    You can try putting the download link on another domain site and see if it can be downloaded. Because the plugin will block the download.

    2. If you want to show you packages on any page or homepage, you can try shortcodes like All packages list, here’s the demo. Or You can use category shortcode on the page, here is the demo.

    Thanks

    #71009

    I am using a category short-code to display all the packages in a category as cards. The packages included in this category have titles that vary in length. Some of the titles are long enough that they are displayed on multiple lines (wrap text) and others are only one line. This causes the cards to not display properly in a 4 x 3 grid. I tried fixing the height of the [page_link], but then the size of the browser window can cause some of the titles to be hidden.

    Is there a way to make the top of the cards in each row line up no matter how long the titles are?

    Here is my catergory display short-code:
    [wpdm_category id="infrastake" title="InfraStake" desc="These are InfraStake files" toolbar="1" order_by="title" order="asc" item_per_page="12" template="5a94448318a7e" cols=4 colspad=2 colsphone=1]

    Here is my card template code:
    <div class=”list-group wpdm-lt-card” style=”margin: 0 0 15px 0″>
    <div class=”list-group-item”>

    [thumb_500x250]

    </div>
    <div class=”list-group-item”>
    <h4 style=”padding:0px;margin:0px;”>[page_link]</h4>
    </div>
    <div class=”list-group-item”>
    <span class=”badge”>[file_size]</span> File Size
    </div>
    <div class=”list-group-item”>
    [download_link]
    </div>
    </div>

    #70989

    In reply to: file list sorting


    Shahriar
    Moderator

    Please send FTP info and package URL in private reply. I will add the code will let you know the details.

    #70975

    In reply to: Redirect after Upload


    Shahriar
    Moderator

    Please try adding a new package now. I have added flaturl=0 parameter to fix the 404 issue.


    wlm2015
    Member

    Hey everyone – just a heads up, I have a work around for this bug. In your template (for example: /wp-content/themes/yourtheme/download-manager/page-templates/product.php)
    Edit your code by adding “download” as described here.
    <a class="btn" href="[download_url]" download>DOWNLOAD FILE <i class="fa fa-download" ></i></a>

    #70891

    macmorre
    Participant

    Hello,

    thank you very much. Just another question. Is it correct that the buttons „Browse, URL, Lock-Options and Icons“ does not work at Frontpage-Uploader.

    If I click on “Add download package“ at Frontpage-Uplader the file will be uploaded, but the field contents in the individual input fields will remain. Is this normal?

    Thank you for your answer in advance
    Chris

    #70832

    In reply to: CSS Change Template


    Shahriar
    Moderator

    1 ) The limit should work now

    2 ) Enabled the warning for restricted users

    3 ) If you want to show ads in category archive then you have to edit the archive.php template file. This is your theme template file.

    4 ) Favorite packages are listed in user dashboard page. Add fav=1 parameter in dashboard shortcode to list favorite packages,

    [wpdm_user_dashboard fav=1 flaturl=0 captcha=0]

    #70559

    The flaturl=1 option doesn’t work with our site, which is why we used the other option. We just get 404 errors when its set to 1.

    We have the shortcode in a page template and the initial screen displays fine but both the add new and edit screen both go to 404’s.

    Tried clearing cache and permalinks and also checked the correct page was assigned in the WPDM settings… Any ideas?

    Thanks

    #70539

    In reply to: CSS Change Template


    Shahriar
    Moderator

    1 ) Save only the image URL in the custom field. Then use this URL in your custom template to show the image via the img tag.

    2 ) Sory, Not sure what you meant. If you want you can activate the download archive ( from the option in your screenshot 1 ).
    Yes, you can show only the category. Add following code in your theme’s functions.php to add a custom template tag for categories with no link,

    function wpdm_comma_separated_tax_terms($post_id){
        $args = array('orderby' ► 'name', 'order' ► 'ASC', 'fields' ► 'all');
        $terms = wp_get_post_terms( $post_id, 'wpdmcategory', $args );
    
        $terms_array = array();
        foreach ($terms as $term):
            $terms_array[] = $term->name;
        endforeach;
    
        return implode(', ', $terms_array);
    }
    function wpdm_custom_tags($vars){
    
        $vars['categories_nolink'] = wpdm_comma_separated_tax_terms($vars['ID']);
    
        return $vars;
    }
    add_filter( 'wdm_before_fetch_template', 'wpdm_custom_tags', 10, 1 );

    3 ) If you use the custom categories tag then there will be no link to category archive.

    4 ) Great

    5 ) Multiple downloads of the same file in single session is counted as one. The limit will apply only when the user tries to download another file.

    6 ) Select ‘Subscriber’ in package settings to allow Abonnent

    https://www.evernote.com/l/AUdCkW2j-_dGv7sYlVYXE_zobM6kUFQnXVcB/image.png

    7 ) You can modify the message from /wpdm-daily-download/wpdm-daily-download.php file. There is no filter yet to modfiy it from outside.

    #70465

    In reply to: CSS Change Template


    Shahriar
    Moderator

    – Category archive page URLs look like https://www.site.com/downloads/package-category/ Here downloads is category URL base. I meant before you can change this URL base if you want from Dashboard Settings Basic URL Structure Panel.

    -You can set login required or permission denied message ( when the user can’t access the package ) from settings. But your link/page template should have [download_link] tag for that.

    https://www.evernote.com/l/AUdDu_AO60dA8K3RJab03IANkt0XK3o5e0UB/image.png

    – You need Download Limit add-on to apply download limit based on user role

    – Just update the package where you see the empty author. That should hide the author when it is empty.

    #70461

    Shahriar
    Moderator
    This reply has been marked as private.
    #70420

    In reply to: CSS Change Template


    Shahriar
    Moderator

    – Added new custom field Author and edited your custom link template dxf to show that author when available

    – added the background in custom template

    – changed the button color

    – access is not working because from your download manager category settings you are allowing all visitors to access the download

    https://www.evernote.com/l/AUfFZKpfwA9L07cyF62_63MrWblmgS7fLpMB/image.png

    https://www.dxf-downloads.de/category/downloads/3d-drucker-stl/ is the archive for your post category 3D Drucker .stl It is not download category archive. Download category archive url will look like this https://www.dxf-downloads.de/downloads/download-category

    you can change the url slug downloads from WPDM Basic settings.

    #70360

    In reply to: CSS Change Template


    Shahriar
    Moderator

    Hi,

    Some of your files only for premium users that means the “premium user” custom option is empty in other packages. So, you can utilize that in your custom link/page template.

    When a field is empty you can hide that by adding a class in the template code. example: adding this [hide_empty:version] in the wraping element/div of version will hide the element if version is empty.

    Please send me the URL to suggest required CSS adjustments. Send temporary wp-admin login info in private reply if you want me to check the custom template code and make the premium field visible only when there is a value.

    Thanks.

    #70254

    Lend brand
    Member
    This reply has been marked as private.
    #70114

    kalico
    Member

    This is the page template:

    <style type="text/css">.more_previews_a{display: block;float: left;margin-right: 6px;}</style>
    <div class="row">
    <div class="col-md-12">
    [description]
    <br />
    [file_list]
    
    </div>
    
    </div>
    
    <div style="clear:both;" class="preview-trouble-options">Preview enabled by Google Docs. Trouble? <a href="[page_url]">Reload</a> the page or <a href="[download_url]">download</a> the file.</div>
    <div class="row">
    <div class="col-md-12">
    
        [doc_preview]
    </div>
    </div>
    

    Example page of our content:

    http://nroc.org/what-we-offer/edready/

    Scroll down to the “Case Studies” section (after videos).

    Each of the thumbnails on this page link to whitepapers tracked by WPDM. They are just regular images with captions, linked to the packages, not using the WPDM link template.

    An example of one existing package in working order, without any need for an email lock, this uses the WPDM Page template above:

    http://nroc.org/resource/case-study-waipahu-high-school-early-college-stem-program/

    What I want is to create a “download” button on a page, which then requires the user to provide email address before downloading. The PDF preview shown in the above example is not required, I just used it because it’s our standard template.

    I’m fine with a direct download or email link……but the problem is that I can’t get the email input form to display anywhere in this process and I’m not sure what part of the sequence I’ve got wrong.

    Thank you

    #70047

    Jordan P
    Member

    Using a custom thumbnail image for the custom icon does not work. I tried adding a custom thumbnail image and the icon displayed is the unknown.svg icon, not the thumbnail image that was added. Does the custom icon URL work with jpg files?

    #69812

    Claire
    Member

    In the line 484 line I added description tag

     else
    echo "<li  class='file ext_$ext'><a href='" . wpdm_download_url(get_the_ID()) . "' rel='" . wpdm_download_url(get_the_ID()) . "'>" . get_the_title() . "</a>[description]</li>";
                }
            }
            echo "</ul>";
            die();
        }

    but clearly it is not supported; where should I add the description parameter?

Viewing 25 results - 1,001 through 1,025 (of 1,661 total)