Forum Replies Created

Viewing 15 replies - 16 through 30 (of 41 total)
  • Plugin Author Patrick

    (@hovida)

    Thanks for the info. I will check that when possible

    Forum: Plugins
    In reply to: [Plugin: Kontakt] How to?
    Plugin Author Patrick

    (@hovida)

    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.

    Plugin Author Patrick

    (@hovida)

    über Stylesheet/CSS!

    Forum: Reviews
    In reply to: [Category Thumbnails] Nice
    Plugin Author Patrick

    (@hovida)

    add add_theme_support(‘category-thumbnails’); to your themes functions.php ??

    Plugin Author Patrick

    (@hovida)

    Fixed on Version 1.0.4 – Thank you ??

    Plugin Author Patrick

    (@hovida)

    You must add

    add_theme_support('category-thumbnails');

    to your functions.php in the Theme.

    Plugin Author Patrick

    (@hovida)

    i check that tomorrow, thanks.

    Forum: Hacks
    In reply to: WP_Query – Meta with Arrays
    Thread Starter Patrick

    (@hovida)

    I 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 working

    Whut?
    You must add a specific class for the lightbox like:

    <a class="lightbox"...

    i 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();
    			}
    		}
    }

    Plugin Author Patrick

    (@hovida)

    Hallo 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/

    Plugin Author Patrick

    (@hovida)

    Ich 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

    Plugin Author Patrick

    (@hovida)

    Hallo 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 ??

    Thread Starter Patrick

    (@hovida)

    SAME Problem is on wp-login.php?action=lostpassword

    After the Update of 1.4.11 the WMT give me a 404 Error for the sitemaps.

Viewing 15 replies - 16 through 30 (of 41 total)