TotalPress.org
Forum Replies Created
-
Forum: Plugins
In reply to: [Custom post types, Custom Fields & more] Plugin removed???Hi @mhagenaars ,
Thanks for reporting the problem.
We are working on restoring all services.
Thank youHi @lcm404 🙂
As written in the previous comment, the welcome notice can now be hidden forever. The bug that was fixed thanks to your report.
The plugin does not break any development guidelines, your data is not tracked within your WordPress dashboard. The data is only tracked if you click on one of the links pointing to the official website of the TotalPress development team and only inside official website.
That said, the community created for WordPress makes everyone free to do as long as they comply with the WordPress guidelines and trademark laws.
Enjoy your WordPress, good job to you.
Forum: Plugins
In reply to: [Custom post types, Custom Fields & more] Archive template is missingHi @mhagenaars ,
activity related to this feature is still ongoing.This feature is expected to be released before the end of 2022.
If you find the plugin useful and want to support the project don’t forget to leave your 5 star review ( it’s really important ❤ ).
Use of UTM params on plugin url have been restored.
Here is the response from the development team:
Q: on the plugins development guidelines (in section 7) it is not clear if it is possible to use parameters in external url (for example UTM). A: You're allowed to use UTMs as long as you don't hide them in a shortened URL Q: These parameters do not track any user activity within the WordPress dashboard, but simply add details to the target website's analytics data. A: The really do track data, but since people can preview a URL before clicking, it's permitted.Hi @lcm404 and thanks for using this plugin! 🙂
Thanks to your report in the new version (3.0.14) a bug on notices is fixed.
That functionality comes with the ability to close notices (x days), but this didn’t work in some cases (like yours).
The welcome notice is now only displayed on plugin pages.
It is now also possible to close some notices (like welcome notice) for 100 years 😀
For the development guidelines on the tracing section (section 7) I sent a request to the development team, at the moment the UTM parameters have been removed, but if the response from the development team is positive they will be used again.
These parameters do not track any user activity within the WordPress dashboard, but simply add details to the target website’s analytics data.
If you find the plugin useful and want to support the project don’t forget to leave your 5 star review ( it’s really important ❤ ).
Hi @kjy112
The new version (3.0.13) include a fix for your segnalation.If you find the plugin useful and want to support the project don’t forget to leave your 5 star review ( it’s really important ❤ ).
If you want to give more support:
– Make a donation (like a coffee);
– Get the PRO version;- This reply was modified 3 years, 11 months ago by TotalPress.org.
- This reply was modified 3 years, 11 months ago by TotalPress.org.
Forum: Plugins
In reply to: [Custom post types, Custom Fields & more] $ is not a functionHi @jitka88
The new version (3.0.12) include a fix for your segnalation.If you find the plugin useful and want to support the project don’t forget to leave your 5 star review ( it’s really important ❤ ).
If you want to give more support:
– Make a donation (like a coffee);
– Get the PRO version;Forum: Plugins
In reply to: [Custom post types, Custom Fields & more] $ is not a functionHi @jitka88 🙂 thanks for using this plugin.
The plugin has been tested with many other plugins, without conflicts. From a first test, we are unable to replicate the bug.
We invite you to fill in the “suggestions” form available on our site by referring to this request by adding the details of your environment (wp version, php version, active plugins and versions, theme used, browser used).
If you find the plugin useful and want to support the project don’t forget to leave your 5 star review ( it’s really important ❤ ).
If you want to give more support:
– Make a donation (like a coffee);
– Get the PRO version;Forum: Plugins
In reply to: [Custom post types, Custom Fields & more] Archive template is missingHi @mhagenaars 🙂 thanks for using this plugin!
We are working to implement a visual management for the creation of archive templates. In the official documentation on our website you will find both shortcodes and functions created to show fields. Let us know if you solve the problem.
If you find the plugin useful and want to support the project don’t forget to leave your 5 star review ( it’s really important ❤ ).
If you want to give more support:
– Make a donation (like a coffee);
– Get the PRO version;Hi 🙂 thank you for choosing this plugin.
You can hide post types created with this plugin, and any other post types using custom functions or other plugins (try searching the net).
If you find the plugin useful and want to support the project don’t forget to leave your 5 star review ( it’s really important ❤ ).
If you want to give more support:
– Make a donation (like a coffee);
– Get the PRO version;Forum: Plugins
In reply to: [Cloud Customer Area] personal reserved area?Hi @ermannaro
Hi, the plugin does exactly that. a shortcode is provided to insert on a page, the first time a user visits that page, a folder on the cloud dedicated to him is created. by placing the files in that folder via Google Cloud only he will see them. You can try.
Forum: Plugins
In reply to: [Custom post types, Custom Fields & more] Download links brokenHi @shannonr1 thanks for using this plugin 🙂
Version 2.X.X used text fields for files (the url was used when you selected a file), the shortcode then showed the url of the text field.
The new version 3.X.X stores the attachment id, so as not to depend on the url (which can change over time), this id is used to retrieve the url and show it in the frontend using the shortcode.
This is a native plugin filter, as you see it fetches url from id and returns it in frontend (using shortcode
[cpt-field key="FIELD-KEY"])add_filter('cpt_get_field_type_file', function ($output) { $file_type = get_post_mime_type($output); $file_types = explode('/', $file_type); $main_type = isset($file_types[0]) ? $file_types[0] : false; if ($main_type && $main_type == 'image') { return wp_get_attachment_image($output, 'full'); } return wp_get_attachment_url($output); });If you’re not using the shortcode and retrieve the meta value from the database (
get_post_meta ()), put this function in the child theme’s functions.php file:function get_file_url_from_cpt_meta($meta_value = null) { if (get_post($meta_value)) { // Meta is file id return wp_get_attachment_url($meta_value); } // Meta is url (plugin v2.x.x) return $meta_value; }And use this function in the template where you show the url:
<a id="link_button-41-44" class="ct-link-button" href="<?php echo get_file_url_from_cpt_meta($YOUR_META_VALUE); ?>" target="_blank">Download PDF</a>If the problem is not resolved, create temporary credentials and submit them via the suggestion form on our website.
Sorry for the inconvenience caused by version 3.x.x, as you can see we have improved the core, performance, security, UX and extensibility of the plugin functions.
If you find the plugin useful and want to support the project don’t forget to leave your 5 star review ( it’s really important ❤ ).
If you want to give more support:
– Make a donation (like a coffee);
– Get the PRO version;Hi @olandir thanks for using this plugin 🙂
You can upload the images to a sharing service (search on Google) and insert the links here. Does it work well now?
If you find the plugin useful and want to support the project don’t forget to leave your 5 star review ( it’s really important ❤ ).
If you want to give more support:
– Make a donation (like a coffee);
– Get the PRO version;Hi @bokwenic and @olandir thanks for using this plugin 🙂
If you are using paid licensed themes, you must send the theme zip file via sharing services (eg: Google Drive) via the suggestion form on the official website, if many requests are sent for that theme, compatibility will be integrated.
Immediate integration with the themes is possible via code (see documentation on the official website) or by making a donation for the PRO version.
If you find the plugin useful and want to support the project don’t forget to leave your 5 star review ( it’s really important ❤ ).
If you want to give more support:
– Make a donation (like a coffee);
– Get the PRO version;Hi @volaticus thanks for using this plugin 🙂
Those post types are part of the UI of the plugin and should not be indexed, if you use a plugin for indexing in search engines check the configuration.
It seems that those links are present in the sitemap.xml or linked in the public frontend.If you find the plugin useful and want to support the project don’t forget to leave your 5 star review ( it’s really important ❤ ).
If you want to give more support:
– Make a donation (like a coffee);
– Get the PRO version;