Title: kevcpu's Replies | WordPress.org

---

# kevcpu

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

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

 Search replies:

## Forum Replies Created

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

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

 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[WORDPRESS VIDEO GALLERY] Wrong theme displays for video pages](https://wordpress.org/support/topic/wrong-theme-displays-for-video-pages/)
 *  Thread Starter [kevcpu](https://wordpress.org/support/users/kevcpu/)
 * (@kevcpu)
 * [11 years, 4 months ago](https://wordpress.org/support/topic/wrong-theme-displays-for-video-pages/#post-5714652)
 * I followed the example and logged into the wp-admin screen. I found the additional
   menu item called “Contus Video Gallery”. However, when I click on the link I 
   don’t see an option for setting the theme. There is a button entitled “View Video
   Gallery Item”, but when I click it takes my to a page that displays the video.
   Where do I edit the theme on the page?
 *   Forum: [Fixing WordPress](https://wordpress.org/support/forum/how-to-and-troubleshooting/)
   
   In reply to: [wp e-commerce: page for displaying all products per category](https://wordpress.org/support/topic/wp-e-commerce-page-for-displaying-all-products-per-category/)
 *  Thread Starter [kevcpu](https://wordpress.org/support/users/kevcpu/)
 * (@kevcpu)
 * [13 years, 2 months ago](https://wordpress.org/support/topic/wp-e-commerce-page-for-displaying-all-products-per-category/#post-3658082)
 * Will do.
 *   Forum: [Fixing WordPress](https://wordpress.org/support/forum/how-to-and-troubleshooting/)
   
   In reply to: [Shortcode form submission not working](https://wordpress.org/support/topic/shortcode-form-submission-not-working/)
 *  Thread Starter [kevcpu](https://wordpress.org/support/users/kevcpu/)
 * (@kevcpu)
 * [13 years, 9 months ago](https://wordpress.org/support/topic/shortcode-form-submission-not-working/#post-2998577)
 * It looks as if the page is refreshed, however.
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[WP MVC] [Plugin: WP MVC] Accessing fields other than foreign_keys in Join Tables](https://wordpress.org/support/topic/plugin-wp-mvc-accessing-fields-other-than-foreign_keys-in-join-tables/)
 *  [kevcpu](https://wordpress.org/support/users/kevcpu/)
 * (@kevcpu)
 * [13 years, 9 months ago](https://wordpress.org/support/topic/plugin-wp-mvc-accessing-fields-other-than-foreign_keys-in-join-tables/#post-2971070)
 * I am trying this same logic with the paginate function and I am having an issue.
   I am trying to perform a join that would allow me to pull back events based upon
   a specific speaker. Here is my code:
 *     ```
       $this->params['join'] = array(
                 'table' => '{prefix}events_speakers',
                 'on' => 'E.id = event_id',
                 'alias' => 'E');
   
       $this->params['conditions'] = array('is_public' => true, 'speaker_id' => 6);
   
       $collection = $this->model->paginate($this->params);
       ```
   
 * When I run this query, I am not getting any results back. I am testing this using
   the Events_calendar example. I added this code to the Events_Controller.
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[WP MVC] [Plugin: WP MVC] belongs_to_dropdown does not populate](https://wordpress.org/support/topic/plugin-wp-mvc-belongs_to_dropdown-does-not-populate/)
 *  Thread Starter [kevcpu](https://wordpress.org/support/users/kevcpu/)
 * (@kevcpu)
 * [13 years, 10 months ago](https://wordpress.org/support/topic/plugin-wp-mvc-belongs_to_dropdown-does-not-populate/#post-2970371)
 * I am trying this and to shed some additional light, here is my set_post method:
 *     ```
       private function set_post() {
       		$this->load_model('Post');
       		$posts = $this->Post->find(array('selects' => array('id', 'post_title')));
       		$this->set('posts', $posts);
   
       	}
       ```
   
 * In the dropdown I want to use the id field and the post_title as the text. Also,
   here is the call I am making to the belongs_to_dropdown:
 * `echo $this->form->belongs_to_dropdown('Post', $posts, array('style' => 'width:
   200px;', 'empty' => true, 'id' => 'drpPost', 'label' => 'Post connected to entry'));`
 * The dropdown populates and the text field is empty, but the id field is populated.
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[WP MVC] [Plugin: WP MVC] "Fatal Error: Field "name" not found for use in a form input"](https://wordpress.org/support/topic/plugin-wp-mvc-fatal-error-field-name-not-found-for-use-in-a-form-input/)
 *  Thread Starter [kevcpu](https://wordpress.org/support/users/kevcpu/)
 * (@kevcpu)
 * [13 years, 10 months ago](https://wordpress.org/support/topic/plugin-wp-mvc-fatal-error-field-name-not-found-for-use-in-a-form-input/#post-2965552)
 * Thanks. That solved it.
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[WP MVC] [Plugin: WP MVC] code generation utility wpmvc throwing error](https://wordpress.org/support/topic/plugin-wp-mvc-code-generation-utility-wpmvc/)
 *  Thread Starter [kevcpu](https://wordpress.org/support/users/kevcpu/)
 * (@kevcpu)
 * [13 years, 10 months ago](https://wordpress.org/support/topic/plugin-wp-mvc-code-generation-utility-wpmvc/#post-2956830)
 * Added this to wpmvc.php file and problem solved.
 * $_SERVER = array(
    “HTTP_HOST” => “[http://mysite.com&#8221](http://mysite.com&#8221);,“
   SERVER_NAME” => “[http://mysite.com&#8221](http://mysite.com&#8221);, “REQUEST_URI”
   => “/”, “REQUEST_METHOD” => “GET” );
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[WP MVC] [Plugin: WP MVC] code generation utility wpmvc throwing error](https://wordpress.org/support/topic/plugin-wp-mvc-code-generation-utility-wpmvc/)
 *  Thread Starter [kevcpu](https://wordpress.org/support/users/kevcpu/)
 * (@kevcpu)
 * [13 years, 10 months ago](https://wordpress.org/support/topic/plugin-wp-mvc-code-generation-utility-wpmvc/#post-2956827)
 * I tried that and here is what prints before the error messages:
 * Array
    ( [0] => ./core/wpmvc.php [1] => generate [2] => plugin [3] => TestApp)
 *   Forum: [Fixing WordPress](https://wordpress.org/support/forum/how-to-and-troubleshooting/)
   
   In reply to: [query categories and display associated information](https://wordpress.org/support/topic/query-categories-and-display-associated-information/)
 *  Thread Starter [kevcpu](https://wordpress.org/support/users/kevcpu/)
 * (@kevcpu)
 * [15 years, 10 months ago](https://wordpress.org/support/topic/query-categories-and-display-associated-information/#post-1624328)
 * I read the wp_list_categories page and do not see anything telling me how I can
   do this.
 *   Forum: [Fixing WordPress](https://wordpress.org/support/forum/how-to-and-troubleshooting/)
   
   In reply to: [query categories and display associated information](https://wordpress.org/support/topic/query-categories-and-display-associated-information/)
 *  Thread Starter [kevcpu](https://wordpress.org/support/users/kevcpu/)
 * (@kevcpu)
 * [15 years, 10 months ago](https://wordpress.org/support/topic/query-categories-and-display-associated-information/#post-1624183)
 * instead of displaying as a list I need it displayed in a aseries of div’s with
   the picture in the first div and the excerpt in the second div. I need to display
   three categories in this same fashion. Is this possible?
 *   Forum: [Fixing WordPress](https://wordpress.org/support/forum/how-to-and-troubleshooting/)
   
   In reply to: [joomla module position equivalent](https://wordpress.org/support/topic/joomla-module-position-equivalent/)
 *  Thread Starter [kevcpu](https://wordpress.org/support/users/kevcpu/)
 * (@kevcpu)
 * [15 years, 10 months ago](https://wordpress.org/support/topic/joomla-module-position-equivalent/#post-1619186)
 * Does wordpress have an equivalent to Joomla’s module position architecture? I
   need to define multiple positions on a page and be able to assign them to certain
   pages. Is this possible?
 *   Forum: [Fixing WordPress](https://wordpress.org/support/forum/how-to-and-troubleshooting/)
   
   In reply to: [how to remove line breaks and paragraphs from single page](https://wordpress.org/support/topic/how-to-remove-line-breaks-and-paragraphs-from-single-page/)
 *  Thread Starter [kevcpu](https://wordpress.org/support/users/kevcpu/)
 * (@kevcpu)
 * [15 years, 11 months ago](https://wordpress.org/support/topic/how-to-remove-line-breaks-and-paragraphs-from-single-page/#post-1549781)
 * That seems to fix the first issue but there seems to be break
    tags being added
   as well.
 *   Forum: [Fixing WordPress](https://wordpress.org/support/forum/how-to-and-troubleshooting/)
   
   In reply to: [[Contact Form 7]: How do I change where the contact form posts?](https://wordpress.org/support/topic/contact-form-7-how-do-i-change-where-the-contact-form-posts/)
 *  Thread Starter [kevcpu](https://wordpress.org/support/users/kevcpu/)
 * (@kevcpu)
 * [16 years ago](https://wordpress.org/support/topic/contact-form-7-how-do-i-change-where-the-contact-form-posts/#post-1510029)
 * Thank you.
 *   Forum: [Fixing WordPress](https://wordpress.org/support/forum/how-to-and-troubleshooting/)
   
   In reply to: [It is possible to have multiple sites under one wordpress project](https://wordpress.org/support/topic/it-is-possible-to-have-multiple-sites-under-one-wordpress-project/)
 *  Thread Starter [kevcpu](https://wordpress.org/support/users/kevcpu/)
 * (@kevcpu)
 * [16 years ago](https://wordpress.org/support/topic/it-is-possible-to-have-multiple-sites-under-one-wordpress-project/#post-1509914)
 * Something like that. I wan to separate the looks but have them all feed into 
   the same e-commerce solution.
 *   Forum: [Fixing WordPress](https://wordpress.org/support/forum/how-to-and-troubleshooting/)
   
   In reply to: [[Plugin: Contact Form 7] Insert contact name and email in database after successful submission](https://wordpress.org/support/topic/plugin-contact-form-7-insert-contact-name-and-email-in-database-after-successful-submission/)
 *  [kevcpu](https://wordpress.org/support/users/kevcpu/)
 * (@kevcpu)
 * [16 years, 1 month ago](https://wordpress.org/support/topic/plugin-contact-form-7-insert-contact-name-and-email-in-database-after-successful-submission/#post-1409104)
 * Is there a way to differentiate between two forms in the functions.php file?

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

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