actronab
Forum Replies Created
-
This bug is still not fixed, even though a solution was provided?
Is that bugfix only included in the Pro version?
The close button of the add does not work. If I click the red “x” on the configuration page of WP User Avatar, I’m redirected to the admin dashboard, but as soon as I open the configuration page again, the add is there again.
Why do so many plug-in developers ruin their projects by introducing adds and annoying ‘uuuh, please rate our plug-in’ banners?
Forum: Plugins
In reply to: [Oceanwp sticky header] Space above Sticky Header@hendrikn: Which plug-in are you using for the header shrinking on neuland-it.de right now? For me, the ‘Oceanwp sticky header’ plug-in is not working properly.
Forum: Plugins
In reply to: [BackUpWordPress] Zero info on new ownershipIn the plug-in description they recommend another plug-in called “UpdraftPlus WordPress Backups”. On the page they are linking to, the footer says:
“Product development and marketing in co-operation with XIBO Ltd, Cardiff, UK.”
Searching for “XIBO Ltd, Cardiff, UK” leads you to xibomarketing.com, which has very little information, though.
Furthermore, the plug-in description now links to a comparison of BackUpWordPress and UpdraftPlus WordPress Backups:
https://updraftplus.com/backupwordpress/?afref=744
The rating for BackUpWordPress is very bad, it lacks all features that UpdraftPlus offers. Why would you link to such a comparison if you were maintaining BackUpWordPress?
To me, it seems like they bought the plug-in to get rid of a competitor.
After installing the latest update, the plug-in works as expected again.
Thank you very much for the great plug-in and your good support!
Unfortunately, this does not solve the problem. ??
Here is the content of my popup dialog as well:
<a title="Lorem Ipsum" class="fancybox-inline" href="#info"><img id="gamma" class="alignleft" src="https://example.com/image.jpg" alt="Foobar" /></a> // ... <div style="display: none;"> <div id="info" class="popup"> <h3>Lorem Ipsum</h3> <p>Dolor est.</p> <img id="info-px" class="aligncenter" src="https://example.com/image_big.jpg" alt="Big image" title="This is a big image." /> </div> </div>
This will open a popup, but the popup window has a caption at the bottom that I don’t want to be there and that, in the past, used not to be there.
- This reply was modified 6 years, 9 months ago by actronab.
- This reply was modified 6 years, 9 months ago by actronab.
- This reply was modified 6 years, 9 months ago by actronab.
- This reply was modified 6 years, 9 months ago by actronab.
- This reply was modified 6 years, 9 months ago by actronab.
- This reply was modified 6 years, 9 months ago by actronab.
Forum: Plugins
In reply to: [OSM - OpenStreetMap] Translate text on popup overlayAre there any plans to fix this issue?
We could also use “Route berechnen” as a shorter German translation that does potentially not cause a line break in the marker popup.
Forum: Plugins
In reply to: [Firelight Lightbox] Latest update breaks downward compatibilityNo, unfortunately my hoster is not able (or willing?) to upgrade to PHP 7+ as of now.
But this is beyond of this post’s topic. ??
Forum: Plugins
In reply to: [Firelight Lightbox] Latest update breaks downward compatibilityWhoops, just noticed that this issue has already been reported.
There are so many sticky posts…
However, good to see that I am not the only one, who is stuck with an old PHP installation.
Forum: Plugins
In reply to: [OSM - OpenStreetMap] Translate text on popup overlayIn German, I would translate it like this:
“Route zu diesem Ort berechnen”
I’ll also file this by your contact form.
Forum: Plugins
In reply to: [Contact Form Clean and Simple] Add input field for phone numberSuch a feature has been requested many times now, as I found out by simply reading the first two pages of the support forum:
https://www.ads-software.com/support/topic/adding-phone-number-field/
https://www.ads-software.com/support/topic/phone-number-13/
https://www.ads-software.com/support/topic/adding-an-extra-field-for-phone-number/
Seems like this would really help a bunch of people.
Forum: Themes and Templates
In reply to: [OceanWP] OceanWP doesn’t work with multisite@oceanwp: OP reported a problem in oceanwp/inc/customizer/settings/header.php, line 3068 (click here to see code on GitHub). There
[]
is used as the default value in a method definition:private static function get_post_types( $args = [] ) {
You can replace that line by the following code
private static function get_post_types( $args = array() ) {
and it will work with PHP versions prior to PHP 5.4 as well. ??
Forum: Themes and Templates
In reply to: [OceanWP] OceanWP doesn’t work with multisiteYou can use an array in that line for sure. Simply replace “[]” by “array()”. That’s how I fixed the problem for downward PHP compatibility.
Forum: Themes and Templates
In reply to: [OceanWP] OceanWP doesn’t work with multisiteThe line in question uses “[]” to define an empty array. This syntax is available in PHP >= 5.4 only. You can replace the code fraction by “array()” in header.php. I had the exact same problem, since I’m on an outdated PHP version as well.
Would be cool, if this could be fixed in OceanWP for better compatibility to older PHP versions. Though, I understand that technically this is not a bug and “[]” is perfectly legit in recent versions of PHP.
For reference see the official PHP documentation:
As of PHP 5.4 you can also use the short array syntax, which replaces array() with [].
Forum: Themes and Templates
In reply to: [OceanWP] Elementor animations on mobileI could not check your video, since I’m on a resticted company network right now, but mobile browsers are known to have limited support for certain features. One of the most annoying one, is missing support for fixed elements. Mobile browsers sometimes try to emulate this feature, which results in ‘jumpy’ content when scrolling.
Also, CSS animations may cause problems on older mobile browsers. So if I were you, I’d check the Android device closely to make sure, it is running a recent browser version.
For further reference, see these articles for example:
https://www.dynamicdrive.com/forums/entry.php?339
https://daneden.me/2011/12/14/putting-up-with-androids-bullshit