Title: fvl2000's Replies | WordPress.org

---

# fvl2000

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

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

 Search replies:

## Forum Replies Created

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

 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [Rating programmatically a new article with GD Star Rating](https://wordpress.org/support/topic/rating-programmatically-a-new-article-with-gd-star-rating/)
 *  Thread Starter [fvl2000](https://wordpress.org/support/users/fvl2000/)
 * (@fvl2000)
 * [14 years, 1 month ago](https://wordpress.org/support/topic/rating-programmatically-a-new-article-with-gd-star-rating/#post-2640618)
 * I think I’ve got it:
 * `gdsrBlgDB::save_vote($post_id, $user_ID, $ip, $ua, $vote, $comment_id);`
 * Insert in the theme
    `wp_gdsr_comment_integrate_standard_result(get_comment_ID());`
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [Rating programmatically a new article with GD Star Rating](https://wordpress.org/support/topic/rating-programmatically-a-new-article-with-gd-star-rating/)
 *  Thread Starter [fvl2000](https://wordpress.org/support/users/fvl2000/)
 * (@fvl2000)
 * [14 years, 1 month ago](https://wordpress.org/support/topic/rating-programmatically-a-new-article-with-gd-star-rating/#post-2640613)
 * I’ve got it partially:
 * `gdsrBlgDB::save_vote($post_id, $user_ID, $ip, $ua, $vote);`
 * Now I need to see the rating for the post for each voter near their comment. 
   So I need to find the missing class part to call.
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [Removing Quick Edit](https://wordpress.org/support/topic/removing-quick-edit/)
 *  [fvl2000](https://wordpress.org/support/users/fvl2000/)
 * (@fvl2000)
 * [15 years, 7 months ago](https://wordpress.org/support/topic/removing-quick-edit/#post-1360085)
 * You can insert this code in a plugin. This will remove the quick edit from wp-
   admin/edit.php
 *     ```
       function remove_quick_edit( $actions ) {
       unset($actions['inline hide-if-no-js']);
       return $actions;
       }
       add_filter('post_row_actions','remove_quick_edit',10,1);
       ```
   
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [Hide Some Media Upload Buttons/Functions](https://wordpress.org/support/topic/hide-some-media-upload-buttonsfunctions/)
 *  [fvl2000](https://wordpress.org/support/users/fvl2000/)
 * (@fvl2000)
 * [15 years, 7 months ago](https://wordpress.org/support/topic/hide-some-media-upload-buttonsfunctions/#post-1472242)
 * [@superann](https://wordpress.org/support/users/superann/) I can’t make it work:/
   
   I’m using this one with WP3.01 without any problem:
 *     ```
       function rm_upld() {
       return;
       }
   
       add_filter('media_upload_tabs', 'rm_upld', 1, 2);
       ```
   
 *   Forum: [Fixing WordPress](https://wordpress.org/support/forum/how-to-and-troubleshooting/)
   
   In reply to: [Only author posts approve comments](https://wordpress.org/support/topic/only-author-posts-approve-comments/)
 *  [fvl2000](https://wordpress.org/support/users/fvl2000/)
 * (@fvl2000)
 * [15 years, 7 months ago](https://wordpress.org/support/topic/only-author-posts-approve-comments/#post-1438721)
 *   Forum: [Hacks](https://wordpress.org/support/forum/plugins-and-hacks/hacks/)
   
   In reply to: [WordPress doesn't recognize my custom taxonomy](https://wordpress.org/support/topic/wordpress-doesnt-recognize-my-custom-taxonomy/)
 *  [fvl2000](https://wordpress.org/support/users/fvl2000/)
 * (@fvl2000)
 * [15 years, 8 months ago](https://wordpress.org/support/topic/wordpress-doesnt-recognize-my-custom-taxonomy/#post-1614595)
 * If you check the existence of the custom taxonomy before it has been registered
   it returns _false_
    **After** your custom taxonomies have been registered you
   can use:
 * add_action( ‘init’, ‘check’, 0 );
    function check() { if (taxonomy_exists(‘my_taxonomy’)){
   print “YES”; } else { print ‘NO’; } }
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [Hide Some Media Upload Buttons/Functions](https://wordpress.org/support/topic/hide-some-media-upload-buttonsfunctions/)
 *  [fvl2000](https://wordpress.org/support/users/fvl2000/)
 * (@fvl2000)
 * [15 years, 8 months ago](https://wordpress.org/support/topic/hide-some-media-upload-buttonsfunctions/#post-1472236)
 * Hi. No pluggable functions can do that (WP3.0) You need to hack
    wp-admin/includes/
   media.php wp-admin/edit-attachements-row.php
 * I’ve created a quick post for that on
    [http://blog.mondayinthesun.com.au/2010/09/wp-hide-photos-uploaded-by-other-in.html](http://blog.mondayinthesun.com.au/2010/09/wp-hide-photos-uploaded-by-other-in.html)
 * Hope this help.
 *   Forum: [Fixing WordPress](https://wordpress.org/support/forum/how-to-and-troubleshooting/)
   
   In reply to: [How to make post on different pages](https://wordpress.org/support/topic/how-to-make-post-on-different-pages/)
 *  [fvl2000](https://wordpress.org/support/users/fvl2000/)
 * (@fvl2000)
 * [17 years, 8 months ago](https://wordpress.org/support/topic/how-to-make-post-on-different-pages/#post-643050)
 * Hi,
 * Here is an example:
 * Once your posts are in their right category eg: Podcast and News and you have
   2 different pages PODCAST and NEWS that will display only posts from their correspondant
   category (via a page template) you can do something like:
 *     ```
       <li class="<?php if (is_home()) { ?>current_page_item<?php } else { ?>page_item<?php } ?>"><a href="http://www.mydomainname.com/wordpress/">HOME</a></li>
   
       <li class="<?php if (
       is_page('7')
       || (is_single()
       && !in_category('Podcast'))//exclude posts from the podcast cat
   
       ){ ?>current_page_item<?php } else { ?>page_item<?php } ?>"><a href="http://www.mydomainname.com/wordpress/news">News</a></li>
   
       <li class="<?php if (
       is_page('66')
       || (is_single()
       && in_category('Podcast'))
   
       ){ ?>current_page_item<?php } else { ?>page_item<?php } ?>"><a href="http://www.mydomainname.com/wordpress/podcast">Podcast</a></li>
   
       <li class="<?php if (
       is_page('31')
   
       ){ ?>current_page_item<?php } else { ?>page_item<?php } ?>"><a href="http://www.mydomainname.com/wordpress/about">ABOUT</a></li>
       ```
   
 * After that you can also create a filter that will drive each post from a selected
   category into a custom template.

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