Patrick Nießen
Forum Replies Created
-
Forum: Plugins
In reply to: [Plugin: Kontakt] How to?Hey,
1. Thats the Admin-Email under the wordpress settings.
2. Thanks for the information, i will fix that ASAP
I will fix it today! Thanks for the information 🙂
Forum: Plugins
In reply to: [Category Thumbnails] Thumbnail Size ArgumentsHey,
thanks for your feedback.
1. Sizes
Sizes can currently only used as Array likearray(50, 50). The arguments will be used as width/height on the image. I will update the plugin ASAP with the WordPress-Own size informations2. storing
Image-informations will be stored in the database-table from the taxonomys. If you deactivate the plugin the data will be removed and thats not a bug.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 WordPress.org-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 http://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
Adrian