Hasibul Amin Hemel

Forum Replies Created

Viewing 25 posts - 1,301 through 1,325 (of 1,509 total)
in reply to: Filename #66486

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?

in reply to: Register Redirect To Download Page not UserDashboard #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

in reply to: Ajax Cart Count? #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

in reply to: Problems with S3 AddOn #66469

We are working on it.

Thanks

in reply to: Register Redirect To Download Page not UserDashboard #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

in reply to: Translation not working #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

in reply to: Cannot Save Settings #66460

Hi there.

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

Thanks

in reply to: How To Create Front End? #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

in reply to: Problem with Compact View in Archive Add-on #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

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

in reply to: File Cart – Cc: email #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.

in reply to: Problem with Compact View in Archive Add-on #66429

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

Thanks

in reply to: 4.7.2 Update can no longer view packages on front end #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

in reply to: cannot save content after new update #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

in reply to: User acces to only one category #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.

in reply to: Register Redirect To Download Page not UserDashboard #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

in reply to: Align My Download List #66418

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

Thanks

in reply to: Sorry, Your Are Not Allowed! #66417

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

in reply to: License not valid #66416

Hi,

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

or send info in private to check.

Thanks

in reply to: Register Redirect To Download Page not UserDashboard #66415

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

in reply to: Register Redirect To Download Page not UserDashboard #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

in reply to: update plugin #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

in reply to: FOR Hasibul Amin Hemel #66377

Hi,

the problem has been sorted out and fixed.

Thanks

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