Title: Tdude's Replies | WordPress.org

---

# Tdude

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

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

 Search replies:

## Forum Replies Created

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

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

 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[Accordion Blocks] aria-control removed in Gutenberg editor](https://wordpress.org/support/topic/aria-control-removed-in-gutenberg-editor/)
 *  Thread Starter [Tdude](https://wordpress.org/support/users/tdude/)
 * (@tdude)
 * [5 years, 2 months ago](https://wordpress.org/support/topic/aria-control-removed-in-gutenberg-editor/#post-14323161)
 * Ah ok, you actually wrote what I meant in the code comment 🙂 Maybe I should 
   have read the code and docs first. Thanks a bunch!
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[SportsPress - Sports Club & League Manager] Problem by positioning equipment in league table](https://wordpress.org/support/topic/problem-by-positioning-equipment-in-league-table/)
 *  [Tdude](https://wordpress.org/support/users/tdude/)
 * (@tdude)
 * [9 years, 9 months ago](https://wordpress.org/support/topic/problem-by-positioning-equipment-in-league-table/#post-8196115)
 * If I understand correctly by looking at your site, you want to create a “player
   list”. Go to your WordPress menu and under where it says Sportspress, choose 
   players/player list, choose team and a few more parameters and you will probably
   get what you want. Sorry if I didn’t understand you correctly!
 * //T
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[Dynamic Featured Image] How to use multiple featured images in my home slider](https://wordpress.org/support/topic/how-to-use-multiple-featured-images-in-my-home-slider/)
 *  [Tdude](https://wordpress.org/support/users/tdude/)
 * (@tdude)
 * [12 years, 2 months ago](https://wordpress.org/support/topic/how-to-use-multiple-featured-images-in-my-home-slider/#post-4773168)
 * Ahhh, updated my post after actually reading it now 🙂
    You could probably do
   as per the instructions on [https://github.com/ankitpokhrel/Dynamic-Featured-Image/wiki/Retrieving-data-in-a-theme](https://github.com/ankitpokhrel/Dynamic-Featured-Image/wiki/Retrieving-data-in-a-theme)
 * I’ll try to install the plugin and get back to you.
 * /T
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[Contact Form 7] Is it possible to hold sending email after a feedback has been processed?](https://wordpress.org/support/topic/is-it-possible-to-hold-sending-email-after-a-feedback-has-been-processed/)
 *  [Tdude](https://wordpress.org/support/users/tdude/)
 * (@tdude)
 * [12 years, 3 months ago](https://wordpress.org/support/topic/is-it-possible-to-hold-sending-email-after-a-feedback-has-been-processed/#post-4640799)
 * Hi!
 * I’m interested in the same. To begin with you probably need to turn off ajax 
   on WPCF7 for testing. I’ve turned off everything in my current form in wp-config.
   php and added:
 *     ```
       define('WPCF7_LOAD_CSS', false);
       define('WPCF7_LOAD_JS', false);
       define('WPCF7_AUTOP', false); // removes WP paragraphs
       ```
   
 * When you’re done testing it might be a good idea to just add the css/js files
   to the actual page templates that contain forms. Check out [http://contactform7.com/loading-javascript-and-stylesheet-only-when-it-is-necessary/](http://contactform7.com/loading-javascript-and-stylesheet-only-when-it-is-necessary/)
 * I’ll check back if I have any success with this, but haven’t got time for a few
   days.
    Good luck, T
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[Contact Form 7] Bootstrap 3 Horizontal Form](https://wordpress.org/support/topic/bootstrap-3-horizontal-form-1/)
 *  [Tdude](https://wordpress.org/support/users/tdude/)
 * (@tdude)
 * [12 years, 3 months ago](https://wordpress.org/support/topic/bootstrap-3-horizontal-form-1/#post-4638737)
 * No, you insert the code inside the WPCF7 main form field, where you create your
   form in the plugin’s WP-admin (wp-admin/admin.php?page=wpcf7).
 * The plugin’s form field (called “Form”) accepts plain html, but to make it work
   the form fields need to be coded with WPCF7 shortcode.
 * Read up on it here: [http://contactform7.com/tag-syntax/](http://contactform7.com/tag-syntax/)
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[Contact Form 7] adding markup where I don't want it to…?](https://wordpress.org/support/topic/adding-markup-where-i-dont-want-it-to/)
 *  [Tdude](https://wordpress.org/support/users/tdude/)
 * (@tdude)
 * [12 years, 3 months ago](https://wordpress.org/support/topic/adding-markup-where-i-dont-want-it-to/#post-4636854)
 * Hi!
 * Try removing the <p> -tags by adding this on a separate line in your wp-config.
   php (in your root catalog where you installed WordPress):
 * `define( 'WPCF7_AUTOP', false );`
 * You can remove the WPCF7 JS and CSS by writing that instead of AUTOP (autoparagraph).
 * Good luck,
    T
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[Contact Form 7] Bootstrap 3 Horizontal Form](https://wordpress.org/support/topic/bootstrap-3-horizontal-form-1/)
 *  [Tdude](https://wordpress.org/support/users/tdude/)
 * (@tdude)
 * [12 years, 3 months ago](https://wordpress.org/support/topic/bootstrap-3-horizontal-form-1/#post-4638597)
 * Correction: You should add it to the form’s ADMIN in WPCF7.
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[Contact Form 7] Can't send any forms](https://wordpress.org/support/topic/cant-send-any-forms/)
 *  [Tdude](https://wordpress.org/support/users/tdude/)
 * (@tdude)
 * [12 years, 3 months ago](https://wordpress.org/support/topic/cant-send-any-forms/#post-4638596)
 * Ah, so you possibly didn’t have the php sendmail activated on your server. That
   should probably make a visible error in Wpcf7, but I’m not sure.
 * Good luck and all the best from Stockholm,
    T
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[Contact Form 7] Can't send any forms](https://wordpress.org/support/topic/cant-send-any-forms/)
 *  [Tdude](https://wordpress.org/support/users/tdude/)
 * (@tdude)
 * [12 years, 3 months ago](https://wordpress.org/support/topic/cant-send-any-forms/#post-4638595)
 * Hallo!
 * You seem to have set it up right. I get a “Danke schön” -message (without having
   selected any of the checkboxes). Maybe check the email address or your spam folder?
 * Tschüss,
    T
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[Contact Form 7] Bootstrap 3 Horizontal Form](https://wordpress.org/support/topic/bootstrap-3-horizontal-form-1/)
 *  [Tdude](https://wordpress.org/support/users/tdude/)
 * (@tdude)
 * [12 years, 3 months ago](https://wordpress.org/support/topic/bootstrap-3-horizontal-form-1/#post-4638582)
 * Hi!
 * Just add your Bootstrap code to the WPCF7 form. Something like this:
 *     ```
       <div class="form-group">
                   <label class="control-label" for="email">Your email</label>
                   <div class="controls">
                   [email* email /50 id:email class:form-control class:input-md placeholder "YOUR EMAIL"]
                   </div>
                 </div>
       ```
   
 * Note that you append several class declarations by just repeating the class:form-
   control class:input-md and so on.
 * Good luck!
    /T
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[Contact Form 7] Response in a Bootstrap modal](https://wordpress.org/support/topic/response-in-a-bootstrap-modal/)
 *  [Tdude](https://wordpress.org/support/users/tdude/)
 * (@tdude)
 * [12 years, 4 months ago](https://wordpress.org/support/topic/response-in-a-bootstrap-modal/#post-4620990)
 * Hi!
 * Somewhere on the web I found this snippet which you could try pasting into the
   lower most formfield called “Additional settings” in WPCF7. You could probably
   elaborate on it and you need to have proper Bootstrap markup with a div id called
   something like the below #myModal. I hope it helps:
 * `on_sent_ok: "jQuery('#myModal').modal('This is a response.')"`
 * Then there are these great tutorials:
    [http://code.tutsplus.com/tutorials/mini-guide-to-contact-form-7–wp-25086](http://code.tutsplus.com/tutorials/mini-guide-to-contact-form-7–wp-25086)
   [http://xaviesteve.com/3298/wordpress-contact-form-7-hook-unofficial-developer-documentation-and-examples/](http://xaviesteve.com/3298/wordpress-contact-form-7-hook-unofficial-developer-documentation-and-examples/)
 *   Forum: [Reviews](https://wordpress.org/support/forum/reviews/)
    In reply to:
   [[CP Contact Form with PayPal] Cripple ware](https://wordpress.org/support/topic/cripple-ware/)
 *  Thread Starter [Tdude](https://wordpress.org/support/users/tdude/)
 * (@tdude)
 * [12 years, 4 months ago](https://wordpress.org/support/topic/cripple-ware/#post-7828774)
 * Thanks for the reply. You should probably check your screen dumps here for features
   that are not mentioned 😉
 * /T
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[PayPal Framework] Tutorial](https://wordpress.org/support/topic/tutorial-6/)
 *  [Tdude](https://wordpress.org/support/users/tdude/)
 * (@tdude)
 * [12 years, 4 months ago](https://wordpress.org/support/topic/tutorial-6/#post-4206554)
 * Hmmm. Short tutorial? Examples? Anyone?
    Would be nice to have for asessment 
   if it’s worth pursuing.
 * Best regards,
    T
 *   Forum: [Fixing WordPress](https://wordpress.org/support/forum/how-to-and-troubleshooting/)
   
   In reply to: [permalinks issue Warning: preg_match()](https://wordpress.org/support/topic/permalinks-issue-warning-preg_match/)
 *  [Tdude](https://wordpress.org/support/users/tdude/)
 * (@tdude)
 * [12 years, 9 months ago](https://wordpress.org/support/topic/permalinks-issue-warning-preg_match/#post-3495662)
 * Hi!
 * Having the same issue and after some googling, there’s always a fix. The error
   seems to come from a regexp library on Apache server and versions 5.2x of PHP.
   It seems WPSC (and possibly other plugins) may use a more modern regular expressions
   library/search than is allowed.
 * It sucks to have hundreds of google links point at your friendly urls, but you
   get dead pages… so I found this thread with a very temporary fix: [http://wordpress.org/support/topic/upgraded-wordpress-to-36-next-gen-gallery-no-longer-workds](http://wordpress.org/support/topic/upgraded-wordpress-to-36-next-gen-gallery-no-longer-workds)
 * In short, you could open your wp-includes/class-wp.php and on line 204 and 205
   insert a “@” to turn off the regex error messages.
    Original code:
 *     ```
       if ( preg_match("#^$match#", $request_match, $matches) ||
       preg_match("#^$match#", urldecode($request_match), $matches) ) {
       ```
   
 * New code:
 *     ```
       if ( @preg_match("#^$match#", $request_match, $matches) ||
       @preg_match("#^$match#", urldecode($request_match), $matches) ) {
       ```
   
 * This fix won’t brake things that work, but you probably shouldn’t develop a plugin
   using it.
 * To really solve the problem, you should upgrade PHP to the latest version, but
   I know, your host sucks and won’t answer your requests, so don’t be a victim,
   change host!
 * All the best,
    T
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [save post and custom field from front end](https://wordpress.org/support/topic/save-post-and-custom-field-from-front-end/)
 *  Thread Starter [Tdude](https://wordpress.org/support/users/tdude/)
 * (@tdude)
 * [15 years, 7 months ago](https://wordpress.org/support/topic/save-post-and-custom-field-from-front-end/#post-1742963)
 * Oops. Tagging this “resolved” and bumping to coding/hacks.

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

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