Christiaan van Luik
Forum Replies Created
-
Forum: Plugins
In reply to: [MyListing Elementor Toolkit] Dynamic Tags NOT ShowingI’m not sure what you mean.
On the screenshot you send I do see the Regular field, editor field, number field etc. So those are the dynamic tags for mylisting.
The paid PRO version includes more dynamic tags e.g. for location, opening hours etc
Forum: Plugins
In reply to: [MyListing Elementor Toolkit] API key deactivation/activation not workingYou can also deactivate via your account: https://plugins.yellowwave.eu/my-account/api-keys/
After that activation should workForum: Plugins
In reply to: [MyListing Elementor Toolkit] Capabilities documentationThe documentation is still actively being worked on so its not 100% complete.
https://plugins.yellowwave.eu/documentation/ is what we have now.
You can create:
- Header using elementor
- Listing cards using elementor (preview card)
Forum: Plugins
In reply to: [MyListing Elementor Toolkit] Live in UK and want to buy the pro versionHello,
Because of Brexit we currently do not sell to the UK. I also replied to you email. Please do not use the forum for pro-related questions.
I had the same problem, it turns out that in
Simple JWT Login Settings > General > Get JWT token from HeaderYou need to change from Authorisation > Authorization (with Z instead of S)
https://www.ads-software.com/support/topic/spelling-mistake-header-authorisation-authorization/
Forum: Plugins
In reply to: [MyListing Elementor Toolkit] Listing GalleryThe gallery support is a feature of the pro plugin, which can be bought here. https://plugins.yellowwave.eu/mylisting-elementor-toolkit/
If you have the PRO plugin, you can use any widget which supports the gallery dynamic tag, such as basic gallery or image carousel.
Forum: Plugins
In reply to: [MyListing Elementor Toolkit] template for video URLsDid you try to add in in Elementor Video widget?
Forum: Plugins
In reply to: [MyListing Elementor Toolkit] General questionsHi!
Sorry for the delayed reply.
Performance
If using the MyListing Performance Caching, the performance is about the same as the default theme.
If not using the performance caching, the preview cards load a little slower.
Insert link
Just like a regular text field, you can also use the dynamic tags for link fields, and thus link a button to a link that the listing owner filled out.Hiding empty
You can hide empty fields using the Display Conditions plugin from the WP Repository.Paypal HTML
Inserting paypal html is not supported. (and it would also be a security risk, to let people add html code to your site)Forum: Plugins
In reply to: [MyListing Elementor Toolkit] How do i format the date?Hi!
Support for date fields is only included in the PRO version (paid).
Forum: Plugins
In reply to: [MyListing Elementor Toolkit] Compra a vers?o proHello!
You can compare features here:
https://plugins.yellowwave.eu/mylisting-elementor-toolkit/free-vs-pro/Forum: Plugins
In reply to: [License Manager for WooCommerce] Using the API from frontend appsI second this. Think this will be a very useful feature to make this plugin interesting for much more software vendors.
For example, I’m a plugin developer. I sell the plugin as a woocommerce download product. After that they would need the license key to set up automatic updates.
Many alternatives, like EDD software licenses or WooCommerce Software License Manager have this kind of functionality.
If you would be able to add this functionality to the theme, I would be happy to create a plugin update checker for use with this plugin.
That’s weird.
Can you share some screenshots?
Forum: Plugins
In reply to: [MyListing Elementor Toolkit] Archive pagesYou can use Elementor’s archive templates for that.
Forum: Plugins
In reply to: [GravityExport Lite for Gravity Forms] PHP Notice in Excel FileBy the way, I temporarely fixed it by replacing
ob_end_clean(); // Cleaning buffer for preventing file corruption
with
if (ob_get_length()) ob_end_clean(); // Cleaning buffer for preventing file corruption
Forum: Themes and Templates
In reply to: [OceanWP] How to design archive for custom post type@apprimit I found this discussion when searching for the same problem as @vinhxomdoi.
Your solution is indeed a way to achieve this, but there is a mistake in your code.
is_archive()
does not take any parameter.
Instead, your should useis_post_type_archive('my-custom-post-type')
The correct code would then be:
if(is_post_type_archive('my-custom-post-type')){ get_template_part( 'partials/entry-my-custom-post-type/layout', get_post_type() ); } else{ get_template_part( 'partials/entry/layout', get_post_type() ); }
- This reply was modified 5 years, 11 months ago by Christiaan van Luik.
- This reply was modified 5 years, 11 months ago by Christiaan van Luik.