Dr. Ronny Harbich
Forum Replies Created
-
Forum: Plugins
In reply to: [Prosodia VGW OS] Kein Import hat funktioniertHallo, Stephan,
das tut uns natürlich Leid. Gern m?chte ich das Problem mit Ihrer Hilfe l?sen!
Nutzen Sie bereits die neueste Version 3.1.0 des Plugins?
Wurde nach dem Import-Versuch grüne Nachrichten im Adminbereich angezeigt oder gab es nur eine leere Seite?
Welche WordPress- und welche PHP-Version nutzen Sie?
Es l?sst sich aus der Ferne immer recht schwer feststellen, was genau für Fehler auftreten (insbesondere, wenn keine Fehlermeldung ausgegeben wird). Wenn Sie
define('WP_DEBUG', true);
in die wp-config.php tempor?r eintragen, wird vielleicht ein Fehler angezeigt. Ansonsten würde ich mich auf Ihrem Blog gern selbst umschauen wollen. Wenn Sie mir diesbezüglich vertrauen wollen und einen Zugang geben m?chten, melden Sie sich bitte unter developer<AT-ZEICHEN-EINFüGEN>prosodia.deIch hoffe, wir k?nnen das Problem aus der Welt schaffen!
Sch?ne Grü?e
RonnyForum: Plugins
In reply to: [Enable Media Replace] Update version number (3.0 => 3.01)Thanks for the tip. Now the replace link is visible again ??
Forum: Plugins
In reply to: [Slideshow] Bug: Title Element Tag not StoredHi,
it would be very nice if he could patch it ?? I will mark this topic as solved if the patch is applied to the next plugin version.
Yesterday, I have send a new, fixed and 100% complete German translation file (e-mail) to Stefan Boonstra. Hope he will integrate it in the next plugin version.
Thanks for your help and support!
Best regards
RonnyForum: Plugins
In reply to: [Slideshow] Bug: Title Element Tag not StoredNew file views/SlideshowPluginSlideshowSlide/backend_text.php is now:
<?php $title = $description = $textColor = $color = $url = $target = ''; $titleElementTagID = $descriptionElementTagID = 0; $noFollow = false; if (isset($properties['title'])) { $title = SlideshowPluginSecurity::htmlspecialchars_allow_exceptions($properties['title']); } if (isset($properties['titleElementTagID'])) { $titleElementTagID = $properties['titleElementTagID']; } if (isset($properties['description'])) { $description = SlideshowPluginSecurity::htmlspecialchars_allow_exceptions($properties['description']); } if (isset($properties['descriptionElementTagID'])) { $descriptionElementTagID = $properties['descriptionElementTagID']; } if (isset($properties['textColor'])) { $textColor = $properties['textColor']; } if (isset($properties['color'])) { $color = $properties['color']; } if (isset($properties['url'])) { $url = $properties['url']; } if (isset($properties['urlTarget'])) { $target = $properties['urlTarget']; } if (isset($properties['noFollow'])) { $noFollow = true; } ?> <div class="widefat sortable-slides-list-item postbox"> <div class="handlediv" title="<?php _e('Click to toggle'); ?>"><br></div> <div class="hndle"> <div class="slide-icon text-slide-icon"></div> <div class="slide-title"> <?php if (strlen($title) > 0) : ?> <?php echo $title; ?> <?php else : ?> <?php _e('Text slide', 'slideshow-plugin'); ?> <?php endif; ?> </div> <div class="clear"></div> </div> <div class="inside"> <div class="slideshow-group"> <div class="slideshow-left slideshow-label"><?php _e('Title', 'slideshow-plugin'); ?></div> <div class="slideshow-right"> <select name="<?php echo $name; ?>[titleElementTagID]"> <?php foreach (SlideshowPluginSlideInserter::getElementTags() as $elementTagID => $elementTag): ?> <option value="<?php echo $elementTagID; ?>" <?php selected($titleElementTagID, $elementTagID); ?>><?php echo $elementTag; ?></option> <?php endforeach; ?> </select> </div> <div class="clear"></div> <input type="text" name="<?php echo $name; ?>[title]" value="<?php echo $title; ?>" style="width: 100%;" /><br /> </div> <div class="slideshow-group"> <div class="slideshow-left slideshow-label"><?php _e('Description', 'slideshow-plugin'); ?></div> <div class="slideshow-right"> <select name="<?php echo $name; ?>[descriptionElementTagID]"> <?php foreach (SlideshowPluginSlideInserter::getElementTags() as $elementTagID => $elementTag): ?> <option value="<?php echo $elementTagID; ?>" <?php selected($descriptionElementTagID, $elementTagID); ?>><?php echo $elementTag; ?></option> <?php endforeach; ?> </select> </div> <div clear="clear"></div> <textarea name="<?php echo $name; ?>[description]" rows="7" cols="" style="width: 100%;"><?php echo $description; ?></textarea><br /> </div> <div class="slideshow-group"> <div class="slideshow-label"><?php _e('Text color', 'slideshow-plugin'); ?></div> <input type="text" name="<?php echo $name; ?>[textColor]" value="<?php echo $textColor; ?>" class="wp-color-picker-field" /> <div class="slideshow-label"><?php _e('Background color', 'slideshow-plugin'); ?></div> <input type="text" name="<?php echo $name; ?>[color]" value="<?php echo $color; ?>" class="wp-color-picker-field" /> <div style="font-style: italic;"><?php _e('(Leave empty for a transparent background)', 'slideshow-plugin'); ?></div> </div> <div class="slideshow-group"> <div class="slideshow-label"><?php _e('URL', 'slideshow-plugin'); ?></div> <input type="text" name="<?php echo $name; ?>[url]" value="<?php echo $url; ?>" style="width: 100%;" /> <div class="slideshow-label slideshow-left"><?php _e('Open URL in', 'slideshow-plugin'); ?></div> <select name="<?php echo $name; ?>[urlTarget]" class="slideshow-right"> <option value="_self" <?php selected('_self', $target); ?>><?php _e('Same window', 'slideshow-plugin'); ?></option> <option value="_blank" <?php selected('_blank', $target); ?>><?php _e('New window', 'slideshow-plugin'); ?></option> </select> <div class="clear"></div> <div class="slideshow-label slideshow-left"><?php _e('Don\'t let search engines follow link', 'slideshow-plugin'); ?></div> <input type="checkbox" name="<?php echo $name; ?>[noFollow]" value="" <?php checked($noFollow); ?> class="slideshow-right" /> <div class="clear"></div> </div> <div class="slideshow-group slideshow-delete-slide"> <span><?php _e('Delete slide', 'slideshow-plugin'); ?></span> </div> <input type="hidden" name="<?php echo $name; ?>[type]" value="text" /> </div> </div>
Forum: Plugins
In reply to: [Slideshow] Bug: Title Element Tag not StoredHi,
I have created a patch that fixes the bug:
Index: views/SlideshowPluginSlideshowSlide/backend_text.php <+>UTF-8 =================================================================== --- views/SlideshowPluginSlideshowSlide/backend_text.php (date 1410432217000) +++ views/SlideshowPluginSlideshowSlide/backend_text.php (date 1410432561000) @@ -2,7 +2,7 @@ $title = $description = $textColor = $color = $url = $target = ''; -$titleElementTagID = $descriptionElementTagID = SlideshowPluginSlideInserter::getElementTag(); +$titleElementTagID = $descriptionElementTagID = 0; $noFollow = false; @@ -13,7 +13,7 @@ if (isset($properties['titleElementTagID'])) { - $titleElementTag = $properties['titleElementTagID']; + $titleElementTagID = $properties['titleElementTagID']; } if (isset($properties['description'])) @@ -23,7 +23,7 @@ if (isset($properties['descriptionElementTagID'])) { - $descriptionElementTag = $properties['descriptionElementTagID']; + $descriptionElementTagID = $properties['descriptionElementTagID']; } if (isset($properties['textColor'])) \ No newline at end of file
Greetings
RonnyForum: Plugins
In reply to: [Slideshow] Bug: Title Element Tag not StoredHi,
the page is refreshed after updating the post. It’s surely a bug. I think the backend options for title element tags are not loaded (same for description). Should be easy to fix.
Greets
RonnyForum: Plugins
In reply to: [Slideshow] Improvement: Width Ratio for 2 Slides Shown at OnceHi,
there is no appropriate options to achieve this. I want to have 2 slides aligned like this
|---------|----------------| | | | | Slide 1 | Slide 2 | | | | |---------|----------------|
The ratio is 1:3.
There are options scaling hight and so on, but that’s not what I want to have.
Regards
RonnyForum: Plugins
In reply to: [Comprehensive Google Map Plugin] Plugin breaks visual editor in WP 4+1 Same issue here.
Forum: Reviews
In reply to: [Falconiform YouTube Widget] works as advertisedForum: Plugins
In reply to: [Falconiform YouTube Widget] Remove pluginOkay, no problem ??
Forum: Plugins
In reply to: [Falconiform YouTube Widget] Remove pluginHi,
I think you simply need to deactivate or remove the plugin from the plugin administration page in the backend like you do it with other plugins normally. I have tested this method successfully.
Greetings
RonnyForum: Plugins
In reply to: [Falconiform YouTube Widget] title & video alighnmentHi, JK,
thanks for your report! Could you please give me the link to your website where you use the widget? On my website https://folknews.de/ it works properly as far as I can see. Furthermore I did no styling except:
.ff-youtube-widget-player-iframe { max-width: 100%; border: none; }
I Hope we can solve the issue ??
Forum: Plugins
In reply to: [Contact Form 7] TextBox default value "0" not shownThank You ?? I will mark this post as resolved as soon as fixed.
Thank You for the “number and range” tip ??
Forum: Plugins
In reply to: [Contact Form 7] [response] causes invalid HTMLI have found the bug maybe: In includes/formatting.php:45 we have
/* wpcf7: take care of [response] tag */ $pee = preg_replace( '!<p>\s*(\[response[^]]*\])\s*</p>!', "$1", $pee );
should be changed to
/* wpcf7: take care of [response] tag */ $pee = preg_replace( '!(?:<p>)?\s*(\[response[^]]*\])\s*</p>!', "$1", $pee );
because in my case the original regex does not match (there is no leading <p>)! Can you fix this in the next release please?
Hello, Reedyseth, thx for your quick response.
__( "Don't subscribe", 'subscribe-reloaded' )
goes to “Nicht benachrichtigen”
__( "All", 'subscribe-reloaded' )
goes to “Immer benachrichtigen”
__( "Replies to my comments", 'subscribe-reloaded' )
goes to “Nur für meine Antworten”But it would be really nice if you can implement option for this items. I can implement them too if you want …