“Fatal error: Uncaught ReflectionException: Method get_site_editor_type does not exist in /var/www/wp-content/plugins/elementor-pro/modules/theme-builder/documents/theme-document.php:47 Stack trace: #0 /var/www/wp-content/plugins/elementor-pro/modules/theme-builder/documents/theme-document.php(47): ReflectionClass->getMethod(‘get_site_editor…’) #1 /var/www/wp-content/plugins/elementor-pro/modules/theme-builder/documents/theme-document.php(128): ElementorPro\Modules\ThemeBuilder\Documents\Theme_Document::get_site_editor_type_bc() #2 /var/www/wp-content/plugins/elementor/core/common/modules/finder/categories/create.php(94): ElementorPro\Modules\ThemeBuilder\Documents\Theme_Document::get_create_url() #3 /var/www/wp-content/plugins/elementor/core/common/modules/finder/categories/create.php(67): Elementor\Core\Common\Modules\Finder\Categories\Create->create_item_url_by_document_class(‘ElementorPro\\Mo…’) #4 /var/www/wp-content/plugins/elementor/core/common/modules/finder/base-category.php(92): Elementor\Core\Common\Modules\ in /var/www/wp-content/plugins/elementor-pro/modules/theme-builder/documents/theme-document.php on line 47”
]]>i can’t login admin panel every time i try to login i receieve an error plugable.php error
https://www.composports.com/wp-admin/ Login link
and also google search result show some Japanese language on my site and also show error this site may be hacked
Please help
]]>', 'sliced-invoices-pdf-email' ),
to
', 'sliced-invoices' ),
I don’t know if ist okay while not using the pdf-addon, but it works fine for me. Hope this helps anyone to do a full translation for sliced-invoices.
Thx
]]>'name' => __( 'Footer<br><small>' . sprintf( __( 'Displayed on %1s & %2s', 'sliced-invoices' ), '<span class="i18n-multilingual-display">'.$quote_label_plural.'</span>', '<span class="i18n-multilingual-display">'.$invoice_label_plural.'</span>' ) . '</small>', 'sliced-invoices' ),
'desc' => __( 'The footer will be displayed at the bottom of each ' . sprintf( __( '%1s & %2s', 'sliced-invoices' ), '<span class="i18n-multilingual-display">'.$quote_label.'</span>', '<span class="i18n-multilingual-display">'.$invoice_label.'</span>' ) . '. Basic HTML is allowed.', 'sliced-invoices' ),
to
'name' => __( 'Footer<br><small>' , 'sliced-invoices' ) . sprintf( __( 'Displayed on %1s & %2s', 'sliced-invoices' ), '<span class="i18n-multilingual-display">'.$quote_label_plural.'</span>', '<span class="i18n-multilingual-display">'.$invoice_label_plural.'</span>' ) . '</small>',
'desc' => __( 'The footer will be displayed at the bottom of each ' , 'sliced-invoices' ) . sprintf( __( '%1s & %2s', 'sliced-invoices' ), '<span class="i18n-multilingual-display">'.$quote_label.'</span>', '<span class="i18n-multilingual-display">'.$invoice_label.'</span>' ),
I don’t know if the code is a nice one that fits well into sliced-invoices but it works fine for me. Hope this helps anyone to do a full translation for sliced-invoices.
ThX
]]>https://www.ads-software.com/plugins/visual-form-builder/
]]>Iam tryring to get Values from a Form which i have included in the FronEnd (RadioButton Value and Text Input Value) to display in the WordPress
BackEnd or AdminPanel, so I need to have a Admin Menu to get the Values, a specific user (E-Mail Adress) entered in the Form and display this Values in the Backend.
I am using a Newsletter Plugin its called MyMail for WordPress. I want to know why Users unsubscribe to my Newsletter by letting them check Radio Buttons with Reasons or write a Text in a Textarea input.
I modified the unsubscribe form and added some radio buttons and a textarea heres the code:
………..
$html = ”;
$html .= $this->get_styles();
$action = ‘mymail_form_unsubscribe’;
$html .= ‘<form action=”‘.$this->get_form_action($action).'” method=”post” class=”mymail-form mymail-form-submit mymail-ajax-form” id=”mymail-form-unsubscribe”>’.”\n”;
$html .= ‘<div class=”mymail-form-info ‘.$infoclass.'”>’;
$html .= $this->get_message();
$html .= $this->message;
$html .= ‘</div>’;
$html .= ‘<input name=”hash” type=”hidden” value=”‘.$this->hash.'”>’;
$html .= ‘<input name=”campaign” type=”hidden” value=”‘.$this->campaignID.'”>’;
if(!$this->hash){
$html .= ‘<div class=”mymail-wrapper mymail-email-wrapper”><div class=”mymail-form-fields”>
<div class=”mymail-form-info-checkbox”>
<fieldset id=”gruende”>
</fieldset>
</div><div id=”emailproof”><label for=”mymail-email”>’.mymail_text(’email’, __(‘Email’, ‘mymail’)).’ <span class=”mymail-required”>*</span></label>’;
$html .= ‘<input id=”mymail-email” class=”input mymail-email mymail-required” name=”email” type=”email” value=””>’;
}
if($subscriber && $single_opt_out){
}else{
$buttontext = mymail_text(‘unsubscribebutton’, __(‘Unsubscribe’, ‘mymail’));
$html .= ‘<div class=”mymail-wrapper mymail-submit-wrapper form-submit”><input name=”submit” type=”submit” value=”‘.$buttontext.'” class=”submit-button button”></div>’;
$html .= ‘</div></div>’;
}
$html .= ‘</form>’;
return apply_filters(‘mymail_unsubscribe_form’, $html, $this->campaignID);
}
…………..
Hope somebody can help me with this.
Best Regards.
AleyKey
]]>Iam tryring to get Values from a Form which i have included in the FronEnd (RadioButton Value and Text Input Value) to display in the WordPress
BackEnd or AdminPanel, so I need to have a Admin Menu to get the Values, a specific user (E-Mail Adress) entered in the Form and display this Values in the Backend.
I am using a Newsletter Plugin its called MyMail for WordPress. I want to know why Users unsubscribe to my Newsletter by letting them check Radio Buttons with Reasons or write a Text in a Textarea input.
I modified the unsubscribe form and added some radio buttons and a textarea heres the code:
………..
$html = ”;
$html .= $this->get_styles();
$action = ‘mymail_form_unsubscribe’;
$html .= ‘<form action=”‘.$this->get_form_action($action).'” method=”post” class=”mymail-form mymail-form-submit mymail-ajax-form” id=”mymail-form-unsubscribe”>’.”\n”;
$html .= ‘<div class=”mymail-form-info ‘.$infoclass.'”>’;
$html .= $this->get_message();
$html .= $this->message;
$html .= ‘</div>’;
$html .= ‘<input name=”hash” type=”hidden” value=”‘.$this->hash.'”>’;
$html .= ‘<input name=”campaign” type=”hidden” value=”‘.$this->campaignID.'”>’;
if(!$this->hash){
$html .= ‘<div class=”mymail-wrapper mymail-email-wrapper”><div class=”mymail-form-fields”>
<div class=”mymail-form-info-checkbox”>
<fieldset id=”gruende”>
</fieldset>
</div><div id=”emailproof”><label for=”mymail-email”>’.mymail_text(’email’, __(‘Email’, ‘mymail’)).’ <span class=”mymail-required”>*</span></label>’;
$html .= ‘<input id=”mymail-email” class=”input mymail-email mymail-required” name=”email” type=”email” value=””>’;
}
if($subscriber && $single_opt_out){
}else{
$buttontext = mymail_text(‘unsubscribebutton’, __(‘Unsubscribe’, ‘mymail’));
$html .= ‘<div class=”mymail-wrapper mymail-submit-wrapper form-submit”><input name=”submit” type=”submit” value=”‘.$buttontext.'” class=”submit-button button”></div>’;
$html .= ‘</div></div>’;
}
$html .= ‘</form>’;
return apply_filters(‘mymail_unsubscribe_form’, $html, $this->campaignID);
}
…………..
Hope somebody can help me with this.
Best Regards.
AleyKey
]]>Iam tryring to get Values from a Form which i have included in the FronEnd (RadioButton Value and Text Input Value) to display in the WordPress
BackEnd or AdminPanel, so I need to have a Admin Menu to get the Values, a specific user (E-Mail Adress) entered in the Form and display this Values in the Backend.
I am using a Newsletter Plugin its called MyMail for WordPress. I want to know why Users unsubscribe to my Newsletter by letting them check Radio Buttons with Reasons or write a Text in a Textarea input.
I modified the unsubscribe form and added some radio buttons and a textarea heres the code:
………..
$html = ”;
$html .= $this->get_styles();
$action = ‘mymail_form_unsubscribe’;
$html .= ‘<form action=”‘.$this->get_form_action($action).'” method=”post” class=”mymail-form mymail-form-submit mymail-ajax-form” id=”mymail-form-unsubscribe”>’.”\n”;
$html .= ‘<div class=”mymail-form-info ‘.$infoclass.'”>’;
$html .= $this->get_message();
$html .= $this->message;
$html .= ‘</div>’;
$html .= ‘<input name=”hash” type=”hidden” value=”‘.$this->hash.'”>’;
$html .= ‘<input name=”campaign” type=”hidden” value=”‘.$this->campaignID.'”>’;
if(!$this->hash){
$html .= ‘<div class=”mymail-wrapper mymail-email-wrapper”><div class=”mymail-form-fields”>
<div class=”mymail-form-info-checkbox”>
<fieldset id=”gruende”>
</fieldset>
</div><div id=”emailproof”><label for=”mymail-email”>’.mymail_text(’email’, __(‘Email’, ‘mymail’)).’ <span class=”mymail-required”>*</span></label>’;
$html .= ‘<input id=”mymail-email” class=”input mymail-email mymail-required” name=”email” type=”email” value=””>’;
}
if($subscriber && $single_opt_out){
}else{
$buttontext = mymail_text(‘unsubscribebutton’, __(‘Unsubscribe’, ‘mymail’));
$html .= ‘<div class=”mymail-wrapper mymail-submit-wrapper form-submit”><input name=”submit” type=”submit” value=”‘.$buttontext.'” class=”submit-button button”></div>’;
$html .= ‘</div></div>’;
}
$html .= ‘</form>’;
return apply_filters(‘mymail_unsubscribe_form’, $html, $this->campaignID);
}
…………..
Hope somebody can help me with this.
Best Regards.
AleyKey
]]>Iam tryring to get Values from a Form which i have included in the FronEnd (RadioButton Value and Text Input Value) to display in the WordPress
BackEnd or AdminPanel, so I need to have a Admin Menu to get the Values, a specific user (E-Mail Adress) entered in the Form and display this Values in the Backend.
I am using a Newsletter Plugin its called MyMail for WordPress. I want to know why Users unsubscribe to my Newsletter by letting them check Radio Buttons with Reasons or write a Text in a Textarea input.
I modified the unsubscribe form and added some radio buttons and a textarea heres the code:
………..
$html = ”;
$html .= $this->get_styles();
$action = ‘mymail_form_unsubscribe’;
$html .= ‘<form action=”‘.$this->get_form_action($action).'” method=”post” class=”mymail-form mymail-form-submit mymail-ajax-form” id=”mymail-form-unsubscribe”>’.”\n”;
$html .= ‘<div class=”mymail-form-info ‘.$infoclass.'”>’;
$html .= $this->get_message();
$html .= $this->message;
$html .= ‘</div>’;
$html .= ‘<input name=”hash” type=”hidden” value=”‘.$this->hash.'”>’;
$html .= ‘<input name=”campaign” type=”hidden” value=”‘.$this->campaignID.'”>’;
if(!$this->hash){
$html .= ‘<div class=”mymail-wrapper mymail-email-wrapper”><div class=”mymail-form-fields”>
<div class=”mymail-form-info-checkbox”>
<fieldset id=”gruende”>
</fieldset>
</div><div id=”emailproof”><label for=”mymail-email”>’.mymail_text(’email’, __(‘Email’, ‘mymail’)).’ <span class=”mymail-required”>*</span></label>’;
$html .= ‘<input id=”mymail-email” class=”input mymail-email mymail-required” name=”email” type=”email” value=””>’;
}
if($subscriber && $single_opt_out){
}else{
$buttontext = mymail_text(‘unsubscribebutton’, __(‘Unsubscribe’, ‘mymail’));
$html .= ‘<div class=”mymail-wrapper mymail-submit-wrapper form-submit”><input name=”submit” type=”submit” value=”‘.$buttontext.'” class=”submit-button button”></div>’;
$html .= ‘</div></div>’;
}
$html .= ‘</form>’;
return apply_filters(‘mymail_unsubscribe_form’, $html, $this->campaignID);
}
…………..
Hope somebody can help me with this.
Best Regards.
AleyKey
]]>