datverse
Forum Replies Created
-
Forum: Plugins
In reply to: [M Chart] Use “Custom Taxonomy” for Chart “Custom Post Type”Hi,
Thank for your reply. : )
ThanksForum: Plugins
In reply to: [M Chart] Change default Slug “chart”Hi,
Thank for your reply. I should use “register_post_type_args” “filter” and it work ๐add_filter( 'register_post_type_args', 'm_chart_post_type_args', 10, 2 ); function m_chart_post_type_args( $args, $post_type ) { if ( 'm-chart' === $post_type ) { $args['rewrite']['slug'] = 'foo-chart'; } return $args; }Thanks
Forum: Plugins
In reply to: [M Chart] Iโd like to buy you a beer, a coffee, a pizza :)Love ๐งก
ThanksForum: Plugins
In reply to: [M Chart] PHP 8.0.13 Warning: Undefined variable $disabledHi,
Thank for your reply. This Warning display in the Chart admin editor (when create/edit a Chart). It display after “Force vertical axis minimum:” text box.Thanks ๐
Forum: Plugins
In reply to: [M Chart] Hide Chart TitleHi,
Thank for your reply. With your help I did it successfully.The code snippet is:
function filter_m_chart_chart_args( $chart_args, $post, $post_meta, $args ) { $chart_args['options']['plugins']['title'] = [ 'display' => false ]; return $chart_args; } add_filter( 'm_chart_chart_args', 'filter_m_chart_chart_args', 10, 4 );The config from the chartjs(.org)
https://www.chartjs.org/docs/latest/configuration/title.htmlconst chart = new Chart(ctx, { type: 'line', data: data, options: { plugins: { title: { display: true, text: 'Custom Chart Title', padding: { top: 10, bottom: 30 } } } } });Thanks
Forum: Plugins
In reply to: [WooCommerce] How to remove “WooCommerce Knowledge Base”Hi, thank for your help. But with your code we will miss the marketing feature (coupons).
ThanksForum: Plugins
In reply to: [WooCommerce] How to remove “WooCommerce Knowledge Base”Hi, thank for your reply. But it just hide the html dom. Do you have any solution remove/stop service? Because it call to another api and link to out admin.
ThanksHi, maybe issue is with Elementor Plugin? I use Elementor.
ThanksForum: Plugins
In reply to: [Advanced Editor Tools] Import Setting for many websites with cli / databaseHi,
Thanks for your answer. I used your sql suggestion and solved the problem. Now I can update all websites config at one.
ThanksHi, the trick I use to hotfix this issue is:
I go to source code of Elementor Pro: elementor-pro/modules/dynamic-tags/pods/tags/pods-text.php
=> Edit (on line 20): $field = $field_data[โfieldโ]; to $field = $field_data[โfieldโ] ?? ”;
Thanks
Hi, the bug still have.
I use:
โ PHP 8.0.9
โ Elementor 3.4.3
โ Elementor Pro 3.4.0
โ Pods โ Custom Content Types and Fields 2.7.30I use Pods create Custom Post Type
Use your plugin (latest version) create Loop Tempalate for the new Custom Post Type.
Use Elementor create Post Widget with new Skin by Loop Template==> I got the Warning:
PHP Warning: Trying to access array offset on value of type bool in /home/my-domain.com/public_html/wp-content/plugins/elementor-pro/modules/dynamic-tags/pods/tags/pods-text.php on line 20If I go to source code of Elementor Pro: elementor-pro/modules/dynamic-tags/pods/tags/pods-text.php => Edit (on line 20): $field = $field_data[‘field’]; to $field = $field_data[‘field’] ?? 0;
==> The issue is gone.Please check. Thanks
Hi,
Thank you for your help. ๐
I think this sample should be have in description of Plugin too. It is very helpful.
Thank ๐Forum: Plugins
In reply to: [WooCommerce] Add more column to WooCommerce/CustomersHi there ๐
Thank you for your answer, I trying with it now.
ThanksForum: Plugins
In reply to: [Site Reviews] Ajax update “Rating Summary” after “Submit a Review”Hi,
Thank you for your help. I will try it. ๐
ThanksForum: Plugins
In reply to: [Site Reviews] Ajax update “Rating Summary” after “Submit a Review”Hi,
Thank you for your reply.
Can you add this as a new feature in future?
Thank.