Title: PayBas's Replies | WordPress.org

---

# PayBas

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

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

 Search replies:

## Forum Replies Created

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

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

 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[Participants Database] Call for Beta Testers](https://wordpress.org/support/topic/call-for-beta-testers/)
 *  [PayBas](https://wordpress.org/support/users/paybas/)
 * (@paybas)
 * [12 years, 6 months ago](https://wordpress.org/support/topic/call-for-beta-testers/#post-4273066)
 * `PHP Fatal error: Access to undeclared static property: Participants_Db::$css_prefix
   in /public_html/wp-content/themes/newstyle/templates/pdb-single-default.php on
   line 31`
 * When trying to use templates, even just copy-pasting your default templates to
   the styles dir.
 * And check your e-mail for my updated translation 😉
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[Participants Database] Frontend translation and templates options](https://wordpress.org/support/topic/frontend-translation-and-templates-options/)
 *  [PayBas](https://wordpress.org/support/users/paybas/)
 * (@paybas)
 * [12 years, 12 months ago](https://wordpress.org/support/topic/frontend-translation-and-templates-options/#post-3757327)
 * The best way to do this is to edit/add language files
 * Copy/duplicate one of the existing language .PO files such as:
    wp-content/plugins/
   participants-database/languages/participants-database-fr_FR.po
 * Rename the end part it to your language code (such as de_DE)
 * Open it with POEdit ( [http://www.poedit.net/download.php](http://www.poedit.net/download.php))
   and change what you need.
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[Participants Database] single record header title](https://wordpress.org/support/topic/single-record-header-title/)
 *  [PayBas](https://wordpress.org/support/users/paybas/)
 * (@paybas)
 * [13 years ago](https://wordpress.org/support/topic/single-record-header-title/#post-3735960)
 * [http://xnau.com/work-2/wordpress-plugins/participants-database/pdb-templates/](http://xnau.com/work-2/wordpress-plugins/participants-database/pdb-templates/)
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[Participants Database] Multiple Dropdown Filters](https://wordpress.org/support/topic/multiple-dropdown-filters/)
 *  [PayBas](https://wordpress.org/support/users/paybas/)
 * (@paybas)
 * [13 years ago](https://wordpress.org/support/topic/multiple-dropdown-filters/#post-3732716)
 * Are you talking about the admin panel or the front-end (template)?
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[Participants Database] CSV Field order](https://wordpress.org/support/topic/csv-field-order/)
 *  [PayBas](https://wordpress.org/support/users/paybas/)
 * (@paybas)
 * [13 years ago](https://wordpress.org/support/topic/csv-field-order/#post-3723688)
 * In the mean time, you could try this:
 * [http://www.winko-erades.nl/index.php?option=com_content&view=article&id=36:rearrange-columns-in-excel-using-vba&catid=16:vba&Itemid=5](http://www.winko-erades.nl/index.php?option=com_content&view=article&id=36:rearrange-columns-in-excel-using-vba&catid=16:vba&Itemid=5)
 * You can just run this script every thing you need to export a CSV
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[Participants Database] Help with signup template](https://wordpress.org/support/topic/help-with-signup-template/)
 *  [PayBas](https://wordpress.org/support/users/paybas/)
 * (@paybas)
 * [13 years ago](https://wordpress.org/support/topic/help-with-signup-template/#post-3708252)
 * Hmmmm… I don’t actually know. I’m just used to putting these kinds of scripts
   in the header.
 * But I think you can put it anywhere you want, as long as it’s after <?php wp_head();?
   > because jQuery needs to be loaded.
 * Maybe if you put the code at the very bottom of the signup template, you won’t
   even need to use
    `jQuery(document).ready(function(){`
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[Participants Database] Help with signup template](https://wordpress.org/support/topic/help-with-signup-template/)
 *  [PayBas](https://wordpress.org/support/users/paybas/)
 * (@paybas)
 * [13 years ago](https://wordpress.org/support/topic/help-with-signup-template/#post-3708249)
 * As long as you include the code AFTER <?php wp_head(); ?>, jQuery should be already
   loaded.
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[Participants Database] Help with signup template](https://wordpress.org/support/topic/help-with-signup-template/)
 *  [PayBas](https://wordpress.org/support/users/paybas/)
 * (@paybas)
 * [13 years ago](https://wordpress.org/support/topic/help-with-signup-template/#post-3708247)
 * This is a possible javascript/jQuery solution. Seems to work well. Include this
   in your header.
 *     ```
       <?php wp_head(); ?>
   
       <script type="text/javascript">
       jQuery(document).ready(function(){
       	jQuery('input[name="email2"]').parentsUntil('tbody').hide();
       	jQuery('input[name="email1"]').change(function () {
       		jQuery('input[name="email2"]').parentsUntil('tbody').show();
       	})
       })
       </script>
   
       </head>
       ```
   
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[Participants Database] Responsive CSS Formatting](https://wordpress.org/support/topic/responsive-css-formatting/)
 *  [PayBas](https://wordpress.org/support/users/paybas/)
 * (@paybas)
 * [13 years ago](https://wordpress.org/support/topic/responsive-css-formatting/#post-3653892)
 * Why are you using (max-width: 480px) ?
 * If you want some CSS to show on larger displays, you should use a min-width, 
   like:
 * [@media](https://wordpress.org/support/users/media/) screen and (min-width: 960px){
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[Participants Database] Search Problem](https://wordpress.org/support/topic/search-problem-8/)
 *  [PayBas](https://wordpress.org/support/users/paybas/)
 * (@paybas)
 * [13 years ago](https://wordpress.org/support/topic/search-problem-8/#post-3693211)
 * Care to post the solution?
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[Participants Database] Search Problem](https://wordpress.org/support/topic/search-problem-8/)
 *  [PayBas](https://wordpress.org/support/users/paybas/)
 * (@paybas)
 * [13 years ago](https://wordpress.org/support/topic/search-problem-8/#post-3693202)
 * I think you are the first to notice because I think most of us don’t use multiple
   different [pdb-list] shortcodes.
 * On my website for instance, I just use [pdb-list], with no attributes at all.
   I configure which columns to display by using the admin panel.
 * So many of us will not see this problem/bug until we start using multiple list
   shortcodes with different field displays.
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[Participants Database] Search Problem](https://wordpress.org/support/topic/search-problem-8/)
 *  [PayBas](https://wordpress.org/support/users/paybas/)
 * (@paybas)
 * [13 years ago](https://wordpress.org/support/topic/search-problem-8/#post-3693200)
 * It could be a bug introduced after 1.3.7 due to code changes.
 * What is the field type of “city”? Text line?
 * There are basically 2 ways to fix this:
    1) Only display search fields in the
   dropdown that are specifically passed/requested as shortcode attributes 2) Fix
   the search for non-display fields
 * The second one obviously would be better, but both will require code changes.
   Wish I could help 😉
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[Participants Database] Search Problem](https://wordpress.org/support/topic/search-problem-8/)
 *  [PayBas](https://wordpress.org/support/users/paybas/)
 * (@paybas)
 * [13 years ago](https://wordpress.org/support/topic/search-problem-8/#post-3693196)
 * I think it’s a bug in the plugin, but you could do this:
 * If you set the “display column” to 0 for “city” in the “manage database fields”
   admin page, it should disappear from the search field dropdown.
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[Participants Database] database group](https://wordpress.org/support/topic/database-group/)
 *  [PayBas](https://wordpress.org/support/users/paybas/)
 * (@paybas)
 * [13 years ago](https://wordpress.org/support/topic/database-group/#post-3696130)
 * Can’t you simply use the checkboxes in the “signup” column on the “manage database
   fields” admin page?
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[Participants Database] How to: create a search widget?](https://wordpress.org/support/topic/how-to-create-a-search-widget/)
 *  Thread Starter [PayBas](https://wordpress.org/support/users/paybas/)
 * (@paybas)
 * [13 years ago](https://wordpress.org/support/topic/how-to-create-a-search-widget/#post-3676218)
 * For future reference, and other people that might be interested in this:
 * You can simply use the standard text widget which is available in WordPress by
   default. It accepts HTML code.
 * Using this code should work. It creates a search form inside a widget, so your
   visitors can search your participants database from any page/post on your website(
   provided the widget is visible):
 *     ```
       <form action="http://mywebsite.com/page/pdb-list-page/" method="post">
       	<input type="hidden" name="search_field" value="last_name">
       	<input type="hidden" name="sortstring" value="birth_date">
       	<input type="hidden" name="orderstring" value="desc">
       	<input type="hidden" name="operator" value="LIKE">
       	<input type="text" name="value" value="">
       	<input type="submit" name="submit" value="Search">
       	<!--<input type="image" name="submit" alt="submit" src="http://mywebsite.com/button.jpg">-->
       </form>
       ```
   
 * I included an option to have the submit button as an image, but it doesn’t seem
   to work. I’ll update this as soon as I figure out what’s going on.

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

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