Shahriar

Forum Replies Created

Viewing 25 posts - 2,876 through 2,900 (of 12,513 total)
Mar 20, 2019 at 3:30 pm
#94998
Moderator
Shahriar
Staff OP

Yes, it is possible using the Form Lock add-on. You have to add the URL to the pacakge using the URL tab in Attach File meta box.

Mar 20, 2019 at 3:04 pm
#94995
Moderator
Shahriar
Staff OP

By default, Bootstrap nav menu dropdown parent item is not clickable. Added the following code to make clickable.

$('li.dropdown :first-child').on('click', function() {
        var $el = $(this).parent();
            var $a = $el.children('a.dropdown-toggle');
            if ($a.length && $a.attr('href')) {
                location.href = $a.attr('href');
            }
    });

You can set the number of posts per page from Settings Reading page. I have set it to 50 which remove the pagination and showing all your packages.

Removed the search

Mar 20, 2019 at 2:32 pm
#94988
Moderator
Shahriar
Staff OP

WPDM saves the favourite meta as __wpdm_favs post meta. The meta value is serialized. So, you have to unserialize it to count the total favs for the package.

$favs = maybe_unserialize( get_post_meta( $id, '__wpdm_favs', true ) );
$package_fav_count = is_array( $ufavs ) ? count( $ufavs ) : 0;

Or use this $fav_count = \WPDM\Package::favCount( $package_id ); to get fav count.

Mar 20, 2019 at 2:15 pm
#94986
Moderator
Shahriar
Staff OP

Use items_per_page and set the paging value to 1 paging="1" to show the pagination.

[wpdm_packages paging="1" order_by="date" order="desc" items_per_page="1" template="5c8ba29520927" cols=1]

Mar 20, 2019 at 2:10 pm
#94985
Moderator
Shahriar
Staff OP

There are 2 bulk import options. First one is CSV Import, in this approach you have to create a CSV file with necessary info for your package ( post ). Each CSV row will create a pacakge when you Import it. You have put the file path under the files column to add a file to a package. Use the comma to add more than one file in a package.

The second approach is the directory import. In this case, a single package will be created for each file found the directory.

Let me know if you have any further query. If you send temporary wp-admin login info ( use private reply ) I can create a sample CSV file for you.

Mar 20, 2019 at 1:28 pm
#94983
Moderator
Shahriar
Staff OP

Unlocked your key. Please try now.

Mar 20, 2019 at 1:26 pm
#94982
Moderator
Shahriar
Staff OP

Are you using the Download Manager search widget? It shouldn’t include normal posts in the search result. Maybe another plugin is modifying the search query. You can try deactivating other plugins to be sure if that’s the case. However, I have to check your setup to provide further assistance on this.

Mar 20, 2019 at 1:17 pm
#94981
Moderator
Shahriar
Staff OP

Please wrap the _blank using single quotes like this '_blank'

Mar 20, 2019 at 1:13 pm
#94980
Moderator
Shahriar
Staff OP

Looks like Gravity Form scripts are not loading in the popup. I have added the form submission handling code manually in lock-options-iframe.php file. Form Lock is working now. If you use the Embedded Form ( Extended Template ) instead of Popup it will work without the customization.

Mar 20, 2019 at 6:38 am
#94969
Moderator
Shahriar
Staff OP
This reply has been marked as private.
Mar 20, 2019 at 6:26 am
#94968
Moderator
Shahriar
Staff OP

It is working for me. You can check this URL https://themes.wpdownloadmanager.com/appshop/app/jumper/

However, you can try replacing the following code in single-wpdmpro.php

http://chart.googleapis.com/chart?cht=qr&chs=450x450&choe=UTF-8&chld=H|0&chl=

with this code.

https://api.qrserver.com/v1/create-qr-code/?size=450x450&data=

It will use another API server to generate the QR code.

Mar 20, 2019 at 6:15 am
#94967
Moderator
Shahriar
Staff OP

I think the issue is related to your theme’s category archive template. It shows a WPDM shortcode when I deactivate the Download Manager. Can I switch to another theme to confirm if it is a theme issue? Or you can switch back to your original category archive template if you have modified it.

Mar 20, 2019 at 6:02 am
#94966
Moderator
Shahriar
Staff OP

Please send temporary wp-admin login info in private reply to check the issue. I did get the re-check login info notice when tried a random username and pass.

Mar 20, 2019 at 6:00 am
#94965
Moderator
Shahriar
Staff OP

Hi,

php.ini file upload limit is totally dependent on your server settings. Download Manager can’t do anything on this issue. Anyone else having this issue can use the FTP as KoDan did.

Maybe theme and plugin both are loading Font Awesome and created a version conflict. However, you can disable WPDM Font Awesome from settings. Then the icons from the theme will be applied. Send temporary wp-admin login info in private reply if you want me to check this issue.

When importing demo data you are using default WordPress exporter. It can’t detect if a post already exists when the id is different. And the ids of automatically created pages are always different than the demo data. You can just delete duplicated pages. There are only just 4/5 pages.

You can set up the redirect URLs from Settings Premium Packages Payment Gateways. Each payment gateway has its own settings where you can save redirect URLs.

You are right about the scope of improvements. We are always working to make our products better and make things easier for users.

Thanks.

Mar 20, 2019 at 5:45 am
#94964
Moderator
Shahriar
Staff OP

Download Manager doesn’t track single file downloads, it counts it a package download. It is possible to implement a custom solution by utilizing the ind query parameter. When an individual file download request is sent server also receives the file id. So, you can build a customized solution based on it.

Mar 18, 2019 at 8:17 pm
#94933
Moderator
Shahriar
Staff OP

Hi,

Sorry for the delayed reply. After checking the page source I found that the video is being rendered fine but the .avia-video and .avia-video .avia-iframe-wrap CSS classes are making this invisible. Please ask the Enfold author to check the issue. The shortcode doesn’t work on normal posts too when WPDM is inactive. So, it doesn’t seem related to WPDM.

Thanks.

Mar 18, 2019 at 7:48 pm
#94930
Moderator
Shahriar
Staff OP

Hi, Unlocked your key. Now You can use it on your new domain.

Mar 18, 2019 at 7:46 pm
#94929
Moderator
Shahriar
Staff OP

Hi,

Sorry not possible yet. Sidebar view doesn’t have the search feature. And adding the custom field search also requires code customization.

Thanks.

Mar 18, 2019 at 7:42 pm
#94928
Moderator
Shahriar
Staff OP

Please let me know detailed specifications. How do you want to use this filter? Do you have any shortcode in mind?

Mar 18, 2019 at 7:40 pm
#94927
Moderator
Shahriar
Staff OP

I changed the value of WPDM_THEME_SUPPORT constant ( line 5 at /appshop/functions.php file ). AppShop uses a built-in template to show package details page and ignores the page template from package settings when this constant is true. I have changed it to false to utilize page templates.

You can use different page templates for different packages now. To show youtube video I have created a custom page template ( youtube player ) there. You can check it here http://veiligheid.vdabcampus.be/download/video-bouw-mortelsilo/

Mar 18, 2019 at 7:31 pm
#94926
Moderator
Shahriar
Staff OP

Replace this link wp_redirect( "your_login_url" ); with the following code ,

wp_redirect( "your_login_url?redirect_to=".get_the_permalink($id) );

That should redirect the user to the package details page after the login.

Mar 18, 2019 at 7:18 pm
#94924
Moderator
Shahriar
Staff OP

Unlocked the key.

Mar 18, 2019 at 7:18 pm
#94923
Moderator
Shahriar
Staff OP

We are looking into this issue. Please install the add-on manually, for now, as the update manager isn’t working on your setup.

Mar 18, 2019 at 7:16 pm
#94922
Moderator
Shahriar
Staff OP

You have to apply this patch after plugin update until a better solution is available. We have this issue on our radar. But as this feature is linked to some other features a quick update won’t be possible, it will take some time.

Mar 18, 2019 at 7:13 pm
#94921
Moderator
Shahriar
Staff OP

Hi,

You can disable the Facebook Like lock from Package Settings Lock Options Enable Facebook Like Lock. Uncheck the option and update your pacakge.

Thanks.

Viewing 25 posts - 2,876 through 2,900 (of 12,513 total)