Hasibul Amin Hemel

Forum Replies Created

Viewing 25 posts - 1,301 through 1,325 (of 1,509 total)
Dec 8, 2017 at 2:12 pm
#66486

Please send login in private to check the issue.
Thanks

Dec 8, 2017 at 2:09 pm
#66485

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?

Dec 7, 2017 at 10:42 pm
#66474

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

Dec 7, 2017 at 9:11 pm
#66471

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

Dec 7, 2017 at 8:59 pm
#66469

We are working on it.

Thanks

Dec 7, 2017 at 8:58 pm
#66468

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

Dec 7, 2017 at 8:21 pm
#66463

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

Dec 7, 2017 at 7:52 pm
#66460

Hi there.

Please send login and license in private reply to check the issue.

Thanks

Dec 7, 2017 at 7:51 pm
#66459

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

Dec 7, 2017 at 7:37 pm
#66456

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

Dec 7, 2017 at 7:26 pm
#66453

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

Dec 7, 2017 at 7:06 pm
#66449

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.

Dec 6, 2017 at 10:39 pm
#66429

Could you show me the shortcode which is you using on your page?

Thanks

Dec 6, 2017 at 10:36 pm
#66428

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

Dec 6, 2017 at 10:25 pm
#66426

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

Dec 6, 2017 at 10:10 pm
#66425

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.

Dec 6, 2017 at 7:49 pm
#66422

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

Dec 6, 2017 at 7:09 pm
#66418

Please send the site URL and login details in private to check.

Thanks

Dec 6, 2017 at 7:06 pm
#66417

your site can’t be reached. Is your server down?

Dec 6, 2017 at 6:55 pm
#66416

Hi,

Please verify your purchases and license from https://www.wpdownloadmanager.com/user-dashboard/purchases/

or send info in private to check.

Thanks

Dec 6, 2017 at 6:45 pm
#66415

You can find it in,

wp-admin/edit.php?post_type=wpdmpro&page=settings

go to message section.

Dec 6, 2017 at 6:39 pm
#66412

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

Dec 6, 2017 at 5:57 pm
#66407

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

Dec 5, 2017 at 9:15 pm
#66379

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

Dec 5, 2017 at 8:58 pm
#66377

Hi,

the problem has been sorted out and fixed.

Thanks

Viewing 25 posts - 1,301 through 1,325 (of 1,509 total)