Kristyna
Forum Replies Created
-
Forum: Plugins
In reply to: [qTranslate X] Menu conflict with plugin Custom Field Templatehttps://pages.pedf.cuni.cz/pedagogika/?page_id=118&lang=en – Try search something, for example some Category..
No custom menu when showing search result. I want the same menu as on other pages.
Forum: Plugins
In reply to: [qTranslate X] Menu conflict with plugin Custom Field Template– The problem is with default and also with my theme.
– I can not use the menu when showing the search result and when having my own menu (not the automatic generated menu from the theme, usually all pages)Forum: Plugins
In reply to: [qTranslate X] Menu conflict with plugin Custom Field TemplateI tried WP standard theme Twenty Fourteen and Twenty Ten – both having the same problem.
I found out, that the problem occurs if I use some specific menu. When using the default theme menu, no problem with it.
I have only pages in the menu and I don’t use any plugin to modify the menu options. Just the standard WP menus.
Forum: Plugins
In reply to: [qTranslate X] Menu conflict with plugin Custom Field TemplateCompatibility funcions turned on.
The function custom_field_template_posts_where($where) is called when the menu is created. This function should definitely not be performed at the place of the menu. It is called by the filter add_filter( ‘posts_where’, array(&$this, ‘custom_field_template_posts_where’), 100 );
Any idea?
Forum: Plugins
In reply to: [qTranslate X] Menu conflict with plugin Custom Field TemplateNo change in editor. The plugin does not use tinymce editor, all fields are just text fields. I use WP edit, bud no change after its deactivation.
Forum: Plugins
In reply to: [qTranslate X] Menu conflict with plugin Custom Field TemplateThank you, but the problem is also in the Beta version ??
Forum: Plugins
In reply to: [WordPress Contact Forms by Cimatti] How to set email sender nameIn file accua-forms.php change line 2896:
from
$header[] = 'From: '.$form_data_replaced['emails_from'];
to
$header[] = 'From: '.$form_data_replaced['emails_from'].' <'.$form_data_replaced['emails_from'].'>';
I used this SQL, {$wpdb->prefix} is “wp_” in my case:
CREATE TABLE
{$wpdb->prefix}accua_forms_submissions
(
afs_id BIGINT(20) NOT NULL AUTO_INCREMENT,
afs_form_id VARCHAR(77) NOT NULL DEFAULT ”,
afs_post_id BIGINT(20) NOT NULL DEFAULT 0,
afs_ip VARCHAR(255) NOT NULL DEFAULT ”,
afs_uri VARCHAR(255) NOT NULL DEFAULT ”,
afs_referrer VARCHAR(255) NOT NULL DEFAULT ”,
afs_lang VARCHAR(60) NOT NULL DEFAULT ”,
afs_created TIMESTAMP NOT NULL DEFAULT 0,
afs_submitted TIMESTAMP NOT NULL DEFAULT 0,
afs_status TINYINT(1) NOT NULL DEFAULT 0,
afs_stats TEXT NOT NULL DEFAULT ”,
PRIMARY KEY (afs_id),
KEY form (afs_form_id, afs_status),
KEY uri (afs_uri),
KEY pid (afs_post_id),
KEY referrer (afs_referrer),
KEY status (afs_status, afs_id)
)