Please send login in private to check the issue.
Thanks
So you are selecting a category id in the shortcode and the categories’ subcats are showing in the frontend. After you click on them, the result will be filtered.
Now you want to select a category and a default subcategory in the shortcode?
The user will redirect if they are already registered. But registration process will not redirect user after registration -> login to download page.
But, you can use email lock feature to capture more data. And also use the addon to build a perfect email list. more here(https://www.wpdownloadmanager.com/grow-your-email-list-by-offering-free-downloads/)
There is an option “Download Instantly & Do Not Mail Download Link ” you can turn on from package settings, This lets a user download instantly after the package form submitted by the user.
Thanks
Hi,
Seems like you are not using a function with filter hook of “add to cart”. so the cart is updating after refreshing the browser. You can try to add filter or action for add to cart button.
add_filter('wpdmpp_add_to_cart', 'wpdmpp_product_cart_count', 10, 2);
function wpdmpp_product_cart_count($id){
{do staff here}
return $id;
}
Thanks
We are working on it.
Thanks
Here is the code for after login redirection. It goes to your theme function file.
add_action( 'template_redirect', 'wpdm_login_redirect' );
function wpdm_login_redirect(){
if( is_user_logged_in() && get_the_ID() == get_option('__wpdm_login_url') ):
wp_redirect( home_url('/') );
exit();
endif;
}
Or for login in the download page, use the settings option “Show Only login form”. Then the user will be redirected to the same page after login. But for registration the functionality is different. You can use the custom action for that.
Thanks
You need to change the site language from Settings > General > Site Language, You need to sure that the file for the selected language exists in translate folder.
Thanks
Hi there.
Please send login and license in private reply to check the issue.
Thanks
Hi there,
You can find page/frontend setup from settings here (http://yoursie.com/wpdmpro/wp-admin/edit.php?post_type=wpdmpro&page=settings&tab=basic).
Yes, you have to use shortcodes to build pages. You can use Advance Tinymce button ( https://www.wpdownloadmanager.com/download/advanced-tinymce-button/) which include a button on every post. From where you can easily create a shortcode for the page.
For showing category like this page (https://demo.wpdownloadmanager.com/wpdmpro/archive-page-default/) you need this addon (https://www.wpdownloadmanager.com/download/wpdm-directory-add-on/). You can find more on addon page.
Thanks
Currently, we show all cat, But it makes sense to show the subcat for a selected cat in the shortcode.
We will fix it next update.
Thanks
Hi there,
Sorry, I don’t understand what you want to accomplish. Can you be more specific about the functionality? Maybe you can show with a screenshot.
Do you want to link the category URL on the compact page?
Thanks
Hi,
Yes, you can. Please use the sample code below.
function wpdmpp_product_added_to_cart($id){
$from = 'admin@ihemel.net';
$to = 'hasibul.amin.hemel@gmail.com';
$subject = "Product Added to cart!";
$message = "Product Added to cart!";
$email['subject'] = $subject;
$email['body'] = $message;
$email['headers'] = 'From: <' . $from . '>' . "\r\n";
wp_mail($to, $email['subject'], $email['body'], $email['headers']);
return $id;
}
add_filter('wpdmpp_add_to_cart','wpdmpp_product_added_to_cart');
Thanks.
Could you show me the shortcode which is you using on your page?
Thanks
The test download is working here -> http://lucidg.com/isla-blanca-townhouse-owners-association/download/test/
But your given page has a password. I could not see the page details without it.
Thanks
Hi there,
Try downloading the plugin from the Download area and reinstalling by deleting the old one.
If the error remains.
Can you show me errors? or send login in private to check the issue.
Thanks
Hi there,
The category access will decide if the user has access to the package if you keep the allow access field in package settings empty.
Now for category access management, you can use any membership plugin which has page and category restriction.
You can use our WP pro membership which has category access control with a post. (https://www.wpdownloadmanager.com/download/wp-pro-membership/)
Thanks.
If you have checked the show the only login form. then its the default feature.
Otherwise, you need to add the custom action for login and register.
Thanks
Please send the site URL and login details in private to check.
Thanks
your site can’t be reached. Is your server down?
Hi,
Please verify your purchases and license from https://www.wpdownloadmanager.com/user-dashboard/purchases/
or send info in private to check.
Thanks
You can find it in,
wp-admin/edit.php?post_type=wpdmpro&page=settings
go to message section.
Hi there,
Can you post the page or login in private to check it?
Seems like you have problem with upload directory for multisite.
Thanks
Hi there,
When the user is already registered they need to log in to download the package file. So after login, they will be redirected to the same page.
For registering they are redirecting to the registration page. Where after successful registration, they will be redirected to dashboard. This is default settings.
for changing the redirect URL change this in settings login required message field message.
http://example.com/login-page/?redirect=[this_url]
If you want to add a custom action to login redirect method check this post. https://wordpress.org/support/topic/how-to-redirect-already-logged-in-users/
Thanks
Hi there,
Please create and select your login pages here (http://cimma.it/wp-admin/edit.php?post_type=wpdmpro&page=settings&tab=frontend)
So the user can redirect to frontend login/reg page.
Thanks
Hi,
the problem has been sorted out and fixed.
Thanks