Search Results for 'download link'

Viewing 25 results - 5,326 through 5,350 (of 9,501 total)
  • Author
    Search Results
  • #80560

    Shahriar
    Moderator

    Hi,

    You modified the link and page template files inside the plugin dir in your old version to create a custom look. But when you updated plugin you mods were not available anymore. That’s why the view changed after plugin update.

    The correct way of adding a custom look is using a custom link and page template. I have created a link and a page template with the same code you used to modify the default templates in the old version. Both are named Default Template Mod. You can read more about creating custom templates here https://www.wpdownloadmanager.com/building-a-wordpress-download-manager-link-template-from-scratch/

    I have updated the link template in widgets to match the previous style. But you have to update each of your packages after setting the new page template ( Default Template Mod ) from package settings. I updated this one https://sandboxwp2.ninjatraderecosystem.com/user-submitted-apps-download/alligator/

    Now that we are using custom link and page template your views won’t be lost again after plugin update.

    Thanks.

    #80501

    Karen
    Member

    Thank you for this information. “post_content” is showing nothing on my page unfortunately. And I do have something written in the main textbox in the backend.

    I’m using the following:
    [wpdm_all_packages order_by="update_date" order="DESC" colheads="Title|Description|Size|" cols="title|post_content|package_size|download_link"]

    Any idea why this would show up blank? I just updated the plugin, but it didn’t solve the issue.

    #80433

    In reply to: Linkedin Lock


    umit ozaydin
    Member

    Hi again,

    I solved the invalid redirect url error by authorizin the URL shown on the share link after I click on the inshare button.
    Now I have a bigger problem.

    When people click on shared link from Linkedin, the download link on the package page does not work. It does not show “share us on linkedin popup”.

    How can I solve this problem?

    #80428
    This reply has been marked as private.
    #80383

    Fahim
    Member

    Hi,

    Please follow this steps:

    1. Go to Downloads>Templates>Create Link Templates
    2. Give a title of the template
    3. Write [download_url] in the code section
    4. Click save template.
    5. Use the newly created template as Link Template of the file.

    Please refer to the attached screenshot for more information.

    Thank you.


    Anonymous
    Inactive

    Please explain how I install it? I have downloaded it via the link you provided (on my Apple MacBook). What downloaded is a file called wpdm-box-com.php containing some code. I don’t know what to do with this code in order to install the add-on.

    #80321

    In reply to: Clear Cache Dir


    Shahriar
    Moderator

    Hi David,

    Download Manager cache dir stores the resized thumbnail ( featured image ) previews. These resized previews are created when requested by a link or page template with a defined size.

    When a resized preview exists in cache dir WPDM reuses it instead of creating it again which makes the site run faster. If you clear the cache dir all previews will be deleted and previews will be created based on requests.

    Hope this helps. Let me know if you have any other question.

    Thanks.


    Florian
    Member

    How do I setup download manger pro so it looks like and behaves like the free version in terms of frontend layout and function:

    – layout frontend downloadLinks should look like default layout on free version
    – direct file download on click without having to go to a separate download page to download the files

    Thanks

    #80266

    services
    Member

    Three things on this,
    1. The typed ‘message’ does not show up on the recipients email.
    2. The download link image emailed seems to be one I have no control over? Would like to change this.
    3. The company logo does not show up on the recipient’s email. I have the logo’s file as part of my ‘media’ files and indicated the url of it on the ’email templates’ settings.

    #80210

    Shahriar
    Moderator

    Download Manager Custom link and page templates are saved in the database ( options table ) when you are creating the templates from Downloads Templates page.

    So templates can be lost only if the _fm_link_templates and _fm_page_templates options are erased. There is no possibility of this happening without manually deleting all custom templates from Downloads Templates page.

    Are your staging and live site identical? I mean did you copy the live site from staging? In that case, you can copy the options from the staging site to bring back custom templates.

    How many custom templates did you have? If you have custom templates ID and code it is possible to restore those by editing database. But requires some time to re-create the format.

    #80207

    In reply to: Changing Link Color


    Shahriar
    Moderator

    Please add the following CSS in your theme’s custom CSS option or at the bottom of theme’s style.css file,

    .w3eden a { color: #0d23e5; }

    This should match the download link color with your usual link color.

    #80178

    In reply to: Changing Link Color

    This reply has been marked as private.
    #80174

    In reply to: Directory Display


    Shahriar
    Moderator

    Hi,

    You are using the Free version of Download Manager there. The free version has limited number of templates. It doesn’t have the link-template-panel-1-3 link template. If you purchased the Pro version of plugin please install it to render the Panel template.

    Thanks.

    #80080

    In reply to: Changing Link Color


    Shahriar
    Moderator

    Please send me the URL to check. I will suggest required CSS that you can add to change download link color. You can also use Image Button add-on to show beautiful download buttons instead of just links.

    #80079

    In reply to: php in templates


    Shahriar
    Moderator

    Hi Andrew,

    PHP is not supported in link/page template. But you don’t need PHP for what you are trying to do. You can hide a custom field when it is empty by adding [hide_empty:template_tag] as a CSS class in wrapping node.

    For example,

    <tr class="[hide_empty:acf_DownloadFields_title]"><td>ACF Download Fields Title</td><td>[acf_DownloadFields_title]</td></tr>

    This table row will be hidden if [acf_DownloadFields_title] value is empty.

    Let me know if you any question.

    Thanks.

    #80071

    I am using the Divi Template and I changed the theme link color, but the download links are still using the old color. I can’t seem to find a place to change this. Can you help? (I did look through the documentation and the website and was unable to find this information). There must be a way to style links. Do I have to put the html for font color in the actual template? if so, that is kind of gross as I should be able to change the link color in a theme and have all links get updated.

    —Andrew

    #80067

    I am new to WordPress and Download Manager. I am creating a link template using custom fields that I want to show up in the template only if the field is not empty. Is there an easy way to do this? I looked through the site and I couldn’t find any examples but it does appear that php is useable, but I can’t seem to get it to work. Can you help?

    Here is what I tried:

    <?php
    if(!empty($[acf_DownloadFields_source]) {$var=”[acf_DownloadFields_title]” . “, [acf_DownloadFields_source]”;}
    else {$var=”[acf_DownloadFields_title]”};
    if(!empty($[acf_DownloadFields_doc-date]) {$var .= “([acf_DownloadFields_doc-date])”
    ?>
    %%a href=”[download_url]”%%$var%%/a%%

    (In the last line, I substituted < and > with %% so the text does not resolve into an actual link)

    php is obviously not my language of choice, but I am pretty sure I got the syntax right.

    Any suggestions?

    —Andrew

    #80061

    Shahriar
    Moderator

    Hi,

    I have removed the old [wpdm_package_id] input and added a new hidden field with the same default value. Also applied the embedded form ( Used a page template with [download_link_extended] ). Now lock is working.

    Thanks.

    #79997

    Diams22
    Member

    Hi,
    I’m trying to replace the wordpress native author page with this shortcode:

    <?php echo do_shortcode('[wpdm_user_profile template="link-template-id" items_per_page=12]'); ?>
    

    I followed all steps mentioned here in your docs, but it seems like the shortcode always points to the current user’s public profile (not the author of the current package). Is there any parameter I can pass to the shortcode to catch the current package’s author?

    Thanks.

    #79912

    Shahriar
    Moderator

    No need to zip the .eps file before uploading. Just tested a .eps file downloaded by WPDM. Works fine. Could you please send me the original file and the download link?

    #79880

    Shahriar
    Moderator

    Hi,

    Yes, there is a template tag [pdf_thumb] that shows the PDF thumb ( first page of pdf ). In your link downloads are shown using WPDM link template. Now, to show PDF thumb you have to create a custom link template with this tag [pdf_thumb].

    You can create custom link template from Dashboard Downloads Templates page.

    Related documentation: https://www.wpdownloadmanager.com/doc/templates/creating-a-new-template/

    Please read more about custom templates here https://www.wpdownloadmanager.com/building-a-wordpress-download-manager-link-template-from-scratch/

    Thanks.


    LarryG
    Member

    After a user enters a password (correct or incorrect) the link displays “Processing” and freezes, as per the second screen shot. None of our downloads work any more.

    (Ignore the first screen shot)


    zweigelb
    Member

    We want to show all downloads from one category on one page with preview images.
    Our downloads are only images (HI-RES) and we want to show our customers the complete category in a table format.
    Preview Image, Download Size, Download Button
    Thats it.
    How do we do this?
    I have linked to the category in our main menu, but it does not look nice. I also dont understand how to edit this category view.
    Any help would be appreciated.
    THX

    PS: I have attached a screenshot from our current category view.

    #79767

    welswebmaster
    Participant

    Looks like new uploads and newly created packages aren’t allowing file upload at all when looking for the file in FTP.

    On this page: https://cls.welsrc.net/download-cls/general-documents/

    Now, when adding a NEW file to a download package, both URLS
    now appear as FILE-NOT-FOUND.txt (37 bytes)

    File added: Purchasing Center Fee Schedule

    Backend Link Icon URL –

    https://cls.welsrc.net?wpdmdl=3106&ind=1530107725720

    Frontend Download button URL –
    https://cls.welsrc.net/download-cls/general-documents/?wpdmdl=3106&ind=1530107725720

    I cleared cache both WPDM and Server – no difference.
    I reset server file permissions – no difference.

    Existing file uploads work just fine. Example of…

    Exisiting File: Thoughts of Faith Newsletter

    Frontend:
    https://cls.welsrc.net/download-cls/general-documents/?wpdmdl=3106&ind=1523374274611

    Backend:
    https://cls.welsrc.net?wpdmdl=3106&ind=1523374274611

    Looking at the file via FTP, the file doesn’t exist. I tried uploading a file as admin and it did not upload to the dir /wp-content/uploads/download-manager-files/

    The file size is 131 KB and the WPDM Upload Setting limit is 1024KB chunk size.

    I tried uploading on one of the other sub sites (technology) and had the same outcome.
    Next, I created a new download package and that also had the same outcome.

    #79736

    Shahriar
    Moderator

    It is possible to add any custom link in details page using custom template tag. Where do you want the user to go back from details page?

Viewing 25 results - 5,326 through 5,350 (of 9,501 total)