paid membership pro with learnDash plugin - learndash

I want to get all list of courses which i assigned to particular membership level like( Silver, Gold) using Paid Membership Pro plugin and created courses using LearnDash plugin.
but using [ld_course_list] shortcode it display all courses.

Related

Can I autoload products and price lists in magento2?

My magento site will be used in multiple countries like Thailand, Malaysia, Indonesia, Phillipinse, Singapore. If a person open the site from Thailand, based on geo location, the site should automatically load thailand specific information like home page and price etc. If its opened from Malaysia, it should show Malaysia specific homepage and price.
Each country will have multiple product vendors who will send the product to the customer. Each vendor will have a separate account (username/password) and they can maintain their inventory/upload their product with their price from their account. The customer can see all products from all vendors for that country from which customer open the site. After the customer place order, product vendor will receive an email about order according to the email id they have configure in their profile. If customer choose two seperate products from two different customer, then two different email should be generated and sent to product vendor. Later, product vendor will pack the product and send to the customer. After that, order status is closed.
What should I complete these functions?
I don`t know what should I do.

Can Flutter Pay plugin be used in the same way as PayPal app type "Platform"?

I am working on a Flutter app where users are grouped in organizations. I want every user to be able to pay a sum for their choice to their organization. I have read, that there are two types of apps (projects) one can create in a PayPal Developer account: "Merchant" and "Platform".
Platform type allows multiple sellers or beneficiaries within one app. This seems to be a reasonable solution for my problem. Now, I'm wondering if I can achieve the same (or similar) results but with Google Pay and Apple Pay instead of PayPal. Can I specify different beneficiaries for different transactions within one Flutter app?

How to set discount price for Grouped Product In Magento 2

For Example: I have two simple product Mobile Phone of Price: 500$ and 1 Memory Card of price 10$. Total is 510 $.
I want to sell both product as a group at Price 505$.
From Admin section i'm not able to see any price configuration for Group Product IN Magneto 2.
It looks like the price attribute is missing in your Attribute set.
Please check: Stores --> Attributes --> Attribute Set
Normally, you can choose Advanced Pricing for this
For Grouped Products the price is calculated as the sum of the prices of the individual products.
That's also why the price section is missing for grouped products.
The grouped products in Magento mainly serve as a way to display few products on one page. You can't set a price for the grouped product since Magento calculates the price dynamically by summing up the children products' prices that were selected by the customer. That is if the customer adds the mobile phone and the memory card to cart from within the grouped product page, the price will be $500+$10 = $510.
Therefore, if you want to be able to set a different price for products that were purchased together, there are two options:
1) Use a Bundled Product (with Price Type = Fixed Price) and set the phone and the memory card as it's children. In this case, you can set the bundled product price to be $505.
There are few limitations to this solution:
The customer can't just add the mobile phone or the memory card to cart separately from this page, he can only add them together. That is the customer will need to go to a separate page to purchase the mobile phone (or the memory card) standalone.
Once the user added the bundled product to his cart, he can't just remove one child product from the cart (e.g the memory cart) - he has to remove both.
2) You can use an extension for it. One of the extensions that implement this functionality is Bundled Discount. It allows you to set the products of group A (in your case - the mobile phone) and the products of group B (in your case the memory card) and set the special price whenever they are purchased together (eg: $505).
It also allows you to create a separate page for the bundled promotion. This way, the user can select whether he wants to add only the mobile phone for $500, the memory card for $10, all both for $505.
The user can also remove one of the products from his cart and only pay for another product (eg: the user removes the memory card from his cart and only pays $500 for the phone).
Disclaimer: I am the CEO of the company that developed the Bundled Discount extension.

is it possible to convert prestashop website into a normal cms website?

I need to use a prestashop website as a CMS website so that I can hide all the pricing features, Add to cart features..I want to manage my prestashop website as a portfolio for my business. Since I can't afford to sell my products online right now and at a later stage I could activate the features like add to cart and pricing.
Preferences -> Products - Catalog mode -> On
It will disable all "shop features"

Limit iPhone in-app purchase by user's country

I'm a product manager who works for a small internet company that is developing an iPhone application for a social network. We monetize by offering limited and premium memberships to users (premium members get additional features not available to limited members). For billing on the web, we use a 3rd-party payment gateway that is nearing retirement, and will be replaced by an in-house solution.
The business wants a global launch for our iPhone app using iTunes + in-app purchasing as a payment gateway. The problem with going global using this payment method is that for our web service membership level, available features, and subscription costs are defined by country. For example, in the US premium/limited memberships are available at 5 pricing tiers; in France premium/limited memberships are available at 5 different pricing tiers from the US; and in Chile the service is available for free and all features are available to users.
Is it possible then to have the server-side, based on the user's country of registration, control the level of access, features, and payment options for users on the iPhone? I'd also note that since iTunes Connect does not allow variable pricing by currency and country, each "region" would need 5 in app purchase options.
I argued for a US-only launch for iPhone using iTunes in app purchase until an in-house payment gateway is available. But you know...
"Is it possible then to have the server-side, based on the user's country of registration, control the level of access, features, and payment options for users on the iPhone?"
Yes, assuming you can get a reliably country of registration.
Once the server/application has the data, it can do pretty much whatever it wants with it, no? If the purchase happens in-app, then it is under your control. Only show/accept the payment options you want. If the features are only exposed from within/by the app, then it is under your control. Only show/allow the features you want. Well, if the above assumption holds anyway.
Of course, such conditionals do make the entire package more complex.