Goran Peric
Forum Replies Created
-
Hi @karinapremio,
first of all, you should know that this error occurs only if you use PHP version 8.0 or higher. Before that, the error is not issued.
You can find it, as already written, in the file “folders-pro/includes/dynamic-folders.php” in line “208”.
I took a closer look at the source code of the plugin and my recommendation would be to simply make the $cat variable mandatory. Attached is an example:
Original
public function get_category_list($cat=0, $post_type)
My suggestion
public function get_category_list($cat, $post_type)
This should work, since the function is never called with no passing variables.
Many greetings.
- This reply was modified 2 years, 3 months ago by Goran Peric.
Forum: Plugins
In reply to: [Max Mega Menu] Mobile Menu not working with BootstrapGood evening,
the problem has been fixed in the meantime, so unfortunately I can’t provide a link anymore, where you could have a look at the error again.
Nevertheless, thank you for your answer and time.
The topic can be closed.
Forum: Plugins
In reply to: [Contact Form 7] Incorrect error output with two forms on one pageHi. Actually, in my opinion, it doesn’t matter which other plugins are installed, because as already written above, I tested the whole thing on a newly installed WordPress instance on which only Contact Forem 7 was installed (and the latest theme from WP). Nothing else.
I used the HTML code published above in the “Form Tab Panel” …
Forum: Plugins
In reply to: [Contact Form 7] Incorrect error output with two forms on one pageHere is the code from one of the forms. In principle, the other forms are structured identically. What are we missing? ?? ??
Perhaps as additional information: The structure is based, among other things, on the fact that we are using MD Bootstrap.
<div class="kt-form"><div class="md-form md-outline input-with-pre-icon pre-icon"><i class="fas fa-user input-prefix"></i><i class="fas fa-exclamation-circle input-prefix input-error"></i>[text* your-name id:your-name class:form-control] <label> Vorname Nachname </label></div><div class="error-message"></div></div> <div class="kt-form"><div class="md-form md-outline input-with-pre-icon pre-icon"><i class="fas fa-phone input-prefix"></i><i class="fas fa-exclamation-circle input-prefix input-error"></i>[text* your-tel id:your-tel class:form-control] <label> Telefonnummer </label></div><div class="error-message"></div></div> <div class="kt-form"><div class="md-form md-outline input-with-pre-icon pre-icon"><i class="fas fa-envelope input-prefix"></i><i class="fas fa-exclamation-circle input-prefix input-error"></i>[email* your-mail id:your-mail class:form-control] <label> E-Mail-Adresse </label></div><div class="error-message"></div></div> <div class="submit_row narrow-form"><a href="/datenschutzerklaerung/" class="dataprotection-link">Datenschutzbestimmungen</a>[submit class:kt-btn class:kt-primary "Anruf anfordern" "Anruf anfordern"]</div> <style> form.wpcf7-form { background: transparent !important; } </style> <div class="_loader"><div class="_content"><i class="fal fa-spinner fa-spin"></i><span>Anfrage wird versendet ...</span></div></div>
- This reply was modified 3 years, 2 months ago by Goran Peric.
Forum: Plugins
In reply to: [Woocommerce Cart Limit] Languages not working properlyHello,
same issue here. I would like to translate some “frontend messages” but it does not work.
There are some outputs without any language domain like
_( “You can’t have more than $product_max_quanity items of $product_title View Cart“)
in /plugins/woo-cart-limit/woocommerce_limit_cart.php Line 713
@oremtech – Are there any updates coming?
Forum: Plugins
In reply to: [Payment Button for PayPal] Bug Found – Updating Order Information@naa986 Thank you a lot.
Problem solved ??
- This reply was modified 4 years, 7 months ago by Goran Peric.