wintstar
Forum Replies Created
-
Forum: Plugins
In reply to: [DMSGuestbook] mit WP 3.9 beta werden keine neuen Einträge angezeigtöffne mysqli_real_escape_string
suche alle
mysqli_real_escape_stringund ersetze mit
esc_sqlsiehe http://wordpress.stackexchange.com/questions/144989/alternative-to-mysql-real-escape-string
Forum: Plugins
In reply to: [Q and A Focus Plus FAQ] How can I "last update" change the date formatSolved
Forum: Plugins
In reply to: [Q and A Focus Plus FAQ] How can I "last update" change the date formatI have found the solution itself
open q-and-a-focus-plus-faq/inc/functions.php
find (line 180)
return date('F j, Y g:i A', strtotime($post->post_modified));replace with
return date('d.m.Y, G:i', strtotime($post->post_modified));In order for the German date format is displayed: 01.01.2014 00:05
Forum: Plugins
In reply to: [Gravity Forms Directory] Not Compatible with WP3.6 – No Directory TabNot Work in Version 3.6.1
Forum: Plugins
In reply to: [ThemeFuse Maintenance Mode] Image repeats on IE9open style.css
find
overflow-y: scroll;add after
-ms-overflow-y: visible;Forum: Plugins
In reply to: [CKEditor for WordPress] Nextgen Gallery integrationWordPress Version 3.6 and NextGEN Gallery Version 2.0.17
open root/wp-content/plugins/ckeditor-for-wordpress/plugins/nggallery/window.php
Find
require_once('../../../nextgen-gallery/ngg-config.php');Replace with
require_once('../../../nextgen-gallery/products/photocrati_nextgen/modules/ngglegacy/ngg-config.php');