manesvenom
Forum Replies Created
-
Hi Gaurav,
I have setup a demo site for your testing.
Site name: Sweltering Income
URL: https://swelteringincome.s4-tastewp.com
Username: admin
Password: bGNYoJr7WZII just created a Custom Field (Job function) for Job Data section. You might select “Legal” for the job function and publish the job again. Though the job could be saved, it would display “Accounting” as selected.
<select name="_field_cfwjm5" id="_field_cfwjm5"> <option value="Accounting ">Accounting </option> <option value="Legal ">Legal </option> <option value="SalesAndMarkerting ">SalesAndMarkerting </option> <option value="Technology">Technology</option> </select>
- This reply was modified 2 years, 7 months ago by manesvenom.
Hi Ramon,
Your solution is fine. I don’t need to modify your code now.
It seems to be adding a filter and pass the redirect_url as parameter. If it returns the empty url, then it could skip performing the redirection.
https://wordpress.stackexchange.com/questions/224416/how-to-do-action-and-get-a-return-value
Regards,
Venom
Forum: Plugins
In reply to: [HTTP Headers] Cookie Security won’t setI have the same issue too. Even the httponly and secure is set, it doesn’t set the cookie with HttpOnly and Secure.
It seems to be working now after adding the following line ‘Header set Set-Cookie HttpOnly;Secure’ right before # END WordPress in .htaccess
<IfModule mod_rewrite.c> RewriteEngine On RewriteBase / RewriteRule ^index\.php$ - [L] RewriteCond %{REQUEST_FILENAME} !-f RewriteCond %{REQUEST_FILENAME} !-d RewriteRule . /index.php [L] </IfModule> Header set Set-Cookie HttpOnly;Secure # END WordPress # BEGIN HttpHeaders # The directives (lines) between "BEGIN HttpHeaders" and "END HttpHeaders" are # dynamically generated, and should only be modified via WordPress filters. # Any changes to the directives between these markers will be overwritten. <IfModule mod_headers.c> Header always set X-Content-Type-Options "nosniff" <FilesMatch "\.(php|html)$"> Header set X-Frame-Options "SAMEORIGIN" Header set X-XSS-Protection "1" Header set Pragma "no-cache" Header set Cache-Control "must-revalidate, no-cache, no-store" </FilesMatch> </IfModule> # BEGIN HttpHeadersCookieSecurity # The directives (lines) between "BEGIN HttpHeadersCookieSecurity" and "END HttpHeadersCookieSecurity" are # dynamically generated, and should only be modified via WordPress filters. # Any changes to the directives between these markers will be overwritten. php_flag session.cookie_httponly on php_flag session.cookie_secure on # END HttpHeadersCookieSecurity
Forum: Plugins
In reply to: [HTTP Headers] Headers not sent to the clientSorry.Replied the wrong thread.
Hi Maarten,
It is just my workaround, hopefully the next update would have an option to control the setting.
Regards,
Venom
Hi Marta,
I have uninstalled the Woocommerce and WPML. Then I reinstalled the WPML first following the Woocommerce. After both plugins installed, I installed the Flexible Product Add-Ons Free WooCommerce. It works like a charm. Thank you for your support.
Regards,
Venom
Open the class-fields.php in includes/classes folder and find the function
value_to_string at line 444replace
return sprintf('%s (%s)', self::sanitize_value($field,$raw_value), Helper::format_pricing_hint($field->pricing->type,$field->pricing->amount));
with
if($field->pricing->amount > 0){ return sprintf('%s (%s)', self::sanitize_value($field,$raw_value), Helper::format_pricing_hint($field->pricing->type,$field->pricing->amount)); }else{ return sprintf('%s ', self::sanitize_value($field,$raw_value)); }
Forum: Plugins
In reply to: [DK PDF] Chinese script — can’t get it to workHi,
Please try to follow the thread below for the setting.
https://www.ads-software.com/support/topic/traditional-chinese-not-display-probably/
Cheers,
Venom
Hi,
Does anyone know how to turn off the “Well Received your enquiry” notification email?
Regards,
Venom
Forum: Plugins
In reply to: [Simple Custom CSS and JS] CodeMirror js conflict with WordPress CoreHi,
I found out which plugin is in conflict with you plugin. Once I disabled the following plugin. It works fine.
Page Builder by SiteOrigin by SiteOrigin Version 2.10.2
Cheers,
Venom
- This reply was modified 5 years, 8 months ago by manesvenom.
Forum: Plugins
In reply to: [Simple Custom CSS and JS] CodeMirror js conflict with WordPress CoreIt seems the workaround is to de-register the built-in version codemirror.min.js included in the WordPress when using Simple CSS and JS code plugin to open/edit file.
open admin-screens.php in custom-css-js/includes
go to line 133
add
wp_deregister_script('wp-codemirror');
Cheers,
VenomHi
The root cause of this Extra blank space after the Header.
Inside wp-html-mail/includes/
Go to class-haet-mail.php Line 360:Look up $email['message'] = wpautop($email['message']); Change to $email['message'] = wpautop ($email['message'], false);
Add false as second parameter to wpautop function call. Default: true Reference: https://developer.www.ads-software.com/reference/functions/wpautop/
“Preserve line breaks. When set to true, any line breaks remaining after paragraph conversion are converted to HTML <br />. Line breaks within script and style sections are not affected.”
The plugin I am using is Quform v2 for sending notification email.
Cheers,
Venom
Forum: Plugins
In reply to: [Email Template Designer - WP HTML Mail] Encoding problem on WooCommerceHi Hannes,
Even I am using the latest version 2.8.3.1, it still has the encoding issue.
I finally (hopefully) found the root cause of this encoding issue, it is related to Preview Header Text filter.
Open class-haet-mail.php and go to line 362 to replace
From
$pre_header_text = substr( strip_tags( $email['message'] ), 0, 200 );
TO
$pre_header_text = mb_substr( strip_tags( $email['message'] ), 0, 200 );
Since non-english is a multibyte character and it should be sub string using mb_substr function.
Great plugin. Thanks.
Regards,
Venom
Hi
I encountered the same issue too. I am using MAMP for deploying a local copy.MAMP4 4.5
Duplicator version: Version 1.2.40
MySQL: 5.6.38
PHP: PHP Version 7.2.1
Wordpress: 4.9.61. I have tried to set the memory_limit to 2048M in installer.php. It throws the following error message on Step 3.
In php_error.log
[27-Jun-2018 02:34:42 UTC] PHP Fatal error: Allowed memory size of 2147483648 bytes exhausted (tried to allocate 262144 bytes) in /Applications/MAMP/htdocs/installer.php on line 1306The last line on the installer-log.txt is:
wp_options~ (1048)Refer to installer.php
Line 1306 private static function isConstant($token) { return $token == T_CONSTANT_ENCAPSED_STRING || $token == T_STRING || $token == T_LNUMBER || $token == T_DNUMBER; }
2. If the memory_limit was set to -1, the activity monitoring process shows the process httpd keeps growing in memory size over 20GB and finally hanged.
PS. If I switch back to MAMP3 version 3.0.6 with PHP version 5.5.14, it could restore the backup successfully.
- This reply was modified 6 years, 5 months ago by manesvenom.
- This reply was modified 6 years, 5 months ago by manesvenom.
- This reply was modified 6 years, 5 months ago by manesvenom.