Shahriar

Forum Replies Created

Viewing 25 posts - 1,401 through 1,425 (of 12,513 total)
in reply to: Expire After does not seem to have any effect? #112130

Shahriar
Moderator

Could you please send temporary wp-admin login info? I will add the patch for you.

in reply to: Template page 'badge' class #112128

Shahriar
Moderator

You can add CSS in your Custom Page Template to change the badge color. Add another class badge-custom and then use the following CSS to set a custom background color.

https://www.evernote.com/l/AUdj_Fwe7xZGk7rPTjwgGNhydtSJ0lLk7wMB/image.png

.badge.badge-custom {
    background: #ff5062 !important;
}

Shahriar
Moderator
This reply has been marked as private.
in reply to: Front-End Manager Access limited by categories #112125

Shahriar
Moderator
This reply has been marked as private.

Shahriar
Moderator

Did you use our REST API add-on ( https://www.wpdownloadmanager.com/download/wpdm-api/ ) or is this something you wrote? Please send temporary wp-admin login info in private reply. I have run some tests to find the reason behind broken file links.

in reply to: How to fix error 400 #112072

Shahriar
Moderator

Please send temporary wp-admin login info in private reply to check the issue. When do you encounter this error?

in reply to: Problems with File Hosting & Sharing Add-on #112071

Shahriar
Moderator

Please send temporary wp-admin login info in private reply to check the issue. How the add-on acts when using as an administrator? Do you encounter the reported issues only as a subscriber user?

in reply to: Broken files #112069

Shahriar
Moderator

Yes, please ask you server support to enable Zlib.

in reply to: Show message when no document assigned for user #112068

Shahriar
Moderator

The message will be shown on WPDM dashboard My Downloads tab. Or on any other page where you use [wpdm_my_downloads] shortcode.

in reply to: Preloder #112067

Shahriar
Moderator

Which preloader are you referring to? Lock frame loader uses the /download-manager/assets/images/loader.svg If you want to change the loader replace this file with your own.

in reply to: Direct link #112066

Shahriar
Moderator

You can generate direct download link from “All Packages” admin page. Click the “Generate Download URL” button below the package name to open UI.

If you are trying to get download URL in a link/page template then use [download_url] tag.

Let me know if you have any further query.

in reply to: Download manager pro and wpdm-form lock #112063

Shahriar
Moderator

Hi,

Please enable the “Email Download Link” option when activating the Form Lock. That will send the download link via after form submission.

Install the Download Notification ( https://www.wpdownloadmanager.com/download/download-notifications/ ) add-on to get notified when someone downloads a package.

Thanks.


Shahriar
Moderator

TinyMCE works with “Classic” block only when using Gutenberg editor.

Use cols parameter to control columns in archive page shortcode. Here is an example,

[wpdm-archive button_style="secondary" link_template="link-template-panel" order_by="post_title" order="asc" items_per_page="10" cols="2"]

in reply to: Category page options #112050

Shahriar
Moderator

Looks like it isn’t possible to fix the URL without code customization. You have to add this code

if( is_tax('wpdmcategory') ) $burl = get_term_link(get_queried_object());

right after $burl = get_permalink(); in /download-manager/wpdm-functions.php file.

Another option is available which doesn’t involve changing the core plugin code. But it is a bit lengthy. Create a new category shortcode using wpdm_category and wpdm_embed_category functions. You just have to replace the $burl = get_permalink(); part as I suggested above.

in reply to: Download link is expired on Guest Orders page #112049

Shahriar
Moderator

Please install PDF Stamper v.2.0.0 to fix the pdf password issue.

For now, please add the following code to Customize > Additional CSS to make the guest order view better in mobile devices. We will update the template soon.

@media screen and ( max-width: 600px ){
	.w3eden .panel-purchases tr th:nth-child(2), tr td:nth-child(2),
	.w3eden .panel-purchases tr th:nth-child(4), tr td:nth-child(4),
	.w3eden .panel-purchases tr th:nth-child(5), tr td:nth-child(5),
	.w3eden .panel-purchases tbody tr:nth-child(2), tbody tr:nth-child(3){
		display: none;
	}
}
in reply to: License Invalid after Update #112047

Shahriar
Moderator

Yes, you can do that by unlinking the key from the live site. From the purchases page ( https://www.wpdownloadmanager.com/user-dashboard/?udb_page=purchases ) click the generate key button and remove the live site from “Linked Sites” link.

Make sure to install the latest version v.5.0.1 You can download it from purchases page.


Shahriar
Moderator

Please send temporary wp-admin login info in private reply to check the issue. Send the package link too where you are facing the audio preview bug.

in reply to: More than 30 items per page display #112045

Shahriar
Moderator

Are you using the category shortcode? What is the difference when using a number greater than 30 and a smaller value for items_per_page? Please send temporary wp-admin login info in private reply. I have to check the differences to find out why it isn’t working on 30+ packages.

in reply to: all packages not visible if not logged in. #112044

Shahriar
Moderator

I have added a patch to fix this temporarily on your site. In the next update, we will add the patch in our side too.

in reply to: Show message when no document assigned for user #112043

Shahriar
Moderator

Do you mean there is no message like the following screenshot in your case?

https://www.evernote.com/l/AUeKPJkiCw5Nv7o8YFyAgDH1_lPD0uHIIs0B/image.png

Please send temporary wp-admin login info in private reply to check the issue.

in reply to: Exclude Categories in Accordion #112041

Shahriar
Moderator

Just released an update which provides wpdm_accordion_category_query_args filter to modify the category query parameters. Add the following code snippet to your functions.php to remove some categories from accordion.

function wpdm_accordion_category_query_args( $args ){
    $args = array( 'hide_empty' ► false, 'parent' ► 0, 'hierarchical'►1, 'exclude' ► array( 17, 4 ) );
    return $args;
}
add_filter('wpdm_accordion_category_query_args', 'wpdm_accordion_category_query_args');
in reply to: Custom link templates are gone! #112038

Shahriar
Moderator

1 ) Download this file https://www.dropbox.com/s/pkc8dfenuhmoq14/5bf86eafe04fc.php?dl=1
2 ) Place it in /active-theme/download-manager/link-templates/ directory.

Now you can use 5bf86eafe04fc as template id in your shortcode. When using a file to create custom template the filename is used as template id.

in reply to: Broken files #112037

Shahriar
Moderator

Please check now. Enabling the “Output Buffering” option from basic settings fixed the issue.

in reply to: Invald key error #112021

Shahriar
Moderator

Hi,

Please install the latest version manually for this update. Follow these steps to update the plugin,

1 ) Deactivate and delete the old version. You won’t lose any data.
2 ) Download latest version from here https://www.wpdownloadmanager.com/user-dashboard/?udb_page=purchases
3 ) Install the latest version and activate the license key.

Logout, and then login again from your Downloads > Settings > Updates tab. That should enabke the auto update for future versions.

Thanks.

in reply to: CRIPTO THEME: Display error on mobile #112012

Shahriar
Moderator

Please send temporary wp-admin login info in private reply. Changing the page template style should fix the issue. WPDM Demo is using the same theme https://demo.wpdownloadmanager.com/wpdmpro/download/email-lock-with-additional-fields/ Mobile view is fine there.

Viewing 25 posts - 1,401 through 1,425 (of 12,513 total)