Title: David2015's Replies | WordPress.org

---

# David2015

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

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

 Search replies:

## Forum Replies Created

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

 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[Integration with Mautic for WP - Mautic Form, Automation, Marketing] Unable to connect via API](https://wordpress.org/support/topic/unable-to-connect-via-api/)
 *  Thread Starter [David2015](https://wordpress.org/support/users/david2015/)
 * (@david2015)
 * [4 years, 6 months ago](https://wordpress.org/support/topic/unable-to-connect-via-api/#post-15031845)
 * Oh my.
 * Yes, it was the cache.
    Thank you!
 * Best
    David
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[Psychological tests & quizzes] Request: syntax change for radio inputs](https://wordpress.org/support/topic/request-syntax-change-for-radio-inputs/)
 *  Thread Starter [David2015](https://wordpress.org/support/users/david2015/)
 * (@david2015)
 * [7 years, 6 months ago](https://wordpress.org/support/topic/request-syntax-change-for-radio-inputs/#post-10839854)
 * double sent, deleted
    -  This reply was modified 7 years, 6 months ago by [David2015](https://wordpress.org/support/users/david2015/).
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[Psychological tests & quizzes] Request: syntax change for radio inputs](https://wordpress.org/support/topic/request-syntax-change-for-radio-inputs/)
 *  Thread Starter [David2015](https://wordpress.org/support/users/david2015/)
 * (@david2015)
 * [7 years, 6 months ago](https://wordpress.org/support/topic/request-syntax-change-for-radio-inputs/#post-10839817)
 * I just realized you put that on the divs, not the labels itself 🙂
    I will try
   if this works just as well
 * Thanks again, awesome support
    David
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[Psychological tests & quizzes] Request: syntax change for radio inputs](https://wordpress.org/support/topic/request-syntax-change-for-radio-inputs/)
 *  Thread Starter [David2015](https://wordpress.org/support/users/david2015/)
 * (@david2015)
 * [7 years, 6 months ago](https://wordpress.org/support/topic/request-syntax-change-for-radio-inputs/#post-10839093)
 * Actually I cannot get this to work, the class doesn’t seem to change with selection
   after the update.
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[Psychological tests & quizzes] Request: syntax change for radio inputs](https://wordpress.org/support/topic/request-syntax-change-for-radio-inputs/)
 *  Thread Starter [David2015](https://wordpress.org/support/users/david2015/)
 * (@david2015)
 * [7 years, 6 months ago](https://wordpress.org/support/topic/request-syntax-change-for-radio-inputs/#post-10838488)
 * Awesome!
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[Bulk Term Generator - Import multiple tags, categories, and taxonomies easily] Cant to add new line](https://wordpress.org/support/topic/cant-to-add-new-line/)
 *  [David2015](https://wordpress.org/support/users/david2015/)
 * (@david2015)
 * [7 years, 6 months ago](https://wordpress.org/support/topic/cant-to-add-new-line/#post-10818383)
 * Hello,
    I have the same problem. This seems to be broken, no way to add a new
   line, which makes this pretty useless 🙂
 * David
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[Psychological tests & quizzes] Request: syntax change for radio inputs](https://wordpress.org/support/topic/request-syntax-change-for-radio-inputs/)
 *  Thread Starter [David2015](https://wordpress.org/support/users/david2015/)
 * (@david2015)
 * [7 years, 6 months ago](https://wordpress.org/support/topic/request-syntax-change-for-radio-inputs/#post-10818301)
 * Hello Alexander,
 * it should be something like this
 *     ```
       /* Hiding the orginal radios */
       .answer input[type="radio"] {
       	display: none;
       }
   
       /* Add label background*/
       .wpt_test .answer label {
       	background: url('') left top no-repeat;
       	display: inline-block;
       	}
   
       /*change label background when radio checked*/
       .wpt_test .answer[checked=true] label {
       	background: url('') left top no-repeat;
       	display: inline-block;
   
       }
       ```
   
 * Hope there is no mistake in there.
    In reality you would use only one image and
   move it with margins, but this is easier now.
 * David
    -  This reply was modified 7 years, 6 months ago by [David2015](https://wordpress.org/support/users/david2015/).
    -  This reply was modified 7 years, 6 months ago by [David2015](https://wordpress.org/support/users/david2015/).
    -  This reply was modified 7 years, 6 months ago by [David2015](https://wordpress.org/support/users/david2015/).
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[Psychological tests & quizzes] Request: syntax change for radio inputs](https://wordpress.org/support/topic/request-syntax-change-for-radio-inputs/)
 *  Thread Starter [David2015](https://wordpress.org/support/users/david2015/)
 * (@david2015)
 * [7 years, 6 months ago](https://wordpress.org/support/topic/request-syntax-change-for-radio-inputs/#post-10818176)
 * Dear Alexander,
 * ah, that is a clever idea. But the .question aswered would change all labels 
   on all answers for that question. I want to change only the checked answer to
   mimick the radio button
 * I now just edited the fill-form.php myself and moved the label below the input(
   from line 52 to line 62). That works fine, but will of course break with each
   update..
 * If you would include a data attribute on the answers, that would open a possibility,
   but I have never tried it that way.
 * Thank you for you quick replys!
    David
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[Psychological tests & quizzes] Request: syntax change for radio inputs](https://wordpress.org/support/topic/request-syntax-change-for-radio-inputs/)
 *  Thread Starter [David2015](https://wordpress.org/support/users/david2015/)
 * (@david2015)
 * [7 years, 6 months ago](https://wordpress.org/support/topic/request-syntax-change-for-radio-inputs/#post-10818107)
 * Dear Alexander,
 * ah, ok that is unfortuate.
 * I want to style the label element depending on the state of the input.
    This 
   way I can design my own radio-buttongs, change label color when selected asf..
 * This is also not possible with the child selector, as I want to style the label
   according the input, not the other way around.
 * Actually I can’t think of any other way to replace the radios with custom ones.
   
   The only other option would be when answers would be an
    - , then I could style the li-elements but that is also not the case..
    - Best
       David
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[Adaptive Images for WordPress] Not working on Multisite](https://wordpress.org/support/topic/not-working-on-multisite-21/)
 *  Thread Starter [David2015](https://wordpress.org/support/users/david2015/)
 * (@david2015)
 * [7 years, 7 months ago](https://wordpress.org/support/topic/not-working-on-multisite-21/#post-10750828)
 * Hey,
    thank you for the quick reply.
 * Unfortunately, when I activate it on the main site only, the subdomain images
   are gone due to the htaccess rewrite.
 * Anyway otherwise a great plugin, now I have to find some alternative way…
    David
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[Psychological tests & quizzes] Feature Suggestion: Top Results Variable](https://wordpress.org/support/topic/feature-suggestion-top-results-variable/)
 *  Thread Starter [David2015](https://wordpress.org/support/users/david2015/)
 * (@david2015)
 * [7 years, 10 months ago](https://wordpress.org/support/topic/feature-suggestion-top-results-variable/#post-10479814)
 * Good Point. I guess that is a design decision.
    My favorite for same values would
   be to to create 3 positions with equal values, perhaps sorted alphabetically.
 * If that is possible scale_position_1 could also hold both the scale name the 
   scalee’s results-value, so we can compare them
    – or that is available in another
   variable like scale_position_1_value
 * That way the User woud still be able to be flexible with somthing like
    scale-
   red = scale_position_1 AND scale_position_1_value > scale_position_2_value
 * And deliver another “break-even”-result for other cases where position 1 and 
   2 values are equal.
 * I would name them something like scale_topposition_1 to be clear about numbering.
    -  This reply was modified 7 years, 10 months ago by [David2015](https://wordpress.org/support/users/david2015/).
    -  This reply was modified 7 years, 10 months ago by [David2015](https://wordpress.org/support/users/david2015/).
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[Psychological tests & quizzes] Feature Suggestion: Top Results Variable](https://wordpress.org/support/topic/feature-suggestion-top-results-variable/)
 *  Thread Starter [David2015](https://wordpress.org/support/users/david2015/)
 * (@david2015)
 * [7 years, 10 months ago](https://wordpress.org/support/topic/feature-suggestion-top-results-variable/#post-10479736)
 * That would of course declutter the EDIT FORMULAS, but it would not make things
   much easier as it would still require me to write all the complex formulas.
 * Unless I totally have a knot in my head it is really quite tricky to find a combination
   of the two top ranking scales if you have more than 3 scales.
 * The suggested feature would make life easier in a lot of use cases, and to hard-
   code the variables should not require more than a few lines of code.
 * I’d be happy to donate to you if you make that a core feature!
    Nobody likes 
   to work for free. You could as well make it part of Computed variables so people
   need to buy that to have this function. Let me know.
    -  This reply was modified 7 years, 10 months ago by [David2015](https://wordpress.org/support/users/david2015/).
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[Link Fixer] word match not working](https://wordpress.org/support/topic/word-match-not-working/)
 *  Thread Starter [David2015](https://wordpress.org/support/users/david2015/)
 * (@david2015)
 * [10 years, 8 months ago](https://wordpress.org/support/topic/word-match-not-working/#post-6526267)
 * I installed the beta from your website, and that seems to do!
 * I keep this open, as it is still true for the version posted here.
 * David
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[Link Fixer] word match not working](https://wordpress.org/support/topic/word-match-not-working/)
 *  Thread Starter [David2015](https://wordpress.org/support/users/david2015/)
 * (@david2015)
 * [10 years, 8 months ago](https://wordpress.org/support/topic/word-match-not-working/#post-6526257)
 * Addition:
 * Also the fixed permalinks are in the format:
    old-bad-slug//https://www.site.
   com/good-new-slug/
 * Why is that the case?
 * Thank you in advance.
    I am happy to pay for any solution, as this plugin would
   meet our needs perfectly.
 * David

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