Title: WPReady's Replies | WordPress.org

---

# WPReady

  [  ](https://wordpress.org/support/users/wpready/)

 *   [Profile](https://wordpress.org/support/users/wpready/)
 *   [Topics Started](https://wordpress.org/support/users/wpready/topics/)
 *   [Replies Created](https://wordpress.org/support/users/wpready/replies/)
 *   [Reviews Written](https://wordpress.org/support/users/wpready/reviews/)
 *   [Topics Replied To](https://wordpress.org/support/users/wpready/replied-to/)
 *   [Engagements](https://wordpress.org/support/users/wpready/engagements/)
 *   [Favorites](https://wordpress.org/support/users/wpready/favorites/)

 Search replies:

## Forum Replies Created

Viewing 15 replies - 1 through 15 (of 360 total)

1 [2](https://wordpress.org/support/users/wpready/replies/page/2/?output_format=md)
[3](https://wordpress.org/support/users/wpready/replies/page/3/?output_format=md)…
[22](https://wordpress.org/support/users/wpready/replies/page/22/?output_format=md)
[23](https://wordpress.org/support/users/wpready/replies/page/23/?output_format=md)
[24](https://wordpress.org/support/users/wpready/replies/page/24/?output_format=md)
[→](https://wordpress.org/support/users/wpready/replies/page/2/?output_format=md)

 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[Estatik Real Estate Plugin] Changing flag icon on Google Map](https://wordpress.org/support/topic/changing-flag-icon-on-google-map/)
 *  Thread Starter [WPReady](https://wordpress.org/support/users/wpready/)
 * (@wpready)
 * [3 years, 8 months ago](https://wordpress.org/support/topic/changing-flag-icon-on-google-map/#post-15927949)
 * Hey, that was VERY useful!
    Thanks for the clarification!
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[Estatik Real Estate Plugin] Where do I put class-property-single-page.php to override it?](https://wordpress.org/support/topic/where-do-i-put-class-property-single-page-php-to-override-it/)
 *  Thread Starter [WPReady](https://wordpress.org/support/users/wpready/)
 * (@wpready)
 * [3 years, 8 months ago](https://wordpress.org/support/topic/where-do-i-put-class-property-single-page-php-to-override-it/#post-15924441)
 * I think I’m doing the things in wrong way.
    How can I change property page template?
   I would like to move the automatic description to middle page.
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[Estatik Real Estate Plugin] Notice: Undefined variable: instance](https://wordpress.org/support/topic/notice-undefined-variable-instance/)
 *  Thread Starter [WPReady](https://wordpress.org/support/users/wpready/)
 * (@wpready)
 * [3 years, 11 months ago](https://wordpress.org/support/topic/notice-undefined-variable-instance/#post-15678921)
 * That would be great.
 * I’m working with an old client , it has a VERY old WP site with an anciente real
   state theme (the author was WooThemes which dropped support several years ago).
 * This contraption worked for almost 12 years (!).
 * I said ‘contraption’ since the original theme had a lot of issues: all the code
   was embedded in a theme, there wasn’t a clean separation from theme and plugin
   code like estatik does. Customization was frankly daunting, and there was a lot
   of bugs to be fixed in order of getting a final design according client’s requirements.
 * Now the client is asking for a responsive theme…
    Making the proper tweaks to
   the original theme seems an unsurmountable task, since the theme wasn’t designed
   for being responsive.
 * So I suggested migrating to estatik+responsive theme. Even the client agreed,
   there was a hurdle: we’d need to move all real state data from one site to another.
   That meant converting a CPT to estatik CPT.
 * In order to do that I ‘extended’ estatik. Instead of loading demo data using 
   a PHP class with info, I changed the plugin to be able load data from JSON files.
   
   That allowed me to load real state data in a easier, more manageable way.
 * The second thing was converting CPT data from the old site, saving to a compatible
   JSON file. This JSON file is later loaded from estatik into the estatik’s CPT.
 * So far things are worked fine. We’ll see how the things will go.
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[Estatik Real Estate Plugin] Notice: Undefined variable: instance](https://wordpress.org/support/topic/notice-undefined-variable-instance/)
 *  Thread Starter [WPReady](https://wordpress.org/support/users/wpready/)
 * (@wpready)
 * [3 years, 12 months ago](https://wordpress.org/support/topic/notice-undefined-variable-instance/#post-15657212)
 * Ok, not exactly an explicit error.
    I was changing error level:
 * ini_set(‘display_errors’, 1);
    ini_set(‘display_startup_errors’, 1); error_reporting(
   E_ALL);
 * and after that field type selection returned errors like
    Notice: Undefined variable:
   instance in D:\……. \wp-content\plugins\estatik\admin\templates\fields-builder\
   partials\options\multiple.php on line 31
 * So is not a real issue per se.
 * What is an issue is that I have some sort of problem with selection field
    According
   [https://estatik.net/estatik-plugin-documentation/#cat-5](https://estatik.net/estatik-plugin-documentation/#cat-5)(
   9.2) I could add many values, however I only can see a box to add one element
   and nothing else.
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[cformsII] Error occurred while sending the message: You must provide at least one recipien](https://wordpress.org/support/topic/error-occurred-while-sending-the-message-you-must-provide-at-least-one-recipien-2/)
 *  [WPReady](https://wordpress.org/support/users/wpready/)
 * (@wpready)
 * [4 years, 7 months ago](https://wordpress.org/support/topic/error-occurred-while-sending-the-message-you-must-provide-at-least-one-recipien-2/page/2/#post-14876159)
 * I was after the same issue and I found a clue, I hope this helps:
 * The issue is caused due a problem with PHP version (7.x) which uses a new regular
   expression engine, affecting the validation email regular expression and firing
   an error.
 * The solution is updating the regular expression on lib_email.php
 * The new regular expression should be:
    ‘/([\w\-\+\.]+@([\w\-]+\.)+[\w\-]{2,63})/’;
 * where the ‘+’ is slashed.
 * You can read more about this error on:
    [https://stackoverflow.com/questions/24764212/preg-match-compilation-failed-invalid-range-in-character-class-at-offset](https://stackoverflow.com/questions/24764212/preg-match-compilation-failed-invalid-range-in-character-class-at-offset)
 * This error is visible with WP_DEBUG=true
 * Notice this error only happen with this very specific regular expression, I scanned
   the plugin but there weren’t no errors related with any other regular expression.
 * Even though I suggest someone else check all the reg. expressions, this issue
   would affect this and many other plugins.
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[NextCellent Gallery - NextGEN Legacy] Is this plugin dead?](https://wordpress.org/support/topic/is-this-plugin-dead-56/)
 *  Plugin Author [WPReady](https://wordpress.org/support/users/wpready/)
 * (@wpready)
 * [7 years, 3 months ago](https://wordpress.org/support/topic/is-this-plugin-dead-56/#post-11112055)
 * Hi there:
    Even the plugin is still working, I have to find time to develop and
   fix the issues. My apologies.
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[Calculated Fields Form] Formula result on multiple textbox](https://wordpress.org/support/topic/formula-result-on-multiple-textbox/)
 *  Thread Starter [WPReady](https://wordpress.org/support/users/wpready/)
 * (@wpready)
 * [7 years, 9 months ago](https://wordpress.org/support/topic/formula-result-on-multiple-textbox/#post-10598159)
 * Thanks this is working exactly as you said.
    I wonder why is the concatenation‘[
   id*=”fieldname’+’5_”]’ . I tested in other ways and none would work.
 * Thank you again!
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[NextCellent Gallery - NextGEN Legacy] NextCellent and Gutenberg](https://wordpress.org/support/topic/nextcellent-an-gutenberg/)
 *  Plugin Author [WPReady](https://wordpress.org/support/users/wpready/)
 * (@wpready)
 * [7 years, 9 months ago](https://wordpress.org/support/topic/nextcellent-an-gutenberg/#post-10596597)
 * Thanks I’ll be reviewing a new version fixing those problems and compatibility
   with Guten berg also.
    Thanks for your help.
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[NextCellent Gallery - NextGEN Legacy] NextCellent and Gutenberg](https://wordpress.org/support/topic/nextcellent-an-gutenberg/)
 *  Plugin Author [WPReady](https://wordpress.org/support/users/wpready/)
 * (@wpready)
 * [7 years, 9 months ago](https://wordpress.org/support/topic/nextcellent-an-gutenberg/#post-10595994)
 * Thanks ispreview for bringing this issue(s).
    What tools do you use to check 
   this? Thanks again.
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[NextCellent Gallery - NextGEN Legacy] NextCellent and Gutenberg](https://wordpress.org/support/topic/nextcellent-an-gutenberg/)
 *  Plugin Author [WPReady](https://wordpress.org/support/users/wpready/)
 * (@wpready)
 * [7 years, 9 months ago](https://wordpress.org/support/topic/nextcellent-an-gutenberg/#post-10595750)
 * Hi there
    Issues about PHP 7.2 were solved in previous versions as 1.9.32
 * I hope Frank is referring to [https://plugincompat.danielbachhuber.com/](https://plugincompat.danielbachhuber.com/)
   
   something I wasn’t aware. I’ll take a look.
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[NextCellent Gallery - NextGEN Legacy] Shortcode exclude pictures](https://wordpress.org/support/topic/shortcode-exclude-pictures/)
 *  Plugin Author [WPReady](https://wordpress.org/support/users/wpready/)
 * (@wpready)
 * [8 years, 6 months ago](https://wordpress.org/support/topic/shortcode-exclude-pictures/#post-9681192)
 * Hi there,
 * Current Nexcellent nggallery shortcode is slightly different in some ways than
   Nextgen.
    Currently it handles a gallery Id(but not multiple), an optional template
   and how many images per page. Since Nextcellent is legacy , it was not the intention
   to follow Nextgen closely to make it 100% compatible.
 * Attribute exclusions isn’t present I’m afraid.
 * A closer look shows the plugin should give a way to solve your request in a generic
   way (I mean, if it is not implemented, at least give it a chance to include a
   filter or something to make it possible, don’t you think?).
 * Let me study the request a little bit to upgrade the code and the plugin.
    Thank
   you.
 *   Forum: [Reviews](https://wordpress.org/support/forum/reviews/)
    In reply to:
   [[NextCellent Gallery - NextGEN Legacy] Fantastic work THANK YOU !](https://wordpress.org/support/topic/fantatsic-work-thank-you/)
 *  Plugin Author [WPReady](https://wordpress.org/support/users/wpready/)
 * (@wpready)
 * [8 years, 6 months ago](https://wordpress.org/support/topic/fantatsic-work-thank-you/#post-9638286)
 * The users deserved an updated version from some time…
    Thanks!
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[NextCellent Gallery - NextGEN Legacy] Custom Post Type – Nextcellent](https://wordpress.org/support/topic/custom-post-type-nextcellent/)
 *  Plugin Author [WPReady](https://wordpress.org/support/users/wpready/)
 * (@wpready)
 * [8 years, 6 months ago](https://wordpress.org/support/topic/custom-post-type-nextcellent/#post-9596060)
 * Currently it is working, although it needs some way to provide more flexibility.
   
   Truth is Nextcellent is based on legacy code, from the times Custom Post Types
   were just an idea. Because of that, the plugin stores data on custom mysql tables
   instead Custom Post Types. Ideally, we should use one or another (or tables or
   Custom Post Types) , and I’m beginning seeing many plugins capable of integrate
   accepting Custom Post as input.
 * Since I’ve been using Revolution Slider quite some time, the integration proved
   to be successful, allowing reusing Nextcellent galleries in a different and newer
   way.
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[NextCellent Gallery - NextGEN Legacy] TinyMCE Nextcellent Button opens empty modal](https://wordpress.org/support/topic/tinymce-nextcellent-button-opens-empty-modal/)
 *  Plugin Author [WPReady](https://wordpress.org/support/users/wpready/)
 * (@wpready)
 * [8 years, 7 months ago](https://wordpress.org/support/topic/tinymce-nextcellent-button-opens-empty-modal/page/2/#post-9590511)
 * 1.9.35 should be the fix for the insert issue.
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[NextCellent Gallery - NextGEN Legacy] TinyMCE Nextcellent Button opens empty modal](https://wordpress.org/support/topic/tinymce-nextcellent-button-opens-empty-modal/)
 *  Plugin Author [WPReady](https://wordpress.org/support/users/wpready/)
 * (@wpready)
 * [8 years, 7 months ago](https://wordpress.org/support/topic/tinymce-nextcellent-button-opens-empty-modal/page/2/#post-9584703)
 * Thanks m0nter, Let me check what’s going on.

Viewing 15 replies - 1 through 15 (of 360 total)

1 [2](https://wordpress.org/support/users/wpready/replies/page/2/?output_format=md)
[3](https://wordpress.org/support/users/wpready/replies/page/3/?output_format=md)…
[22](https://wordpress.org/support/users/wpready/replies/page/22/?output_format=md)
[23](https://wordpress.org/support/users/wpready/replies/page/23/?output_format=md)
[24](https://wordpress.org/support/users/wpready/replies/page/24/?output_format=md)
[→](https://wordpress.org/support/users/wpready/replies/page/2/?output_format=md)