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.
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
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.
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]
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.
Unlocked your key. Please try now.
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.
Please wrap the _blank using single quotes like this '_blank'
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.
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.
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.
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.
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.
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.
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.
Hi, Unlocked your key. Now You can use it on your new domain.
Hi,
Sorry not possible yet. Sidebar view doesn’t have the search feature. And adding the custom field search also requires code customization.
Thanks.
Please let me know detailed specifications. How do you want to use this filter? Do you have any shortcode in mind?
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/
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.
Unlocked the key.
We are looking into this issue. Please install the add-on manually, for now, as the update manager isn’t working on your setup.
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.
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.