Shahjada

Forum Replies Created

Viewing 25 posts - 576 through 600 (of 15,655 total)
Apr 19, 2023 at 6:55 pm
#186104
Keymaster
Shahjada
Staff OP

instead of download your can use different word in wpdm settings. However, base slug also totally removable. As, it is not a built-in feature with wpdm pro, it will require some code customization.

Try using the following code:

function wpdm_remove_base_slug($post_link, $post) {
    if ('wpdmpro' === $post->post_type && 'publish' === $post->post_status) {
        $post_link = str_replace('/download/', '/', $post_link);
    }
    return $post_link;
}
add_filter('post_type_link', 'wpdm_remove_base_slug', 10, 2);

function wpdm_parse_request($query) {
    if (!$query->is_main_query() || 2 != count($query->query) || !isset($query->query['page'])) {
        return;
    }

    if (!empty($query->query['name'])) {
        $query->set('post_type', array('post', 'wpdmpro', 'page'));
    }
}
add_action('pre_get_posts', 'wpdm_parse_request');

For extended customization support, please contact:

Custom Upgrade Service

Apr 19, 2023 at 7:00 am
#186072
Keymaster
Shahjada
Staff OP

If any plugin generates unexpected output, it need to fixed first, did you find which one, or may we try deactivating other plugin to find problematic one?

Apr 18, 2023 at 10:44 pm
#186065
Keymaster
Shahjada
Staff OP

It works fine on our side. Please send me ftp info in a private reply.

Apr 18, 2023 at 2:51 pm
#186053
Keymaster
Shahjada
Staff OP

Update is available now.

Apr 18, 2023 at 12:58 pm
#186050
Keymaster
Shahjada
Staff OP

It will not break the email sending.
The action hook invokes after sending email.
Your simply can add the code for sending SMS in the callback function.

Apr 18, 2023 at 10:35 am
#186044
Keymaster
Shahjada
Staff OP

I think, the following example explains all about the hook:

add_action("PrivateMessage/Message/RestAPI/sendMessage", function($msgID, $message, $sender) {
//Your sms code here...
}, 10, 3);

It calls before send message.
$msgID = ID of the message
$message = Array containing message info and receiver info
$sender = Sender info.

Apr 18, 2023 at 5:16 am
#186029
Keymaster
Shahjada
Staff OP

Working fine in both chrome and firefox for me: https://www.loom.com/share/26a3cbaad5ec43a994ad5adb56d70725

Please check if your have installed any browser add-on which is blocking pdf js.

Apr 18, 2023 at 5:04 am
#186028
Keymaster
Shahjada
Staff OP

#1. Change package url base slug to download/%wpdmcategory%

Settings%20%E2%80%B9%20Download%20Manager%20%E2%80%B9%20WPDM%20PRO%20%E2%80%94%20WordPress

#2. Save Settings
#3. go to WP Admin Menu ► Settings ► Permalinks
#4. Click “Save Changes” button.

Everything will work fine then.

Apr 17, 2023 at 9:32 pm
#186022
Keymaster
Shahjada
Staff OP

That is not an issue with wpdm, that is how wpdm url settings works.

However, if you want to add category slug with package URL, here is the workaround:

#1. Please add the following code at the end of your active theme’s functions.php:

function wpdm_package_link($post_link, $post) {
	if ('wpdmpro' === $post->post_type) {
		$terms = wp_get_post_terms($post->ID, 'wpdmcategory');
		if ($terms) {
			$term_slug = array_pop($terms)->slug;
			$post_link = str_replace('%wpdmcategory%', $term_slug, $post_link);
		} else {
			$post_link = str_replace('%wpdmcategory%', '-', $post_link);
		}
	}
	return $post_link;
}
add_filter('post_type_link', 'wpdm_package_link', 10, 2);

#2. Then use %wpdmcategory% is wpdm page url base slug.
#3. Save Settings
#4. go to WP Admin Menu ► Settings ► Permalinks
#5. Click “Save Changes” button.

Finally to go WP Admin Menu ► Packages and check the changes in URLs.

Apr 17, 2023 at 8:30 pm
#186020
Keymaster
Shahjada
Staff OP

Login info is not working.

Apr 17, 2023 at 7:32 pm
#186019
Keymaster
Shahjada
Staff OP

That is probably due to conflict with other outdated plugin your are using there, your wp is outdated as well as many other plugin. Please try deactivating other plugin one after another to find the one causing the conflict.

Apr 17, 2023 at 3:14 pm
#186016
Keymaster
Shahjada
Staff OP

Try using different link template, there are lots of link templates for various use case, you can can create your own link template.
Please follow the docs:

https://www.wpdownloadmanager.com/doc/templates/link-template/
https://www.wpdownloadmanager.com/doc/templates/creating-a-new-template/

Apr 17, 2023 at 3:00 pm
#186015
Keymaster
Shahjada
Staff OP

Update is coming within the next 24 hours.

Apr 17, 2023 at 2:02 pm
#186011
Keymaster
Shahjada
Staff OP

Actually, we have nothing to do from the plugin side, but we are trying to contact the patchstack.com about this report, though they clearly mentioned it is a pro plugin issue, not free. Also, please let your security plugin author know about that.

Apr 17, 2023 at 12:06 pm
#186004
Keymaster
Shahjada
Staff OP

It looks like any of your active plugin generating some unexpected chars before it should be what’s why pdf stamper is failing, try deactivating other plugin. Also, use unencrypted pdfs, encrypted/password protected pdf are not stamp-able.

Apr 17, 2023 at 5:43 am
#185993
Keymaster
Shahjada
Staff OP

okay, we are doing some research on that :).

Apr 17, 2023 at 5:32 am
#185992
Keymaster
Shahjada
Staff OP

Hi,
We have found the issue, update will be available with the fix within next 24 hours.

Apr 16, 2023 at 11:54 pm
#185985
Keymaster
Shahjada
Staff OP
Apr 16, 2023 at 11:33 pm
#185984
Keymaster
Shahjada
Staff OP

Please update premium package plugin, you can now add multiple quantity of the same item just by clicking item add button multiple times.

Also, you can create cart coupon too instead of product specific coupon by simply skipping product id when creating a coupon.

Also, we are making some other improvements on custom order option to make it more flexible.

Apr 16, 2023 at 11:21 pm
#185983
Keymaster
Shahjada
Staff OP

Hi,
No worry, there issue you were seeing was related to an old PRO version, the latest versions of wpdm free 3.2.70 and pro 6.3.2 both are secure.

Apr 16, 2023 at 10:32 am
#185976
Keymaster
Shahjada
Staff OP

That is actually not a plugin issue, you need to disable image cache/cdn to make it work properly.

Your media library images are serving from here 94m2c9.p3cdn1.secureserver.net instead of upperbrandon.com

Apr 15, 2023 at 8:27 am
#185959
Keymaster
Shahjada
Staff OP
This reply has been marked as private.
Apr 15, 2023 at 8:07 am
#185958
Keymaster
Shahjada
Staff OP

We have found the issue, it is actually with download page, if you email direct download link, it will work fine. However, we shall fix it with the next update.

Apr 15, 2023 at 5:34 am
#185953
Keymaster
Shahjada
Staff OP

I’m not seeing that, now akismet update is pending, but signup form is also showing fine.

Apr 15, 2023 at 5:24 am
#185948
Keymaster
Shahjada
Staff OP

It loading fine for me:

Cursor%20and%20Acuerdo%20de%20cooperaci%C3%B3n%20con%20la%20Organizaci%C3%B3n%20Internacional%20para%20las%20Migraciones%20-%20Mercociudades

Viewing 25 posts - 576 through 600 (of 15,655 total)