jeanlarrota32
Forum Replies Created
-
Forum: Reviews
In reply to: [WP Support Ticket] problems foundAnother error encountered while trying to update settings
Undefined index: ticket_sc_page
plugins\wp-support-ticket\includes\class-settings.php
Forum: Reviews
In reply to: [WP Support Ticket] problems foundI have noticed that deleting a ticket does not remove the related information. In the tables:
– wp_support_reply_noti
– wp_support_reply
– wp_support_attachmentNor is it deleting the files stored in Upload
Forum: Reviews
In reply to: [Adminimize] The plugin is good but with minor problemsI was able to import my settings by modifying the plugin
the files:
plugins\adminimize\inc-options\admin_bar_frontend.php
and
plugins\adminimize\inc-options\admin_bar.php
I modified them
where if ( ! $value->title ) { becomes the following
$has_title = ! empty( $value->title ); if ( $has_title ) { $has_title = '<b><i>' . esc_attr__( 'No Title!', 'adminimize' ) . '</i></b>'; }
where I replace this ($value->title) with ($has_title)
this was a temporary solution to get out of trouble,
Forum: Reviews
In reply to: [Adminimize] The plugin is good but with minor problemsproblems when recovering a backup, where I am going to import the file with its configurations and it throws me an error
plugins\adminimize\inc-options\admin_bar_frontend.php
"Attempt to read property "title" on array"
if ( ! $value->title ) {
I have found the following bug
plugins\custom-field-suite\includes\form.php
line: 390bug:
<div class="field field-<?php echo $field->name; ?>" data-type="<?php echo $field->type; ?>" data-name="<?php echo $field->name; ?>"">
fix:
<div class="field field-<?php echo $field->name; ?>" data-type="<?php echo $field->type; ?>" data-name="<?php echo $field->name; ?>">
okay thanks, el plugin es muy bueno solo que en mi local falla