Patrick
Forum Replies Created
-
Forum: Plugins
In reply to: [Category Thumbnails] Image Thumb disappears when Click Quick EditThanks for the info. I will check that when possible
Forum: Plugins
In reply to: [Plugin: Kontakt] How to?In the administration. Under Settings will be created an submenu with the name Contact or Kontakt (Depends what your language have set).
If the submenu not showing, please check your plugins. I think a other plugin override this entry.
Forum: Plugins
In reply to: [Plugin: Kontakt] Schriftgr??eüber Stylesheet/CSS!
Forum: Reviews
In reply to: [Category Thumbnails] Niceadd add_theme_support(‘category-thumbnails’); to your themes functions.php ??
Forum: Reviews
In reply to: [Category Thumbnails] Good plugin, minor problemFixed on Version 1.0.4 – Thank you ??
Forum: Plugins
In reply to: [Category Thumbnails] Thumbnail ImageYou must add
add_theme_support('category-thumbnails');
to your functions.php in the Theme.
Forum: Plugins
In reply to: [Category Thumbnails] Does not work in version 3.8i check that tomorrow, thanks.
Forum: Hacks
In reply to: WP_Query – Meta with ArraysI have create an little workaround. Its not great, but it works.
On the Frontend i can check the data in the Loop. If the ID not in the Array, the post will ignored.
The Backend was a little tricky. Here i have disabled the Menu-Entry with show_in_menu = false. Here i create an own Post-Overview to check that.
I think this is not the best way but it solve the problem.
Forum: Hacks
In reply to: Lightbox URL's not workingWhut?
You must add a specific class for the lightbox like:<a class="lightbox"...
Forum: Hacks
In reply to: Redirect (or rewrite) to main page without 404 errori use a little trick to load a Template file for non-existent pages.
It’s very simple. Hook the init-action and check the Request:
class Theme { function __construct() { add_action('init', array($this, 'load')); } public function load() { $template = null; switch(!empty($_SERVER['REQUEST_URI']) ? basename($_SERVER['REQUEST_URI']) : null) { case 'logout': $template = 'logout.php'; break; case 'weather': $template = 'user/weather.php'; break; case 'area': $template = 'user/area.php'; break; case 'overview': $template = 'user/overview.php'; break; case 'contact': $template = 'user/contact.php'; break; case 'forms': $template = 'user/forms.php'; break; case 'general': $template = 'user/general.php'; break; case 'news': $template = 'user/news.php'; break; case 'settings': $template = 'settings.php'; break; } if(!empty($template) && file_exists(sprintf('%s/templates/%s', $this->path, $template))) { status_header(200); load_template(sprintf('%s/templates/%s', $this->path, $template)); exit(); } } }
Forum: Reviews
In reply to: [Plugin: Kontakt] Unvollst?ndigHallo MikeArt,
vielen Dank für dein Feedback.
Das Plugin wurde leider nicht für den “Eigengebrauch” programmiert, sonst w?re alles up-to-date ??
Aber keine Sorge, ich sitze derzeit an Version 1.4 was in den kommenden 1-2 Wochen hoffentlich erscheinen wird.
Man kann nirgends eine E-Mail Adresse angeben an wenn die Nachricht soll.
Richtig, da hier der Fokus darauf gelegt wurde, WordPress-Eigene Funktionen zu verwenden. Es wird halt die WP-Admin-Mail genutzt.
Sehr kleine (oder keine) Anpassungsf?higkeit.
Alles relevante kann angepasst werden. Man wird aber nicht drum herum kommen, das Formular über CSS/Stylesheet zu formatieren, um dies an das eigene Layout anzupassen. Komisch aber dass fast jeder Nutzer dies hinbekommt, nur du anscheinend nicht. Ich denke dir fehlen Grundlagen in der Webtechnik. Dieses Problem wirst du aber definitiv mit allzu jedem Plugin haben.
Leider finde ich es sehr schade, dass kaum jemand diverse Informationen beachtet (README, FAQ-Seite direkt auf der www.ads-software.com-Seite oder direkt bei der Plugin-Installation). Denn so manche “Fragen” wurden schon allemale zu h?ufig gestellt.
Ich m?chte mich auch dafür entschuldigen, dass es durchaus einige kleine Probleme beim speichern gibt was du ja bereits angesprochen hattest. Dies wird sich mit der neuen Version aber Grundlegend ?ndern.
Weitere Informationen findet man auch unter https://hovida-design.de/wordpress-plugin-kontakt/
Forum: Plugins
In reply to: [Plugin: Kontakt] Keine ChanceIch sitze derzeit an Version 1.4. Ich hoffe das ich dies in den n?chsten 1-2 Wochen bereitstelle.
Leider dauert das ganze noch so lange, da ich momentan sehr viele Projekte offen habe. Ich bin mir aber sicher, dass dir die neue Version gefallen wird.
Mfg
AdrianForum: Plugins
In reply to: [Plugin: Kontakt] Mehrere Formulare für eine Seite erstellenHallo Elizabetha,
dies ist in dieser Version leider nicht m?glich.
Ich bin derzeit aber sehr intensiv an der neusten Version – 1.4.0 – zu arbeiten. Diese wird mehr als genug Formulare für dich bereitstellen ??Forum: Hacks
In reply to: wp-cron.php – wp_mail not workingSAME Problem is on wp-login.php?action=lostpassword
Forum: Plugins
In reply to: [Yoast SEO] Invalid date in sitemapsAfter the Update of 1.4.11 the WMT give me a 404 Error for the sitemaps.