Shahriar

Forum Replies Created

Viewing 25 posts - 2,876 through 2,900 (of 12,513 total)
in reply to: Link to URL after Form Completion #94998

Shahriar
Moderator

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.

in reply to: Parent link is not working #94995

Shahriar
Moderator

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


Shahriar
Moderator

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.


Shahriar
Moderator

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]

in reply to: Bulk upload #94985

Shahriar
Moderator

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.

in reply to: Invalid licence key #94983

Shahriar
Moderator

Unlocked your key. Please try now.

in reply to: Search Results Showing Posts #94982

Shahriar
Moderator

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.

in reply to: Download Link in new tab #94981

Shahriar
Moderator

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

in reply to: bug in form-lock add-on #94980

Shahriar
Moderator

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.

in reply to: File Cart location and translations, Form lock #94969

Shahriar
Moderator
This reply has been marked as private.
in reply to: Google QR code in theme Appshop deprecated #94968

Shahriar
Moderator

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.

in reply to: category page not working #94967

Shahriar
Moderator

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.

in reply to: Login Page just whirring #94966

Shahriar
Moderator

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.

in reply to: Install Glitches #94965

Shahriar
Moderator

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.

in reply to: Stats on single files #94964

Shahriar
Moderator

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.

in reply to: Video shortcode won't display on frontend #94933

Shahriar
Moderator

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.

in reply to: Change Domain for Licence Key #94930

Shahriar
Moderator

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

in reply to: Sidebar Display with Search #94929

Shahriar
Moderator

Hi,

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

Thanks.

in reply to: filler packages by Advanced Custom Fields #94928

Shahriar
Moderator

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

in reply to: Trouble with Preview of PDF's with shortcode #94927

Shahriar
Moderator

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/


Shahriar
Moderator

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.

in reply to: Unlock Key #94924

Shahriar
Moderator

Unlocked the key.

in reply to: Add-on Update Serious Issues #94923

Shahriar
Moderator

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

in reply to: WPDM disables caching #94922

Shahriar
Moderator

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.

in reply to: Facebook Like Locker & Google Search Console #94921

Shahriar
Moderator

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)