Search Results for 'all downloads'

Viewing 25 results - 2,301 through 2,325 (of 4,369 total)
  • Author
    Search Results
  • #94242

    prodesigner
    Participant

    Here is a short code that will show similar posts with thumbnails. Can you let me know what I have to update to include Downloads / All packages in the results too. Or if there is a better way to show similar downloads please let me know.

    <?php $orig_post = $post;
    global $post;
    $tags = wp_get_post_tags($post->ID);
    if ($tags) {
    $tag_ids = array();
    foreach($tags as $individual_tag) $tag_ids[] = $individual_tag->term_id;
    $args=array(
    ‘tag__in’ ► $tag_ids,
    ‘post__not_in’ ► array($post->ID),
    ‘posts_per_page’►5, // Number of related posts that will be shown.
    ‘caller_get_posts’►1
    );
    $my_query = new wp_query( $args );
    if( $my_query->have_posts() ) {

    echo ‘<div id=”relatedposts”><h3>Related Posts</h3>

    </div>’;
    }
    }
    $post = $orig_post;
    wp_reset_query(); ?>

    #94206

    ZOOK Marketing
    Participant

    I’m trying to display all of the downloads available and also remove the “Display ## downloads per page” located at the top left and also remove “Previous 1 Next” at the bottom right of the page.

    https://marketingportal.zookdisk.com/zook-branding/

    I have added an image and circled in red of what I want removed, but still be able to display all downloads.

    #94202

    Shahriar
    Moderator

    Hi,

    Category archive template is controlled by your theme. But you can partially control it from Downloads Settings Frontend Access Category Page Options. Chech the avilable option there.

    Another option is using a custom taxonomy archive template in your theme. The file name is taxonomy-wpdmcategory.php and you have to place it in your active theme directory. Implementing this requires PHP coding experiences.

    Thanks.

    #94149

    In reply to: How create a homepage?


    Shahriar
    Moderator

    The demo site is using our Crypton theme https://www.wpdownloadmanager.com/download/crypton/ So you need this theme to create the exact layout.

    But you can also use category shortcodes to display downloads from a category. Install the TinyMCE add-on ( https://www.wpdownloadmanager.com/download/advanced-tinymce-button/ ) for using shortcode easily.

    #94125

    Elena Butler
    Participant

    Waw, thank you!

    It (sort of) works.

    The code counts the number of packages and downloads correctly, but it sticks results to the top of the article, and not where the shortcode really is.

    I also get “Updating failed” error every time I try saving the page. It seems the page actually does get saved though despite the error.

    Can you take a look why?

    #94013

    Noomia SPRL
    Member

    Hello guys,

    Right now, I’m using this code to generate my download button:

    $data['download_link'] = \WPDM\Package::downloadLink($data['ID'], 0, array(
    			'template_type' ► 'link'
    		));

    It generates this kind of HTML:
    <a class="wpdm-download-link btn btn-primary " rel="nofollow" href="#" onclick="location.href='https://mysite.com/?wpdmdl=5286&refresh=5c6d13a29aef41550652322';return false;"><span>Download</span></a>

    In the <a> tag, I would like to add a data-url attribute that will contain the href to the file. How can I do that? How can I get only the url, not the full <a> tag ?

    In fact, I need that because I want to create a “Download selected files” button, that will launch multiple downloads at once, depending on selected packages. (not all-in-one ZIP, but trigger each download separately). How would you do that?

    Thank you in advance,
    Cedric

    #93978

    Shahriar
    Moderator

    Could you please check the PHP error log or send me the log file. It should indicate where the issue is. Downloads are actually logged as I see the count is increasing.

    #93942
    This reply has been marked as private.
    #93909

    Shahriar
    Moderator

    So, You are using the default category archive template provided by your theme to display downloads. If you want to modify the ordering in this case, you have to customize the category archive template of your theme.

    But Download Manager has a category shortcode to show packages from a category in a better and customizable way. Here is a demo of category shortcode https://demo.wpdownloadmanager.com/wpdmpro/category-short-code/

    Shortcode documentation https://www.wpdownloadmanager.com/doc/short-codes/wpdm_category-query-all-downloads-from-one-or-more-categories/

    You can keep using your theme archive but category shortcode gives you more control over the view and ordering etc without code customization.

    #93908

    Shahriar
    Moderator

    You can’t yet import the exported CSV to transfer your downloads. Because some column names don’t match the import file structure and some values are still exported in a serialized state. We are working on making this more useful. Currently, you have to change the column names and remove some CSV columns to make the exported CSV import ready.

    For now, your best option is using the WordPress default exporter/importer to transfer the downloads. That works fine when you are transferring all your downloads.


    Andy Woodward
    Participant

    We have just migrated multiple WordPress sites which use the Download Manager plugin to a new server with php 7.1.26 installed (the old server used 5.3). Ever since, the download buttons on WPDM package pages do not work – they do change the url of the window, but nothing downloads. However, if you remove the “WPDM Package URL Base” and the package name from the URL in the address bar, you not only get the download, but also the BEHAVIOUR configured in Download Manager settings (eg. if it is configured to try and open the file in browser, it does so, otherwise it simply downloads).

    Can you please advise why this has happened, and is there a simple config change we can make to correct it?

    Thanks in advance

    #93787

    Shahriar
    Moderator

    Hi,

    I have installed the Form Lock addon on your site. Using this add-on you can lock a package behind a form. Just enable the Form Lock and select the form when creating or editing the package. Please check the screenshot below.

    https://www.evernote.com/l/AUfK_nc67SNO3KTvrpw1EnzF-Fsoot4AhNEB/image.png

    After submitting the form you will get an email with download link. The email looks like the following screenshot.

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

    The email template is customizable from Downloads Templates Email Templates page.

    Let me know if you have any further query.

    Thanks.

    #93775

    Noomia SPRL
    Member

    Hi Shahriar,

    I have made some progress on this.

    Summary
    The site runs “Download Manager” 4.7.3 with FacetWP 3.3.1. The site has more than 140 downloads. The “downloads” archive page display well all my downloads.

    After updating “Download Manager” 4.7.3 to 4.9.2, I have a big issue : the “downloads” archive page displays nothing under the header, where the downloads should appear (no footer neither). I opened my PHP file to manually limit the number of downloads in the query to 90. Than everything was working fine again. If I change that number to 100, the issue is back.

    So I guess that the way things are done in 4.9.2 are more ressources “greedy” ? What server configurations do you recommend ? Do you know what can cause that between 4.7.3 and 4.9.2 ?

    Thank you in advance !

    #93757

    Shahriar
    Moderator

    There is JS error in console. Please send temporary admin login info in private reply. The issue may be related to the error. Although the publish date works fine in my setup. Did you customize the all downloads table template? There is no built-in support for “download_link_blank”.


    Sean Brannon
    Member

    All new uploads to my site have recently encountered this error:

    <b>Notice</b>: A non well formed numeric value encountered in <b>/public_html/people/wp-content/plugins/download-manager/libs/class.DownloadStats.php</b> on line <b>35</b><br />

    Line 35 of the mentioned file:
    $udl[“”.$index] = isset( $udl[“”.$index] ) && is_int( $udl[“”.$index] ) ? $udl[“”.$index] + 1 : 1;

    This has meant that all PDF previews do not work. I can still download the document, .docx previews do not work either.

    The attached screenshot is what the preview is rendering the PDF as with the error at the top.

    line 35 mentioned above was double checked with a previous post to ensure it was the same as required. I updated the plugin as well to see if that would fix it and it has not.

    Need some help with this asap. Thanks.

    #93693

    In reply to: Dropbox Download Count

    Trying again with smaller file size. Both files have been downloaded and are showing zero downloads

    #93679

    Shahriar
    Moderator

    Yes, you can show the publish date and expert in all packages table. Please check the shortcode documentation here for more details https://www.wpdownloadmanager.com/doc/short-codes/wpdm_all_packages-list-all-downloads-in-tabular-format-in-a-page/

    #93669

    Shahriar
    Moderator

    Hi,

    You can use shortcode parameters to customize the look. Shortcode doc https://www.wpdownloadmanager.com/doc/short-codes/wpdm_all_packages-list-all-downloads-in-tabular-format-in-a-page/

    You can also use a custom template for /download-manager/tpls/wpdm-all-downloads.php file to customize the all downloads table. Please check the template doc here https://www.wpdownloadmanager.com/doc/template-files/

    Let me know if you have any further query.

    Thanks.

    #93649

    dsfslag
    Participant

    I recently renewed my license and upgraded to DM Pro 4.9.2. How do I customize the look/feel of the all downloads page so that it doesn’t look like it does now?

    #93587

    renzukoken
    Participant

    Hi there,

    Question for this evening, i am using Download manager since many many years and i’m completely satisfied.

    Using the 4.1.3 since i installed it with another plugin to order download by alphabetical order, i decided to update it with the lastest version of WPDM.
    Badly, i had to postpone the update due to some graphic changes/issues with my template that was not supported anymore with the lastest wordpress.

    during the time i need to investigate to modify WPDM template to fit my old wordpress template, is there a way to order download by name? i saw few times on google some short code or other things, but there is actually no short code to input. I add a category, add downloads to it, and i add the link of the category on my menu. thats it (unless i missed something)

    Which file should i modify for ALWAYS having all my downloads, from any category to be orderded by alphabetical order?
    My goal is to remove the other plugin that was re-ordering downloads on top of WPDM.

    Thanks!

    actually using : “Alphabetic Pagination” plugin otherwise it’s always by date

    #93493

    Cornelis Bockemühl
    Participant

    A little question – just in case I have missed something!

    So far if I have a download that I want to add, I do it manually: “New Download”, then give it a title, select the proper file for downloading, then select a category, then I go down and specify lock options (with some terms and conditions text to be accepted) and a custom icon.

    But now I have just a few “types” of downloads, and I more or less have to copy over these data from one download to the next, and just change the title and the file name.

    It would now be handy if I could just do one of the following:

    – either “copy” a complete downlad definition with a new title, then “edit” and change the few things that are different
    – or have some kind of “download template” that already includes all these things and from which I choose if I define a new download

    Is this already there and I am only too stupid to find it? Or would it be part of another extension? Or is it just a “nice to have” that does not exist yet?

    Regards,
    Cornelis

    #93397

    In reply to: permission denied .txt


    Shahriar
    Moderator

    The “Register now” page link is coming from the Custom Link Template. Your plain download links have to be replaced by WPDM Shortcodes. Otherwise, you can’t add the “Register Now” link.

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

    Actually, as you have to replace all the links, Default Values add-on won’t be much help. This add-on can bulk update any package settings. So, I thought using this you could change the link template of all packages in a single click. But changing the link template in pacakge settings doesn’t have any effect on your plain links. It would have been a great solution if you used shortcodes to show downloads.

    #93396

    Shahriar
    Moderator

    Latest WPDM is using the latest Font Awesome, so the issue may be arisen from there. However, I have to check your installation to be certain about the origin.

    Create a new support ticket to discuss this issue further. And send me the shortcode you are using there. Maybe you are using the wrong parameters. For example the following shortcode will display downloads in 3 columns,

    [wpdm-archive cat_view="compact" button_style="inverse" link_template="link-template-calltoaction1" order_by="post_title" order="asc" items_per_page="9" cols=3]

    #93329

    Bob Hall
    Participant

    Hi There;

    I have several items I need help with, probably easy for you pros, but i’m unable to figure them out:

    1) Users downloading from their cart get a 15 byte zip file regardless of the number of items in the cart. if they download individually or a complete package it works fine

    2) I need to be able to display the file size and / or the file title in the cart vs. the file name – can this be done and if so how?

    3) I need to modify the template i created for the package list to do the following:
    a) the package title needs to be underlined in red to match the rest of the titles on the site
    b) i need to remove the “related downloads” links at the bottom of the pages

    thank you!
    Bob

    PS: I’ve been trying to post this for a couple of weeks, in firefox, if this works, it’s in safari… I wonder why?

    #93306

    Andrew
    Member

    Hello Shariar,

    downloads never stopped working. I changed them to display the links to the files inline, after submitting the form . But what we really need is to get those links sent via email to the people that submit the form, which is how it was working before the main plugin update to its latest version.

    Can you please check this again? I was out for a couple weeks on vacation, but I have to solve this issue this week.

    Eventually, if you can confirm this will work with the paid version of the main plugin, we can purchase it, but I would prefer not to spend time on testing if it won’t work as expected.

    Let me know, please. Thanks.

Viewing 25 results - 2,301 through 2,325 (of 4,369 total)