Search Results for 'Add Url'

Viewing 25 results - 1,051 through 1,075 (of 1,650 total)
  • Author
    Search Results
  • #66686

    Imunz
    Member

    Hey Thank you for your fast reply,

    as you can see on the screenshost it hasnt worked for me. I have added the diffrent shortcodes an their are displayed well but as soon as i want to follow the link i got this “empty” page.
    I have still the same problem. I have marked the urls on the screenshot maybe its a missconfiguration.

    #66669

    In reply to: Remote FTP TLS?

    You can follow this steps. Let me know if you have missed any steps from below.

    How to Use FTP Auto-Import Dir:
    1. Create a dir in your ftp server
    2. Create a csv file with all importable package data ( Sample CSV File ) and put it in that ftp dir
    3. Create another dir named files inside the ftp dir ( #1 )
    4. Put all importable file in files dir
    5. Setup an everyday cronjob for url http://yoursite/?importcsv=1 in your server
    6. Now the cronjob will check the csv file every day for changes, if you add new row there or update any row, it will be imported/updated accordingly.

    Thanks

    #66534

    Shahriar
    Moderator

    Hi,

    It is possible to load sub-category packages on page load but requires some code changes. Please send login info in private reply. I will add the code there or you can add the code yourself. Here is the custom code, add it after line 1082 in wpdm-archive-page.php file. Please keep in mind, you have to add this every time you update the add-on.

    var firstcat = jQuery('.wpdm-categories .wpdm-cat-link').first().attr('rel');
    jQuery('.wpdm-categories .wpdm-cat-link').first().addClass('active');
    jQuery('#wpdm-downloads').prepend('<div class="wpdm-loading"><i class="fa fa-spin fa-spinner icon icon-spin icon-spinner"></i> <?php _e('Loading','wpdm-archive-page'); ?>...</div>').load('<?php echo home_url('/?wpdmtask=get_downloads&pg='.get_the_ID());?>&category='+encodeURIComponent(firstcat));

    Thanks.

    #66482

    Topic: Filename


    Eura Mobil
    Participant

    After updating the download manager the filenames changed. after downloading a file the wpdml changes the original filename and adds the url in front of it. how can i change this

    #66468

    Here is the code for after login redirection. It goes to your theme function file.

    add_action( 'template_redirect', 'wpdm_login_redirect' );
    function wpdm_login_redirect(){
        if( is_user_logged_in() && get_the_ID() == get_option('__wpdm_login_url') ):
            wp_redirect( home_url('/') );
            exit();
        endif;
    }

    Or for login in the download page, use the settings option “Show Only login form”. Then the user will be redirected to the same page after login. But for registration the functionality is different. You can use the custom action for that.

    Thanks


    Mike Morse
    Member
    This reply has been marked as private.
    #66407

    Hi there,

    When the user is already registered they need to log in to download the package file. So after login, they will be redirected to the same page.
    For registering they are redirecting to the registration page. Where after successful registration, they will be redirected to dashboard. This is default settings.

    for changing the redirect URL change this in settings login required message field message.

    http://example.com/login-page/?redirect=[this_url]

    If you want to add a custom action to login redirect method check this post. https://wordpress.org/support/topic/how-to-redirect-already-logged-in-users/

    Thanks

    #66110

    In reply to: file path fix


    Amy Masson
    Participant
    This reply has been marked as private.

    cbenson583
    Member

    How do I upload download manager records from css using the CSV Import Add-on when. the records point to a url not a specific file. I could not find a field to map the url to. I tried mapping it to the wpm:files field but this did not work.


    shameem
    Member

    Thank you Mr.Shahriar.

    I got it Cancel and Success URL, am asking is there any predefined URL is required or just user dashboard URL?

    If you don’t mint please fix following issues which I faced.

    1. I Created a package and I can see it fine when I do a preview and publish. However, when someone views as a subscriber/visitor, the table of packages isn’t listed and the subscriber sees the error “you are not allowed”. I assign Allow access “All visitors”.

    2. Is there any plugin/add-on support for user registration approve?

    Thanks in advance!


    Shahriar
    Moderator

    Cancel and success URLs are used to redirect to your site from PayPal. And as the names suggest two URLs are used in two different cases. Successful and Failed transaction.

    I am checking the expire date issue and will add the fix in your site as soon as the solution.

    #65189

    Shahriar
    Moderator

    Sorry for the delayed reply. Somehow missed your reply.

    You can attach pdf directly if instead of adding URL. Attached files are secure, a customer can download files only if they purchased it.

    #64973

    Shahriar
    Moderator

    You can use Default Values add-on to apply email lock by default for all new packages. To add lock in old packages you have to go one by one.

    The user can view their download history from dashboard history tab. Dashboard shortcode is [wpdm_user_dashboard flaturl=0]

    #64971

    Shahriar
    Moderator

    1 ) Create a custom link template from Downloads Template page. You can clone an existing template from that page and edit on top of it. Remove all data that is not important for you ( i.e. version, date, download count etc ). Also remove [page_url] and [page_link] template tags those exists there. That will remove all link to the details page.

    When inserting the category shortcode select this custom template as your link template. Install TinyMCE add-on to insert shortcode easily.

    2 ) You can also modify the details page ( http://rodribv.com/download/test-bestand/ ) by using a custom page template.

    #64820

    Shafayet
    Moderator
    1. In that case, you have to create a temporary download link and mail him
    2. You need to create role based discount from Pricing and Discounts page
    3. WPDM can’t protect URL, if you want to sell access to URL like http://www.louisparlas.com/Books/Peri_Sinergatikon/index.html, you can sell, but, customers will be able to share those URLs, but, if you want to keep those URL protected, there will require some additional customization.
    #64772

    kelvege
    Member
    This reply has been marked as private.
    #64765

    Shahriar
    Moderator

    The suggestion above was for the Extended Shortcodes add-on, not the core Download Manager plugin. You can add custom icons by adding the URL instead if selecting an existing one.

    #64729

    Shahriar
    Moderator

    Indexing depends on your package. Search engines don’t index files directly from WPDM storage location because WPDM doesn’t serve downloads using actual file path. If you check the download URL you will get the idea, it uses post id to serve downloads. So, file indexing is not an issue actually when you delete a package.

    You don’t have to use outside tool like FTP client. I suggested it as just another option. You can use File Manager add-on which is an extension of WPDM. Using this add-on you can manage your files from Dashboard Downloads File Manager page.

    #64722

    kelvege
    Member
    This reply has been marked as private.

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

    Diams22
    Member
    This reply has been marked as private.
    #64553

    kelvege
    Member
    This reply has been marked as private.
    #64441

    Shahriar
    Moderator

    You can do this using Advanced Custom Fields add-on and a custom link/page template.

    Here are the steps to link Developer name with URL,

    1 ) Create 1 text custom fields and another URL custom field. Set name and URL in respective fields when creating the package.

    2 ) In your custom template use this format to add link to the text <a href="[acf_ACF_url]">[acf_ACF_Text]</a>

    I use WPDM to share free software and games for users (and planning to sell any). What I and many people need is a new space to fill the Developer Name and URL. Can this be done? I’ve tried to use advance costum Field add-ons, but it does not work as I expected.

    See the Example from attachment. Please, help me and other user facing the same problem :’)

    #64372

    In reply to: Getting blank page

    I just heard from Stripe, and they said the LogoURL error is coming from the Stripe plugin:

    “I have taken a look at your account and I can confirm that there is no problem on our side, however, looking at your error message it does sound like that there is an error with your third-party integration. I hate to redirect you but I believe the best course of action would be if you got in touch with your developers as it is not a typical error message that Stripe would send to the users.”

    So now there are 2 issues, the blank page in Safari, and the LogoURL error in the Stripe Add-on plugin.

Viewing 25 results - 1,051 through 1,075 (of 1,650 total)