Shahriar

Forum Replies Created

Viewing 25 posts - 926 through 950 (of 12,513 total)
Oct 19, 2019 at 8:46 pm
#113694
Moderator
Shahriar
Staff OP

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

Oct 19, 2019 at 8:45 pm
#113693
Moderator
Shahriar
Staff OP

The simple search shortcode is [wpdm_simple_search template="link-template-panel" cols=3 ] This shortcode requires WPDM Directory add-on, however, the Special Pack has it included.

Oct 19, 2019 at 8:41 pm
#113692
Moderator
Shahriar
Staff OP

Hi,
Do you want to add a package from Frontend? In that case, create a page with [wpdm_frontend flaturl=0] shortcode. The tab with “Add New” label will provide necessary options to create a new package.
Thanks.

Oct 19, 2019 at 7:29 pm
#113691
Moderator
Shahriar
Staff OP

Hi,
Please deactivate the plugin and then reactivate it. That should create the missing cache directory. If that doesn’t solve the issue send temporary wp-admin login info in private reply.
Thanks.

Oct 19, 2019 at 7:20 pm
#113690
Moderator
Shahriar
Staff OP

In new template, replace the following code,

"oLanguage": {
                "sLengthMenu": "_MENU_  per page"
            }

with

oLanguage: {
                sLengthMenu: "_MENU_  per page",
                sZeroRecords : "No records found!",
                sSearch : "Search",
                oPaginate:{
                    sNext: "Next",
                    sPrevious: "Previous",
                }
            }

After that, Replace these english strings with your target language.

Before http://prntscr.com/pll6rm
After http://prntscr.com/pll6yq

Oct 19, 2019 at 6:59 pm
#113689
Moderator
Shahriar
Staff OP

Hi, Default Values add-on isn’t part of Special Pack. So, you have to purchase it separately. Thanks.

Oct 19, 2019 at 6:58 pm
#113688
Moderator
Shahriar
Staff OP

Looks like the audio tag has some limitations in Safari. In safari, we can’t get the duration of the requested song which may be related to the page reload issue. Anyway, we are already working on a more advanced audio player which will be available soon with the core plugin.

Oct 19, 2019 at 5:54 pm
#113686
Moderator
Shahriar
Staff OP

Hi,
You can modify the Email Lock Template from Downloads > Settings > Templates > Email Templates.

Download Manager uses the email-lock email template to send the email from the lock feature. So, it shouldn’t be plain text. Are you using the Email Notification add-on?

Please send temporary wp-admin login info in private reply if you want me to take a closer look at this issue.

Thanks.

Oct 19, 2019 at 5:35 pm
#113685
Moderator
Shahriar
Staff OP

Please send the wp-admin login.

Oct 19, 2019 at 5:33 pm
#113684
Moderator
Shahriar
Staff OP

I have downloaded several packages without any issues. Please send me the package URL where you encountered the issue.

Oct 19, 2019 at 5:20 pm
#113683
Moderator
Shahriar
Staff OP

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

Oct 17, 2019 at 9:35 pm
#113640
Moderator
Shahriar
Staff OP

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

Oct 17, 2019 at 9:26 pm
#113639
Moderator
Shahriar
Staff OP

REST API is working now. Some Apache module was removing the authorization header from the request. I had to add CGIPassAuth On in your .htaccess file to allow the bearer token in the header.

Oct 17, 2019 at 9:16 pm
#113638
Moderator
Shahriar
Staff OP

Hi,

It is not a core WordPress feature. Looks like you are using a plugin to rearrange the pages/posts. Please check if your ordering plugin supports custom post types too.

Thanks.

Oct 17, 2019 at 9:07 pm
#113636
Moderator
Shahriar
Staff OP

Have you installed the Default Values add-on https://www.wpdownloadmanager.com/download/wpdm-default-values/ ?

Oct 17, 2019 at 9:04 pm
#113635
Moderator
Shahriar
Staff OP

You can utilize the wpdm_embed_category_query_params hook to modify the query parameters to sort packages by custom field. Add the following code to your theme’s functions.php file. Based on the custom filed value type use meta_value_num or meta_value Also make sure you are using the correct meta_key name. Replace acf_CustomField_tag with your custom field name ( same as template tag excluding the brackets )

function wpdm_modify_category_query_params( $params ){
    $params['orderby'] = 'meta_value_num';
    $params['meta_key'] = "__wpdm_"."acf_CustomField_tag";

    return $params;
}
add_filter('wpdm_embed_category_query_params', 'wpdm_modify_category_query_params');
Oct 17, 2019 at 8:39 pm
#113632
Moderator
Shahriar
Staff OP

When do you encounter this error? Could you please send your error log file? Or just send temporary wp-admin login info in private reply.

Oct 17, 2019 at 8:37 pm
#113631
Moderator
Shahriar
Staff OP

Please add the following CSS to Appearance > Customize > Additional CSS,

.w3eden .row .col-md-3:nth-child(4n)::after {
    content: '\a';
    white-space: pre;
}
Oct 17, 2019 at 8:25 pm
#113628
Moderator
Shahriar
Staff OP

Fixed the saving issue in Basic Settings Tab.

We do not have the USA ePay payment gateway yet. But I am looking into the possibility of a new add-on to support the gateway.

Oct 17, 2019 at 8:19 pm
#113627
Moderator
Shahriar
Staff OP

Please use items_per_page parameter instead of posts_per_page

Oct 17, 2019 at 8:15 pm
#113626
Moderator
Shahriar
Staff OP

Hi,

Your key was linked to your staging site stage.agnitas.de I have unlocked it from there. Now the license key should work fine on your new site.

Thanks.

Oct 17, 2019 at 8:11 pm
#113624
Moderator
Shahriar
Staff OP

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

Oct 17, 2019 at 8:07 pm
#113623
Moderator
Shahriar
Staff OP

We are aware of this issue and already working on it. The fix is coming soon. The issue originated from API changes on Twitter.

Oct 17, 2019 at 8:05 pm
#113622
Moderator
Shahriar
Staff OP

The issue may be originated from some kind of conflict with another plugin. May I deactivate other plugins temporarily for testing purposes? I have tested this feature on my demo site and there was no issue with safari.

Oct 17, 2019 at 7:52 pm
#113621
Moderator
Shahriar
Staff OP

Reset password feature is working perfectly now.

Viewing 25 posts - 926 through 950 (of 12,513 total)