Shahriar

Forum Replies Created

Viewing 25 posts - 3,301 through 3,325 (of 12,513 total)
Feb 8, 2019 at 1:09 pm
#93488
Moderator
Shahriar
Staff OP

Yes, you can show the thumbnail of each attached image file. Use the [file_list_extended] to show this all thumbnails with download option. You can use built-in page template ” Single Column, Image Top, Extended ” or create your own custom template using this tag.

Feb 8, 2019 at 1:05 pm
#93487
Moderator
Shahriar
Staff OP

Please read my last reply again. I think you have missed what I explained in the last paragraph and in the screenshot. The point is You have to replace all your direct links ( e.g. Curva Sofa 2D files – Download ) with a shortcode like this [wpdm_package id='pacakge_id']

Feb 8, 2019 at 1:02 pm
#93486
Moderator
Shahriar
Staff OP

Unlocked the license key. You can use it on your new domain now.

Feb 8, 2019 at 1:00 pm
#93484
Moderator
Shahriar
Staff OP

Unlocked the license key. You can use it on your new domain now.

Feb 8, 2019 at 12:59 pm
#93483
Moderator
Shahriar
Staff OP

Unlocked.

Feb 8, 2019 at 12:58 pm
#93482
Moderator
Shahriar
Staff OP

All filters can be applied by following the approach shown here https://www.wpdownloadmanager.com/doc/filter-reference/wpdm_single_file_download_link/

And here is anothet example. I have modified the single file download button text here.

add_filter('single_file_download_link_label','single_file_download_link_label');
function single_file_download_link_label($file){
    return 'Custom Label';
}
Feb 8, 2019 at 12:54 pm
#93481
Moderator
Shahriar
Staff OP

Hi Jacky,

You don’t need the responsive table ( jstable ) with Archive Page because Archive Age has it’s own search and filter options. But if are looking for the visual appearance of the table then use a custom link template to make your results look like table rows.

Thanks.

Feb 8, 2019 at 12:49 pm
#93480
Moderator
Shahriar
Staff OP

Please check you have the /uploads/wpdm-cache/ directory on your server. Create the wpdm-cache folder in /wp-content/uploads/ directory if it doesn’t exist. Let me know if still empty cart issue after that.

Feb 8, 2019 at 12:45 pm
#93479
Moderator
Shahriar
Staff OP

If you have set the settings to rename files WPDM won’t delete existing files. Please send temporary wp-admin login info in private reply. I have to check your installation to find out what is going on.

Feb 8, 2019 at 12:41 pm
#93478
Moderator
Shahriar
Staff OP

Another plugin is breaking the JS. Most probably a caching plugin. Try deactivating other plugins to find out which one is creating the issue. Or just send temporary wp-admin login info in private reply so we can take a look there.

Feb 7, 2019 at 7:26 pm
#93455
Moderator
Shahriar
Staff OP

Please ask your server support to help you recover the error log. Send temporary wp-admin login info in private reply so I can check the issue too.

Feb 7, 2019 at 7:22 pm
#93454
Moderator
Shahriar
Staff OP

Added more CSS in Customize Additional CSS. Please check the file list now.

Feb 7, 2019 at 6:36 pm
#93450
Moderator
Shahriar
Staff OP

Unlocked the key. All add-ons license key is not required.

Feb 7, 2019 at 6:35 pm
#93449
Moderator
Shahriar
Staff OP

Can you access the settings page? When does the 500 error occur?

Feb 7, 2019 at 6:34 pm
#93448
Moderator
Shahriar
Staff OP

Hi Ariane,

There are some filter hooks available to customize the [file_list_extended] output.

1 ) single_file_download_link_label Customize the single file download link label. Default label is ‘Download’

2 ) wpdm_single_file_download_link Customize the single file download link

3 ) individual_file_action Add additional options with single file. i.e. add file cart button

4 ) file_list_extended_show_thumbs Show / Hide thumb.

Or you can just make your own custom tag using the approach suggested above to add more customization.

Thanks.

Feb 7, 2019 at 6:23 pm
#93447
Moderator
Shahriar
Staff OP

Please try deactivating and reactivating Premium Package add-on. If that doesn’t solve it send temporary wp-admin login info in private reply.

Feb 7, 2019 at 6:15 pm
#93445
Moderator
Shahriar
Staff OP

Could you please send me the error log file? Also, try using PHP 7.2

Feb 7, 2019 at 6:13 pm
#93444
Moderator
Shahriar
Staff OP

Download Manager has the option to replace the download button with the login page link when a user is not logged in. You can customize this login button from Settings Basic Messages Login Required Message: option. Are you trying to do that?

Or just want to redirect all guest users to the login page from any page in general? Add the following code to your theme’s functions.php file if this is the case. Before adding the code create the login page with WPDM login shortcode [wpdm_login_form logo="your_logo_url"] and set this page as Login Page in Settings Frontend Login Page option.

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( get_permalink( get_option('__wpdm_login_url') ) );
        exit();
    endif;
}
Feb 7, 2019 at 6:01 pm
#93442
Moderator
Shahriar
Staff OP

Please send your license keys in private reply to unlock those from old domains.

Feb 7, 2019 at 5:59 pm
#93441
Moderator
Shahriar
Staff OP

Thank you for reporting the comma issue. You have just found the first bug in export feature 🙂 We are going to fix it soon and more options are coming in the export feature.

Feb 7, 2019 at 5:51 pm
#93440
Moderator
Shahriar
Staff OP

The download button should be there after adding the code I suggested in my last reply.

However, If you have a clear specification of what you want please send details. Point out which parts of edit package page you want to remove or what kind of additional functionalities you want to add. We provide custom upgrade service ( https://www.wpdownloadmanager.com/download/custom-upgrade-service/ ) when users need detailed customizations.

Feb 7, 2019 at 8:21 am
#93423
Moderator
Shahriar
Staff OP

The export button exports all your existing packages. So, you don’t have to select anything from the right side file list and selecting files doesn’t have any impact on the export function.

It is still a beta feature so maybe there is still some bug. Please check you have the /uploads/wpdm-cache/ directory on your server. Create the wpdm-cache folder in /wp-content/uploads/ directory if it doesn’t exist and try the export again. Let me know what happens this time.

Feb 7, 2019 at 7:53 am
#93422
Moderator
Shahriar
Staff OP

Looks like the shortcode is coming from some other plugin, not WPDM Accordion add-on ( https://www.wpdownloadmanager.com/download/wpdm-accordion/ )

Here is a sample accordion shortcode,
[wpdm-accordion cats=”catid,” cat_style=”default” subcat_style=”success” template=”link-template-calltoaction2″ orderby=”title” order=”asc”]

Feb 7, 2019 at 7:46 am
#93421
Moderator
Shahriar
Staff OP

Unlocked the license key from your old URL. You can use it on your new site now.

Feb 6, 2019 at 9:32 pm
#93408
Moderator
Shahriar
Staff OP

Users can visit the download page to download the file.

It is possible to add the main download button by doing the following customization but it is not guaranteed that it will work. Add the code at line 227 in /tpls/wpdm-add-new-file-front.php template. ( Make a template file like the previous template file )

<?php if( isset( $pid ) ) echo \WPDM\Package::downloadLink($pid, 0, array('template_type' ► 'link')); ?>

Viewing 25 posts - 3,301 through 3,325 (of 12,513 total)