Title: Ricky de Laveaga's Replies | WordPress.org

---

# Ricky de Laveaga

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

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

 Search replies:

## Forum Replies Created

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

 *   Forum: [Reviews](https://wordpress.org/support/forum/reviews/)
    In reply to:
   [[Simple Local Avatars] Nice work, but needs improvement](https://wordpress.org/support/topic/nice-work-but-needs-improvement/)
 *  [Ricky de Laveaga](https://wordpress.org/support/users/rdela/)
 * (@rdela)
 * [4 years, 7 months ago](https://wordpress.org/support/topic/nice-work-but-needs-improvement/#post-15132482)
 * I was also confused about where to find settings and agree with the proposed 
   solution of adding:
 * > a “Settings” link under the plugin name on the Installed Plugins page (e.g.
   > wp-admin/plugins.php) that links to wp-admin/options-discussion.php to better
   > help direct admins on where to customize their SLA experience.
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[Bandsintown Events] Plugin BROKE with HTTPS://](https://wordpress.org/support/topic/plugin-broke-with-https/)
 *  [Ricky de Laveaga](https://wordpress.org/support/users/rdela/)
 * (@rdela)
 * [8 years, 9 months ago](https://wordpress.org/support/topic/plugin-broke-with-https/#post-9560232)
 * Thanks so much for the lightning fix. I noticed in testing the patched version
   that in [the minified JS](https://widget.bandsintown.com/main.min.js) the function
   that sets the `eventPopupURL` later used to open the window is setting `var a`
   to `"https://tourdates.bandsintown.com/event/"+this.id;return g(a).setQuery(this.
   collection.eventPopupQueryParams()).toString()` which does not return events 
   for me where `"https://bandsintown.com/event/"+…` does. Removing `tourdates.`
   has events and the Tickets and More links returning the event. Thinking you would
   probably be editing unminified original file I checked to see if that was available
   and it was, thanks for that, this is line 25156 in [main.js](https://widget.bandsintown.com/main.js).
 * Once I had event links working on new API, I noticed a separate problem later
   on in the JS (line 25479 in main.js)…
    `this.popupWindow=e.openWindow(a,b,this.
   popupOptions(375,627))`
 * …Creates an unusable cropped popup window (page layout does not respond to small
   viewport) where passing a version minus `,this.popupOptions(375,627)`…
    `this.
   popupWindow=e.openWindow(a,b)`
 * …Spawns a full window in a new tab as I would expect and I imagine most downstream
   consumers of the plugin would also. Thanks again for the attention, and if I 
   can help by committing these proposed changes to the JS somewhere, please let
   me know.
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[Bandsintown Events] Plugin BROKE with HTTPS://](https://wordpress.org/support/topic/plugin-broke-with-https/)
 *  [Ricky de Laveaga](https://wordpress.org/support/users/rdela/)
 * (@rdela)
 * [8 years, 9 months ago](https://wordpress.org/support/topic/plugin-broke-with-https/#post-9557617)
 * make that line **175** in bandsintown.php with `parent::__construct` in place
   of `parent::WP_Widget`
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[Bandsintown Events] Plugin BROKE with HTTPS://](https://wordpress.org/support/topic/plugin-broke-with-https/)
 *  [Ricky de Laveaga](https://wordpress.org/support/users/rdela/)
 * (@rdela)
 * [8 years, 9 months ago](https://wordpress.org/support/topic/plugin-broke-with-https/#post-9557510)
 * Hi Phil,
    Thanks for the update, getting [this (Stack Overflow: The called constructor method for WP_Widget is deprecated since version 4.3.0)](https://stackoverflow.com/questions/32860218/the-called-constructor-method-for-wp-widget-is-deprecated-since-version-4-3-0#32860981),
   after updating to 1.1.2 and fixing/adding data attributes that changed or were
   added to v2 API. Can verify that an identical plugin with `parent::__construct`
   in place of `parent::WP_Widget` in bandsintown.php on line 178 as Stack Overflow
   answer recommends solves the issue. Any chance of adding the source to [@bandsintown GH](https://github.com/bandsintown)?
   I would add a PR there if you want, but know that is asking a lot so if it’s 
   easier to fix yourself and leave SVN as is, totally understand.
 * Ricky
    -  This reply was modified 8 years, 9 months ago by [Ricky de Laveaga](https://wordpress.org/support/users/rdela/).
      Reason: typo
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[Pinterest Hover Pin It Button] Colour and Size Options Not Working](https://wordpress.org/support/topic/colour-and-size-options-not-working/)
 *  [Ricky de Laveaga](https://wordpress.org/support/users/rdela/)
 * (@rdela)
 * [12 years, 2 months ago](https://wordpress.org/support/topic/colour-and-size-options-not-working/#post-4679832)
 * Unnecessary default options (shape or language, not sure which, could be both)
   the plugin currently passes to the Pinterest JavaScript API as data attributes
   are inexplicably forcing it to the small gray one.
 * If you change Lines 67 – 78 to:
 *     ```
       // add the shape if not default
       if(isset($shape_op) && $shape_op != "rectangle") {
         $return_string = "$return_string' data-pin-shape='$shape_op";
       }
       // if shape is not round, add the color and language
       if(isset($shape_op) && $shape_op != "round") {
         // add the color if not default
         if(isset($color_op) && $color_op != "gray") {
           $return_string = "$return_string' data-pin-color='$color_op";
         }
         // add the language if not default
         if(isset($lang_op) && $lang_op != "eng") {
           $return_string = "$return_string' data-pin-lang='$lang_op";
         }
       }
       ```
   
 * Size and color options work.
 * Bill is there anywhere I can submit a patch, if you want one?
 *   Forum: [Fixing WordPress](https://wordpress.org/support/forum/how-to-and-troubleshooting/)
   
   In reply to: [HTML Comment in Post Content Makes Everything Commented Out](https://wordpress.org/support/topic/html-comment-in-post-content-makes-everything-commented-out/)
 *  [Ricky de Laveaga](https://wordpress.org/support/users/rdela/)
 * (@rdela)
 * [13 years, 10 months ago](https://wordpress.org/support/topic/html-comment-in-post-content-makes-everything-commented-out/#post-2812024)
 * [@marcuspope](https://wordpress.org/support/users/marcuspope/) hell yes!
    plugin
   works like a charm [http://wordpress.org/extend/plugins/preserved-html-editor-markup/](http://wordpress.org/extend/plugins/preserved-html-editor-markup/)

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