Shahjada

Forum Replies Created

Viewing 25 posts - 2,426 through 2,450 (of 15,655 total)
May 15, 2020 at 6:20 pm
#128392
Keymaster
Shahjada
Staff OP

Yes, default value’s bulk update doesn’t work for “Ask For Visitors Name” field, however, we are adjusting it and a new update will be released within the next few hours. Thanks.

May 14, 2020 at 11:38 am
#128285
Keymaster
Shahjada
Staff OP

If you want you can change these restrictions using the following filters:

add_filter('wpdm_review_package_access_required', function (){ return false; } );
add_filter('wpdm_review_purchase_required', function (){ return false; } );
add_filter('wpdm_review_download_required', function (){ return false; } );
May 14, 2020 at 11:01 am
#128280
Keymaster
Shahjada
Staff OP

When you are using user review plugin, here is the exact code you need to use:

add_filter("wpseo_schema_webpage", function($ldjson){
	if(!is_singular("wpdmpro")) return $ldjson;
        global $wpdm_user_reviews;
        $reviews = get_posts("post_type=wpdmreview&meta_key=pid&meta_value=".get_the_ID()."&post_parent=0");
        $ratingCount = count($reviews);
	$ldjson['@type'] = 'SoftwareApplication';
	$ldjson['@id'] = get_permalink(get_the_ID()).'#SoftwareApplication';
	$ldjson['applicationCategory'] = "http://schema.org/OtherApplication";
	$ldjson['fileFormat'] = "application/zip";
	$ldjson['downloadUrl'] = get_permalink(get_the_ID());
	$ldjson['softwareVersion'] = get_post_meta(get_the_ID(), '__wpdm_version', true);
	$ldjson['operatingSystem'] = 'Any';
	$ldjson['aggregateRating'] = array(
		"@type" ► "AggregateRating",
		"worstRating" ► 0,
        "bestRating" ► 5,
        "ratingValue" ► $wpdm_user_reviews->wpdm_get_average_reviews(get_the_ID()),
        "ratingCount" ► $ratingCount,
        "reviewCount" ► $ratingCount
    );
	$ldjson['interactionStatistic'] = array(
		"@type" ► "InteractionCounter",
        "interactionType" ► "http://schema.org/DownloadAction",
        "userInteractionCount" ► (int)get_post_meta(get_the_ID(), '__wpdm_download_count', true)
    );

	return $ldjson;
}, 999);
May 14, 2020 at 10:43 am
#128277
Keymaster
Shahjada
Staff OP

What I meant, you need the change the following values with original values:

"ratingValue" ► "*.*",
 "ratingCount" ► 0000,
 "reviewCount" ► 0000
May 14, 2020 at 10:41 am
#128276
Keymaster
Shahjada
Staff OP

Not clear, where is ????????

May 14, 2020 at 10:37 am
#128274
Keymaster
Shahjada
Staff OP

Awesome, the solution is in the reply #128271

May 14, 2020 at 10:35 am
#128271
Keymaster
Shahjada
Staff OP

It it is Yoast SEO, you need the add the following PHP code at the end of your active theme’s functions.php:

add_filter("wpseo_schema_webpage", function($ldjson){
	if(!is_singular("wpdmpro")) return $ldjson;

	$ldjson['@type'] = 'SoftwareApplication';
	$ldjson['@id'] = get_permalink(get_the_ID()).'#SoftwareApplication';
	$ldjson['applicationCategory'] = "http://schema.org/OtherApplication";
	$ldjson['fileFormat'] = "application/zip";
	$ldjson['downloadUrl'] = get_permalink(get_the_ID());
	$ldjson['softwareVersion'] = get_post_meta(get_the_ID(), '__wpdm_version', true);
	$ldjson['operatingSystem'] = 'Any';
	$ldjson['aggregateRating'] = array(
		"@type" ► "AggregateRating",
		"worstRating" ► 0,
        "bestRating" ► 5,
        "ratingValue" ► "*.*",
        "ratingCount" ► 0000,
        "reviewCount" ► 0000
    );
	$ldjson['interactionStatistic'] = array(
		"@type" ► "InteractionCounter",
        "interactionType" ► "http://schema.org/DownloadAction",
        "userInteractionCount" ► (int)get_post_meta(get_the_ID(), '__wpdm_download_count', true)
    );

	return $ldjson;
}, 999);

There, replace *.* with an average rating and 0000 with rating and review count.

May 14, 2020 at 10:31 am
#128270
Keymaster
Shahjada
Staff OP

Hi,
Which SEO plugin you are using there?

May 12, 2020 at 7:14 pm
#128132
Keymaster
Shahjada
Staff OP

Checking it.

May 12, 2020 at 6:26 pm
#128130
Keymaster
Shahjada
Staff OP
This reply has been marked as private.
May 12, 2020 at 6:22 pm
#128128
Keymaster
Shahjada
Staff OP

Hi,
I’ve checked the taxonomy-wpdmcategory.php file, I see you have modified it.
The error is triggering from here:
Image 2020-05-13 at 12.20.31 AM

I’ve exactly not sure about code, as it is not related to wpdm.

However, I’ve added a condition there to bypass the issue:
Image 2020-05-13 at 12.22.24 AM

May 12, 2020 at 5:23 pm
#128116
Keymaster
Shahjada
Staff OP

Yes, you’re right, we missed the expire period for private links generated from lock option. However, we shall adjust it with the nexty update.

May 12, 2020 at 3:05 am
#128069
Keymaster
Shahjada
Staff OP

Okay now, there was some css conflict:
Image 2020-05-12 at 9.02.35 AM

I’ve added the following css:

.modal.fade.show{
	opacity: 1 !important;
	background: rgba(0,0,0, 0.3);
}
.modal-backdrop.fade{
	display: none !important;
}
May 10, 2020 at 6:33 pm
#127968
Keymaster
Shahjada
Staff OP

Hi,
No vimeo tag is available, but you can create custom tag for each video embed code from vimeo, and use it with your link/page template:
Image 2020-05-11 at 12.31.41 AM

May 10, 2020 at 3:12 pm
#127962
Keymaster
Shahjada
Staff OP
May 10, 2020 at 2:43 pm
#127960
Keymaster
Shahjada
Staff OP

Okay now. Bootstrap 4 was conflicting with your active theme, so I have activeted Bootstrap 3 from wpdm ui settings, now it is working fine.
Screen Recording 2020-05-10 at 08.42 PM

May 10, 2020 at 2:24 am
#127944
Keymaster
Shahjada
Staff OP

You’re welcome.
And many thanks for your appreciation :).

May 10, 2020 at 2:21 am
#127942
Keymaster
Shahjada
Staff OP

that is not a generic issue, it probably happened due to css conflcit with your theme.

May 10, 2020 at 2:14 am
#127940
Keymaster
Shahjada
Staff OP

Yes, you can change sale notification email address and email contents from here:
Image 2020-05-10 at 8.13.14 AM

May 10, 2020 at 2:05 am
#127937
Keymaster
Shahjada
Staff OP

I have added the following CSS:

.payment-gateway-list .list-group-item:first-child{
	background: url("https://designs.metom.org/wp-content/uploads/2020/05/paypal.png") 32px center no-repeat !important;
	background-size: auto 32px !important;
	line-height: 48px;
	color: transparent;
}

Here:
Image 2020-05-10 at 8.04.44 AM

May 10, 2020 at 2:03 am
#127936
Keymaster
Shahjada
Staff OP

You’re welcome :D.
BTW, if you get some free moments someday, please give us a 5* here https://wordpress.org/support/plugin/download-manager/reviews/#new-post. Thanks in advance.

Also, let me know if you need any other assistance.

May 10, 2020 at 2:01 am
#127932
Keymaster
Shahjada
Staff OP

No worry, I’ve adjusted that for you too :), I’ve added some CSS and check now:
Image 2020-05-10 at 8.00.12 AM

May 10, 2020 at 1:51 am
#127928
Keymaster
Shahjada
Staff OP

Image 2020-05-10 at 7.45.47 AM

May 10, 2020 at 1:31 am
#127921
Keymaster
Shahjada
Staff OP

However, I see, you also have configured PayPal smart button, which also works fine and customers can pay with PayPal or credit card without leaving your site, why are you trying to use PayPal pro.

May 10, 2020 at 1:27 am
#127920
Keymaster
Shahjada
Staff OP

Hi,
Extremely sorry for the delays in adjusting the issue, PayPal Payment pro is working fine now in your side, you just need to use correct credentials. Current credentials may be incorrect or account doesn’t have proper authorization:
Image 2020-05-10 at 7.26.05 AM

Viewing 25 posts - 2,426 through 2,450 (of 15,655 total)