BenMann
Forum Replies Created
-
Forum: Fixing WordPress
In reply to: is_home || is_category is not Working!? If ElseHi @silvermonkey,
I might be wrong but depending on your $wp_query this might actually default to the else case. Are you using a standard loop?
Forum: Requests and Feedback
In reply to: Translation errorsHi John,
you can start looking around here: https://make.wordpress.org/polyglots/or more specifically suggest translations regarding the core here: https://translate.wordpress.org/
Forum: Plugins
In reply to: [qTranslate X] Language switcher only for available contentHey @talktohaas,
The bit of code below gets the english version of your content no matter what the current language in your session is set to. That way you could put the contet into a variable and if it’s empty you know there is no translation available in that language.
$id=835; $post = get_page($id); $content = qtranxf_use('en', $post->post_content,false); echo $content;Forum: Plugins
In reply to: [Contact Form 7] Contactform not sendingHi @goody66,
some things you might try:• Check if mails are sent properly (not using contact form)
• Update WP / contactform 7 (if not latest)
• Share your config of CF7 so we can have a more dtetailed look and/or how you implemented it (in template / shortcode / …)Would also be interesting to know what you changed in the past days. WP updates, PHP version updates, etc.