Title: d1tech's Replies | WordPress.org

---

# d1tech

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

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

 Search replies:

## Forum Replies Created

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

 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[Contact Form 7] Form Not Submitting – 404 Error](https://wordpress.org/support/topic/form-not-submitting-404-error-2/)
 *  Thread Starter [d1tech](https://wordpress.org/support/users/d1tech/)
 * (@d1tech)
 * [5 years, 1 month ago](https://wordpress.org/support/topic/form-not-submitting-404-error-2/#post-14270795)
 * Thanks! Unfortunately, this is happening on a production site (not my test site)
   so for now, I’m going to downgrade to the previous version.
 * So far, so good.
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[Contact Form 7] Form Not Submitting – 404 Error](https://wordpress.org/support/topic/form-not-submitting-404-error-2/)
 *  Thread Starter [d1tech](https://wordpress.org/support/users/d1tech/)
 * (@d1tech)
 * [5 years, 1 month ago](https://wordpress.org/support/topic/form-not-submitting-404-error-2/#post-14259982)
 * [@takayukister](https://wordpress.org/support/users/takayukister/) – Thanks for
   replying!
 * Theme:
    Unicon
 * Plugins:
    Better WordPress Minify Contact Form 7 Easy WP SMTP Essential Grid 
   Really Simple SSL Slider Revolution WP Cerber Security WP Super Cache WPBakery
   Page Builder Yoast SEO
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[Contact Form 7] Form Not Submitting – 404 Error](https://wordpress.org/support/topic/form-not-submitting-404-error-2/)
 *  Thread Starter [d1tech](https://wordpress.org/support/users/d1tech/)
 * (@d1tech)
 * [5 years, 1 month ago](https://wordpress.org/support/topic/form-not-submitting-404-error-2/#post-14256577)
 * Sorry, OP here, in my original post, I put “this issue is now allowing my form
   to submit”. I meant to say, “this issue is NOT allowing my form to submit”.
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[PPM Testimonial] Change rotation speed?](https://wordpress.org/support/topic/change-rotation-speed/)
 *  [d1tech](https://wordpress.org/support/users/d1tech/)
 * (@d1tech)
 * [12 years, 8 months ago](https://wordpress.org/support/topic/change-rotation-speed/#post-4069136)
 * I’m not sure if you’ve figured it out or not but I thought I’d lend my findings.
 * In order to change the time of the rotation, you’ll need to edit the jquery.quote_rotator.
   js file that’s located within the plugin’s directory (wp-content/plugins/ppm-
   testimonial/js).
 * Once you open the jquery.quote_rotator.js file, find the following block of code:
 *     ```
       (function($) {
   
         $.quote_rotator = {
           defaults: {
             rotation_speed: 5000,
             pause_on_hover: true,
             randomize_first_quote: false,
             buttons: false
           }
         }
   
         $.fn.extend({
           quote_rotator: function(config) {
   
             var config = $.extend({}, $.quote_rotator.defaults, config);
   
             return this.each(function() {
               var rotation;
               var quote_list = $(this);
               var list_items = quote_list.find('li');
               var rotation_active = true;
               var rotation_speed = config.rotation_speed < 2000 ? 2000 : config.rotation_speed;
       ```
   
 * You will need to change the time for the following items:
 * **rotation_speed: 5000,**
 * **var rotation_speed = config.rotation_speed < 2000 ? 2000 : config.rotation_speed;**
 * Change the time frame (**5000** and **2000**) instances to whatever time that
   suits you best. When making this change, make sure you’re using the same number
   for all of the instances (I’ll provide my code at the bottom for clarification).
 * Lastly, each thousand is set in milliseconds, so for example, if you want 8 seconds,
   you’ll need to change all of the instances above to 8000.
 * Again, these are my findings and I’m not sure if this is the right way to go 
   about it overall but it has worked for me so far. Below are the code changes 
   I’ve made:
 *     ```
       (function($) {
   
         $.quote_rotator = {
           defaults: {
             rotation_speed: 10000,
             pause_on_hover: true,
             randomize_first_quote: false,
             buttons: false
           }
         }
   
         $.fn.extend({
           quote_rotator: function(config) {
   
             var config = $.extend({}, $.quote_rotator.defaults, config);
   
             return this.each(function() {
               var rotation;
               var quote_list = $(this);
               var list_items = quote_list.find('li');
               var rotation_active = true;
               var rotation_speed = config.rotation_speed < 10000 ? 10000 : config.rotation_speed;
       ```
   
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[PeckPlayer] [Plugin: PeckPlayer] URL of Sounds – Widget Question](https://wordpress.org/support/topic/plugin-peckplayer-url-of-sounds-widget-question/)
 *  Thread Starter [d1tech](https://wordpress.org/support/users/d1tech/)
 * (@d1tech)
 * [14 years, 2 months ago](https://wordpress.org/support/topic/plugin-peckplayer-url-of-sounds-widget-question/#post-2601318)
 * Thank you linibou, I’ve updated the plug-in and this resolved my issue.

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