Title: resting's Replies | WordPress.org

---

# resting

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

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

 Search replies:

## Forum Replies Created

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

1 [2](https://wordpress.org/support/users/resting/replies/page/2/?output_format=md)
[→](https://wordpress.org/support/users/resting/replies/page/2/?output_format=md)

 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[Integration: Yoast SEO & qTranslate-X] Language switcher doesn’t change YOAST SEO meta fields](https://wordpress.org/support/topic/language-switcher-doesnt-change-yoast-seo-meta-fields/)
 *  [resting](https://wordpress.org/support/users/resting/)
 * (@resting)
 * [9 years, 7 months ago](https://wordpress.org/support/topic/language-switcher-doesnt-change-yoast-seo-meta-fields/#post-8204641)
 * [@akleines2](https://wordpress.org/support/users/akleines2/) i have the same 
   problem, refreshing the page does make it reflect the correct values, but <b>
   only</b> if I update each language individually. didn’t have time to study how
   this translation thing works, else i can help change the source.
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[Contact Form 7] Disable hidden form](https://wordpress.org/support/topic/disable-hidden-form/)
 *  Thread Starter [resting](https://wordpress.org/support/users/resting/)
 * (@resting)
 * [10 years ago](https://wordpress.org/support/topic/disable-hidden-form/#post-7315971)
 * That’s interesting.
    I guess there’s no documentation on hooks and filters? Will
   have to dig in the source for such things ya?
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[Options Framework] Options value missing after migration](https://wordpress.org/support/topic/options-value-missing-after-migration/)
 *  Thread Starter [resting](https://wordpress.org/support/users/resting/)
 * (@resting)
 * [10 years, 1 month ago](https://wordpress.org/support/topic/options-value-missing-after-migration/#post-7252232)
 * Ok found this: [https://wordpress.org/support/topic/theme-delicate-theme-options-lost-when-moving-to-new-domain?replies=19#post-2654903](https://wordpress.org/support/topic/theme-delicate-theme-options-lost-when-moving-to-new-domain?replies=19#post-2654903)
 * > I have seen a lot of people fall in this trap. I am not familiar with this 
   > theme at all, but my guess is that it uses the WP Settings API to store options
   > in an array in the DB. Ordinarily the options would get stored thus:
   >  name 
   > => value
   > So, you would get something like:
   >  ‘background_image’ => ‘[http://path.to/old/url&#8217](http://path.to/old/url&#8217);
   > But using the WP API if you save the options, the options get encoded. So you
   > get something like this:
   >  type:length:value
   > Note that apart from the value, you have the length that is stored. So, your
   > background_image option above also gets the number 22 assigned for the length(
   > the path is 22 characters long).
   > When you are doing a find/replace via the DB, you are basically changing the
   > URL to ‘[http://new-path.to/old/new-url&#8217](http://new-path.to/old/new-url&#8217);,
   > which is 30 characters long, but your option still says “22”. This corrupts
   > your options array.
 * Fixing the s: length worked.
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[EWWW Image Optimizer] What am I optimizing when I do bulk optimize?](https://wordpress.org/support/topic/what-am-i-optimizing-when-i-do-bulk-optimize/)
 *  Thread Starter [resting](https://wordpress.org/support/users/resting/)
 * (@resting)
 * [10 years, 5 months ago](https://wordpress.org/support/topic/what-am-i-optimizing-when-i-do-bulk-optimize/#post-6848494)
 * Thanks for explaining.
    So if I purchase the API keys for JPG/PNG lossy optimization,
   it’ll compress the files even further?
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[Limit Post Titles] Doesn't work with qTranslateX](https://wordpress.org/support/topic/doesnt-work-with-qtranslatex/)
 *  Thread Starter [resting](https://wordpress.org/support/users/resting/)
 * (@resting)
 * [10 years, 6 months ago](https://wordpress.org/support/topic/doesnt-work-with-qtranslatex/#post-6745464)
 * Found that the input element was wrong.
    Fixed with
 *     ```
       var inputs = this.el.getElementsByTagName('input');
       this.titleInput = inputs[inputs.length - 1];
       ```
   
 * in the `appendCounter` property.
 * Maybe you could refactor and implement in the next release?
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[Timely All-in-One Events Calendar] $time->format() displays wrong date](https://wordpress.org/support/topic/time-format-displays-wrong-date/)
 *  Thread Starter [resting](https://wordpress.org/support/users/resting/)
 * (@resting)
 * [10 years, 6 months ago](https://wordpress.org/support/topic/time-format-displays-wrong-date/#post-6720886)
 * Hi,
 * Thanks for the suggestion, I’d checked the option, but it didn’t work.
    There’s
   a line in `widget.php` which is
 *     ```
       // Get localized time
           $timestamp = $time->format_to_gmt();
       ```
   
 * right after that I tried printing the `$timestamp` and it still shows -8 time.
 * Maybe format_to_gmt is causing it to ignore timezone so I tried,
 *     ```
       $timestamp = $time->format();
       ```
   
 * But it shows the same time as `format_to_gmt()`
 * This is causing problems in the widget when I set it to 1 day’s event. That is,
   I only want to show today’s events. But due to the timestamp offset, it may or
   may not show events that’s supposed to start the next day.
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[MC4WP: Mailchimp for WordPress] Ajax submission not working](https://wordpress.org/support/topic/ajax-submission-not-working/)
 *  Thread Starter [resting](https://wordpress.org/support/users/resting/)
 * (@resting)
 * [10 years, 6 months ago](https://wordpress.org/support/topic/ajax-submission-not-working/#post-6669772)
 * Solved. The shorcode was wrapped in an extra <form> tag. Its working now.
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[Toolset Types - Custom Post Types, Custom Fields and Taxonomies] Change post type names manually?](https://wordpress.org/support/topic/change-post-type-names-manually/)
 *  Thread Starter [resting](https://wordpress.org/support/users/resting/)
 * (@resting)
 * [10 years, 7 months ago](https://wordpress.org/support/topic/change-post-type-names-manually/#post-6614344)
 * Ok I found it in wp_options table, with the option_name wpcf-custom-types.
    Name
   is serialized so will have to change the s:xx characters to reflect the new character
   count.
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[WP Super Cache] WPSC pointing to the wrong folder after migrate](https://wordpress.org/support/topic/wpsc-pointing-to-the-wrong-folder-after-migrate/)
 *  Thread Starter [resting](https://wordpress.org/support/users/resting/)
 * (@resting)
 * [10 years, 7 months ago](https://wordpress.org/support/topic/wpsc-pointing-to-the-wrong-folder-after-migrate/#post-6614319)
 * I moved everything in wp-content over.
    So, I had to manually change the file
   path of $cache_path in wp-content/wp-cache-config.php.
 * It works after that.
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[qTranslate X] Activate translation only for specific post types?](https://wordpress.org/support/topic/activate-translation-only-for-specific-post-types/)
 *  Thread Starter [resting](https://wordpress.org/support/users/resting/)
 * (@resting)
 * [11 years, 1 month ago](https://wordpress.org/support/topic/activate-translation-only-for-specific-post-types/#post-5915773)
 * I would think in the lines of having a list of checkboxes in qTranslate X’s settings
   where users can then select which post types should have the translation feature
   enabled.
    Something like that.
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[Photo Gallery, Sliders, Proofing and Themes - NextGEN Gallery] Unable to upload images](https://wordpress.org/support/topic/unable-to-upload-images-42/)
 *  [resting](https://wordpress.org/support/users/resting/)
 * (@resting)
 * [11 years, 6 months ago](https://wordpress.org/support/topic/unable-to-upload-images-42/#post-5422943)
 * Ignore this, its my fault. Apache wasn’t reading the .htaccess.
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[Photo Gallery, Sliders, Proofing and Themes - NextGEN Gallery] Unable to upload images](https://wordpress.org/support/topic/unable-to-upload-images-42/)
 *  [resting](https://wordpress.org/support/users/resting/)
 * (@resting)
 * [11 years, 6 months ago](https://wordpress.org/support/topic/unable-to-upload-images-42/#post-5422940)
 * Ok, the problem seems to be after I activated roots theme. Deactivating it doesn’t
   solve the problem either. Wonder what roots had done that’s permanent.
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[Photo Gallery, Sliders, Proofing and Themes - NextGEN Gallery] Unable to upload images](https://wordpress.org/support/topic/unable-to-upload-images-42/)
 *  [resting](https://wordpress.org/support/users/resting/)
 * (@resting)
 * [11 years, 6 months ago](https://wordpress.org/support/topic/unable-to-upload-images-42/#post-5422937)
 * I have the same problem on a fresh install.
    No errors were shown or logged either.
   It just says 0 files were uploaded.
 * Permissions had been set to 755 as recommended.
    I can upload the same file via
   Media upload. Help?
 * There’s a
    POST [http://www.example.com/photocrati_ajax](http://www.example.com/photocrati_ajax)
   404 (Not Found) and POST [http://www.example.com/photocrati_ajax?action=upload_image&gallery_id=0&gallery_name=gallery1](http://www.example.com/photocrati_ajax?action=upload_image&gallery_id=0&gallery_name=gallery1)
   404 (Not Found)
 * error in the console in “Add Gallery / Images” page.
 *   Forum: [Fixing WordPress](https://wordpress.org/support/forum/how-to-and-troubleshooting/)
   
   In reply to: [Plugin doesn’t shopw up after removing Askimet](https://wordpress.org/support/topic/plugin-doesnt-shopw-up-after-removing-askimet/)
 *  Thread Starter [resting](https://wordpress.org/support/users/resting/)
 * (@resting)
 * [16 years, 5 months ago](https://wordpress.org/support/topic/plugin-doesnt-shopw-up-after-removing-askimet/#post-1298592)
 * its weird. its showing now after like 30mins. i have no idea why…
 *   Forum: [Fixing WordPress](https://wordpress.org/support/forum/how-to-and-troubleshooting/)
   
   In reply to: [Plugin doesn’t shopw up after removing Askimet](https://wordpress.org/support/topic/plugin-doesnt-shopw-up-after-removing-askimet/)
 *  Thread Starter [resting](https://wordpress.org/support/users/resting/)
 * (@resting)
 * [16 years, 5 months ago](https://wordpress.org/support/topic/plugin-doesnt-shopw-up-after-removing-askimet/#post-1298590)
 * forgot to add that this happens only for the Installed section

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

1 [2](https://wordpress.org/support/users/resting/replies/page/2/?output_format=md)
[→](https://wordpress.org/support/users/resting/replies/page/2/?output_format=md)