ka2
Forum Replies Created
-
Forum: Plugins
In reply to: [Custom DataBase Tables] PDF HyperlinkCurrently sanitization option is valid only in the column of the varchar and char. And the column of text type is invalid. Does not your “link” column probably define text type column?
Such case, please add filter of following;
function my_shortcode_custom_columns( $columns, $shortcode_name, $table ){ if ( 'your_table_name' === $table ) { foreach ( $columns as $_i => $_column ) { if ( 'link' === $_column['property'] ) { $columns[$_i]['customColumnRenderer'] = '$("<div/>").html(_.unescape(rowData.link)).text()'; } } } return $columns; } add_filter( 'cdbt_shortcode_custom_columns', 'my_shortcode_custom_columns', 10, 3 );The place where you add is a good in such “functions.php” of your theme.
Please try it.
Forum: Plugins
In reply to: [Custom DataBase Tables] PDF HyperlinkHi there,
I had checked the your page again, but it was the same error occurs yet.
I think like that is occurring error by the below script appended in the html body on your page.<script type="text/javascript"> var dropCookie = true; var cookieDuration = 28; var cookieName = 'complianceCookie'; var cookieValue = 'on'; var privacyMessage = ""; jQuery(document).ready(function($) { privacyMessage = jQuery('#hidden-cookie-message').html(); if(checkCookie(window.cookieName) != window.cookieValue){ createDiv(true); window.setTimeout(function() { $('#cookie-law').fadeOut(); }, 999999999); } }); </script>That above “checkCookie()” function is undefined.
How about trying follows?<script type="text/javascript"> var dropCookie = true; var cookieDuration = 28; var cookieName = 'complianceCookie'; var cookieValue = 'on'; var privacyMessage = ""; jQuery(document).ready(function($) { privacyMessage = jQuery('#hidden-cookie-message').html(); if (typeof checkCookie == 'function') { if(checkCookie(window.cookieName) != window.cookieValue){ createDiv(true); window.setTimeout(function() { $('#cookie-law').fadeOut(); }, 999999999); } } }); </script>It should work if there are no errors in JavaScript.
Thank you,
Forum: Plugins
In reply to: [Custom DataBase Tables] PDF HyperlinkThank you very much for your prompt reply.
When I saw your site, I had found an error that had occurred in the JavaScript.
That error is below;Uncaught ReferenceError: checkCookie is not definedVariable of “checkCookie” does not define in JavaScript on this page.
Since Custom DataBase Tables plugin does not use a variable named “checkCookie”, it seems to be a theme or other plugins error that you are using.Because I could verify to have been getting the data of table by a shortcode retrieving, I think that will display if you can eliminat an error of JavaScript.
Thank you,
Forum: Plugins
In reply to: [Custom DataBase Tables] Data is not selectedThis matter has closed because correspond already.
Forum: Plugins
In reply to: [Custom DataBase Tables] customizing of formsHi,
I added the overwrite feature of the notification message in version 2.0.9. Please try it.
Thank you,
Forum: Plugins
In reply to: [Custom DataBase Tables] PDF HyperlinkThank you for your inquiry.
Please try to disable it uncheck the “sanitization” option of that table from “modify table”. Then, please try to register data to that table.
Thank you,
Forum: Plugins
In reply to: [Custom DataBase Tables] Error With Latest VersionHi,
The version 2.0.9 which fixes a bug has been released.
Please check and update.
Forum: Plugins
In reply to: [Custom DataBase Tables] Some of the data could not removeThis problem had been caused by bug of generate the duplicate rows when register data via cdbt-entry.
In version 2.0.8 has been improved.This matter has closed because correspond already.
Forum: Plugins
In reply to: [Custom DataBase Tables] Duplicate Lines CreatedThis matter has closed because correspond already.
Forum: Plugins
In reply to: [Custom DataBase Tables] Can´t make the Filter workThis matter has closed because correspond already.
Forum: Plugins
In reply to: [Custom DataBase Tables] color of table content – preview vs frontendThis matter has closed because correspond already.
Forum: Plugins
In reply to: [Custom DataBase Tables] turn off line below tablesThis matter has closed because correspond already.
Forum: Plugins
In reply to: [Custom DataBase Tables] using .htaccessThis matter has closed because correspond already.
Forum: Plugins
In reply to: [Custom DataBase Tables] Column name appears at the end of the table alsoThank you for your inquiry.
Do you using the plugin what version?
Also, please tell me the full code of shortcode when had occured that.Thank you in advance.
Forum: Plugins
In reply to: [Custom DataBase Tables] Error With Latest VersionThank you very much for reporting.
I’m sorry. It has occurred the bug that can not get data at the time of editing at the table that a particular column format is defined.
I’m going to correspond at hotfix asap.
Thank you,