Forum Replies Created

Viewing 5 replies - 1 through 5 (of 5 total)
  • gracias por tu compartir tu opinión. La mayoría de las características de plugins son gratuitos. Usted sólo tiene que pagar por algunas características complemento. Si usted está experimentando problemas utilizando las funciones gratuitas Plugin déjanos saber aquí o con apoyo.

    Hi flexyz,

    Can you show me a link with the plugin on your site?

    We have to run into jQuery conflicts in the past as the plugin uses jQuery and ajax request to submit data.

    The plugin also requires the latest version of jQuery. Iff you’re enqueuing from your theme or some other plugin a different version or multiple versions of jQuery you could run into problems.

    Carlos

    We’ve added additional field validation with better error reporting including mailchimp field validation. We’ve also change it so the “for” attribute on the label tag to match the “id” of the input instead of the “name” attribute per W3C standards.

    We are currently using the “rel” attribute on the form tag to hook into the Mailchimp list ID. We can add changing it to data attribute ( example: data-rel) in the next version. In the meantime as Web Developer you can always edit the short code_form.php file.

    Hi Joern,

    In version 2.2.1 we’ve changed the label attribute “for” to match the input “id” instead of “name”.

    Carlos

    We used preg_replace() and not ereg_replace() in our plugin as ereg_replace() was deprecated in PHP version 5.3.

    When you use both ereg_replace() and preg_replace() at the same time PHP will sometimes throw that error. Meaning if you already have another plugin installed using ereg_replace() even though its deprecated when installing our plugin you will get that error even though our plugin is using the correct function.

    You have a few possible solutions.

    First, Update all your themes and plugins as newer version of these add-ons may have already corrected the deprecated function. If this doesn’t work look at the error as the message will tell you which file has the deprecated function and notify the developer of the deprecated function.

    Second, if you feel comfortable working in PHP look for the ereg_replace() among your other plugins and replace it with preg_replace():

    Old:
    ereg_replace(“.*\.(.*)$” , “\\1” , “foo.jpg”);

    New:
    preg_replace(“/.*\.(.*)$/” , “\\1” , “foo.jpg”);

    Notice the additional delimiters as PHP 5.3 requires the “/” as a delimiter.

    Third, go to lines 119 and 128 of the file “class.yksemeBase.php file and revert back to ereg_replace (not recommended).

Viewing 5 replies - 1 through 5 (of 5 total)