Torsten H?ndler
Forum Replies Created
-
Forum: Plugins
In reply to: [Bulk Download for Gravity Forms] Issue with Larger FilesHello @ericmorrellprinting ,
Sorry for the late response.
I have to tell you that there is no solution for your problem, but we will try to implement an error message when files are bigger and the zip will fail.
Uploading such large files via a form is not a common practice
Forum: Plugins
In reply to: [Bulk Download for Gravity Forms] Issue with Larger FilesHello @ericmorrellprinting
We checked it on our side and there are serveral problems.
1. Your memory_limit is to low. I check it with a 1.5GB file and have to use 6GB memory limit.
2. We use the default ZipArchive class from PHP. But this class has limits and can’t create files larger then 4GB, also it can not split large files into smaler once.
We will check if we found a solution for this, but I can’t tell when.Forum: Plugins
In reply to: [Bulk Download for Gravity Forms] Issue with Larger FilesHello @ericmorrellprinting ,
thanks for your question.
I think it could be some server settings. I will check this.
For check on your side you can activate WP Debug and the WP Debug log and then check the log file. What kind of error is shown when you create the zip or did it just stop?
Forum: Plugins
In reply to: [Vtiger Webform to Gravity Forms Converter] Translate My WebsiteHi,
your question has nothing to do with this plugin, sry.
You want translate your website? Pls check translatepress or wpml with auto translation.https://wpml.org/documentation/getting-started-guide/translate-pages-in-wordpress-with-wpml/
Forum: Plugins
In reply to: [Bulk Download for Gravity Forms] Link to download from Frontend?closed due to inactivity
Forum: Plugins
In reply to: [Bulk Download for Gravity Forms] Link to download from Frontend?Hey @nilssondigital
The plugin give the opportunity to get the download link via the merge-tag {bulk_download_link} or with custom text {bulk_download_link:link_text=”download entry files”}
So if you use a plugin which accept the GF merge-tags like “Gravity Perks” with the “GP Entry Block” you are fine with our merge-tag.Forum: Plugins
In reply to: [Bulk Download for Gravity Forms] Link to download from Frontend?Hello @nilssondigital
sry for the late response.
We will check if this is possible.Forum: Plugins
In reply to: [GravityExport Lite for Gravity Forms] Change CSV CharsetHi @doekenorg
thanks for the filter, that helps a lot
Best regards
shogathuForum: Plugins
In reply to: [GravityExport Lite for Gravity Forms] Change CSV CharsetHello Doeke,
thanks for take a look into this. So as we need it fast, we make it happened for us by change 1 line of code while creating the file. This make the work for us and we will wait for an update.
gf-entries-in-excel/build/vendor_prefixed/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Writer/Csv.php:131
we added
$cellsArray[0] = mb_convert_encoding($cellsArray[0],’ISO-8859-1′ );Best regards
ShogathuForum: Plugins
In reply to: [WP-Members Membership Plugin] Show/Hide Passwordsure, I add in my plugin
function my_plugin_show_hide_pw_wp_members( $rows, $action, $arr ) {
$rows[1]['field_after'] = '<a class="password-toggle-icon"><i class="fas fa-eye"></i></a>';
$rows[1]['row_after'] = '<script type="text/javascript">
const passwordField = document.getElementById("pwd");
const togglePassword = document.querySelector(".password-toggle-icon i");
togglePassword.addEventListener("click", function () {
if (passwordField.type === "password") {
passwordField.type = "text";
togglePassword.classList.remove("fa-eye");
togglePassword.classList.add("fa-eye-slash");
} else {
passwordField.type = "password";
togglePassword.classList.remove("fa-eye-slash");
togglePassword.classList.add("fa-eye");
}
});
</script>
';
return $rows;
}
add_filter( 'wpmem_login_form_rows', 'my_plugin_show_hide_pw_wp_members', 10, 3 );and add some css
#wpmem_login_form .div_text {
position: relative;
}
.password-toggle-icon {
position: absolute;
top: 30px;
right: 10px;
transform: translateY(-50%);
cursor: pointer;
}
.password-toggle-icon i {
font-size: 18px;
line-height: 1;
transition: color 0.3s ease-in-out;
margin-bottom: 20px;
}
.password-toggle-icon i:hover {
color: #000;
}this is based on font awesome.
I hope this helps you
Forum: Plugins
In reply to: [WP-Members Membership Plugin] Show/Hide Password@astreetweb thanks but that is not a good solution
But I found another solution by using the ‘wpmem_login_form_rows’
Hello Doeke,
thanks for your quick response. Before I wrote the ticket I tested it with the
gfexcel_event_download
Action but for my case it won’t work because we use the premium version with different export filter feeds, and we have to trigger which feed was used and update a field in the entry, that this entry was downloaded. Yourgfexcel_event_download
action triggers right between the response but before get the entry list, so our field in the entry was update before the list with the search_creteria filter was created and the list was emptyBut I thank you that you want to include the timestamp that will also help us.
Best regards
Torsten
- This reply was modified 5 months, 3 weeks ago by Torsten H?ndler.
Forum: Plugins
In reply to: [Bulk Download for Gravity Forms] Unable to Expand – Unsupported FormatHello farahm,
thanks for your question. We will check this.
Where did the files come from? It looks like they come from an external URL because they have URL parameter at the end of the name. Are the files uploaded by the standard upload field, or did you have an extra plugin which add a new upload field?Forum: Plugins
In reply to: [Bulk Download for Gravity Forms] Feature: Filter $uploaded_fileswe’ve released a new version and we hope this will help you
Forum: Plugins
In reply to: [Bulk Download for Gravity Forms] Feature: Filter $uploaded_filesHello @happysalamander,
thanks for your feature request. This is the right place I think. We will check the possibility of your request and try to implement it.
Best
Shogathu