Title: issy-m's Replies | WordPress.org

---

# issy-m

  [  ](https://wordpress.org/support/users/issy-m/)

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

 Search replies:

## Forum Replies Created

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

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

 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[Easy Invitation Codes] Case bug in back-end.php](https://wordpress.org/support/topic/case-bug-in-back-endphp/)
 *  [issy-m](https://wordpress.org/support/users/issy-m/)
 * (@issy-m)
 * [10 years, 6 months ago](https://wordpress.org/support/topic/case-bug-in-back-endphp/#post-6554828)
 * Hello,
    I need to know how to fix this. When I create custom codes, it saves 
   them in lowercase and when user goes to use code to register they get “Error,
   wrong invitation code”. It seems that the registration form “code” filed requires
   UPPERCASE? “strtoupper”
 * Please advise.
 *   Forum: [Fixing WordPress](https://wordpress.org/support/forum/how-to-and-troubleshooting/)
   
   In reply to: [Video embedding in wordpress](https://wordpress.org/support/topic/video-embedding-in-wordpress/)
 *  [issy-m](https://wordpress.org/support/users/issy-m/)
 * (@issy-m)
 * [16 years, 3 months ago](https://wordpress.org/support/topic/video-embedding-in-wordpress/#post-1346999)
 * The result was; no border just the video.
    [embed]http://www.youtube.com/watch?
   v=YFxZo4pB_ZE&border=1&color1=0x5d1719&color2=0xcd311b[/embed]
 * Any other suggestions?
 * Thank you
 *   Forum: [Fixing WordPress](https://wordpress.org/support/forum/how-to-and-troubleshooting/)
   
   In reply to: [Video embedding in wordpress](https://wordpress.org/support/topic/video-embedding-in-wordpress/)
 *  [issy-m](https://wordpress.org/support/users/issy-m/)
 * (@issy-m)
 * [16 years, 3 months ago](https://wordpress.org/support/topic/video-embedding-in-wordpress/#post-1346992)
 * How about if I want to add a frame to the video? what files do I need to edit
   to achieve this?
 * [embed border="1" color1="0x5d1719" color2="0xcd311b"]Youtube video[/embed]
 * this is the original code from youtube:
    [http://www.youtube.com/v/cOWC8Fq2aNU&border=1&color1=0x5d1719&color2=0xcd311b](http://www.youtube.com/v/cOWC8Fq2aNU&border=1&color1=0x5d1719&color2=0xcd311b)
 * Thank you
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[Plugin: Wordtube] video shortcode in custom field](https://wordpress.org/support/topic/plugin-wordtube-video-tag-in-custom-field/)
 *  [issy-m](https://wordpress.org/support/users/issy-m/)
 * (@issy-m)
 * [17 years ago](https://wordpress.org/support/topic/plugin-wordtube-video-tag-in-custom-field/#post-973270)
 * take a look at this post here for solution.
    [http://wordpress.org/support/topic/238643?replies=3](http://wordpress.org/support/topic/238643?replies=3)
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[Plugin: Custom Field Template] shortcode](https://wordpress.org/support/topic/plugin-custom-field-template-shortcode/)
 *  [issy-m](https://wordpress.org/support/users/issy-m/)
 * (@issy-m)
 * [17 years ago](https://wordpress.org/support/topic/plugin-custom-field-template-shortcode/#post-973269)
 * I forgot to mention about the shortcode, it would be something like this in your
   custom field.
    [playlist id=1]
 * Have fun…
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[Plugin: Custom Field Template] shortcode](https://wordpress.org/support/topic/plugin-custom-field-template-shortcode/)
 *  [issy-m](https://wordpress.org/support/users/issy-m/)
 * (@issy-m)
 * [17 years ago](https://wordpress.org/support/topic/plugin-custom-field-template-shortcode/#post-973268)
 * Sure you can
    Here’s what you have to do. place this in your functions.php file
   <?php
 * $new_meta_boxes =
    array ( “contact_wp_info” => array ( “name” => “Video”, “std”
   => “”, “title” => “Featured Youtube Video”, “description” => “” ) );
 * function new_meta_boxes()
    { global $post, $new_meta_boxes; $wpcm_tab_index =
   1000; foreach($new_meta_boxes as $meta_box) { $meta_box_value = get_post_meta(
   $post->ID, $meta_box[‘name’].’_wpcm_value’, true); if($meta_box_value == “”) 
   $meta_box_value = $meta_box[‘std’]; echo'<input type=”hidden” name=”‘.$meta_box[‘
   name’].’_noncename” id=”‘.$meta_box[‘name’].’_noncename” value=”‘.wp_create_nonce(
   plugin_basename(__FILE__) ).'” />’; echo'<p><label style=”letter-spacing:1px;
   text-transform:uppercase; color:#777;” for=”‘.$meta_box[‘name’].’_wpcm_value”
   >’.$meta_box[‘title’].'</label>‘; echo'<input style=”padding:4px; font-weight:
   normal; border-top:1px solid #ccc; border-right:1px solid #ddd; border-bottom:
   1px solid #ddd; border-left:1px solid #ccc;” type=”text” name=”‘.$meta_box[‘name’].’
   _wpcm_value” value=”‘.$meta_box_value.'” size=”55″ tabindex=”‘.$wpcm_tab_index.'”/
   ></p>’; $wpcm_tab_index++; } }
 * function create_meta_box()
    { global $theme_name; if ( function_exists(‘add_meta_box’)){
   add_meta_box(‘new-meta-boxes’, ‘Media Information’, ‘new_meta_boxes’, ‘post’,‘
   normal’, ‘high’); } }
 * function save_postdata( $post_id )
    { global $post, $new_meta_boxes; foreach(
   $new_meta_boxes as $meta_box) { // Verify if ( !wp_verify_nonce( $_POST[$meta_box[‘
   name’].’_noncename’], plugin_basename(__FILE__) )) { return $post_id; } if ( ‘
   page’ == $_POST[‘post_type’] ) { if ( !current_user_can( ‘edit_page’, $post_id))
   return $post_id; } else { if ( !current_user_can( ‘edit_post’, $post_id )) return
   $post_id; }
 *  $data = $_POST[$meta_box[‘name’].’_wpcm_value’];
 *  if(get_post_meta($post_id, $meta_box[‘name’].’_wpcm_value’) == “”)
    add_post_meta(
   $post_id, $meta_box[‘name’].’_wpcm_value’, $data, true); elseif($data != get_post_meta(
   $post_id, $meta_box[‘name’].’_wpcm_value’, true)) update_post_meta($post_id, 
   $meta_box[‘name’].’_wpcm_value’, $data); elseif($data == “”) delete_post_meta(
   $post_id, $meta_box[‘name’].’_wpcm_value’, get_post_meta($post_id, $meta_box[‘
   name’].’_wpcm_value’, true)); } }
 * add_action(‘admin_menu’, ‘create_meta_box’);
    add_action(‘save_post’, ‘save_postdata’);
 * ?>
 * Then in your single.php file place the following.
    <div class=”video”> <?php 
   $videos = get_post_meta($post->ID, ‘videos_wpcm_value’, true); ?> <?php $galx
   = $videos; $galx = apply_filters(‘the_content’, $galx ); echo $galx; ?> </div
   >
 * Hope this works for you
 * Happy coding…
 *   Forum: [Fixing WordPress](https://wordpress.org/support/forum/how-to-and-troubleshooting/)
   
   In reply to: [Single quotes replaced with double quotes](https://wordpress.org/support/topic/single-quotes-replaced-with-double-quotes/)
 *  [issy-m](https://wordpress.org/support/users/issy-m/)
 * (@issy-m)
 * [17 years ago](https://wordpress.org/support/topic/single-quotes-replaced-with-double-quotes/#post-875698)
 * You can also add this to your .htaccess file
 * # BEGIN WordPress
    <IfModule mod_rewrite.c> RewriteEngine On php_value magic_quotes_gpc
   0 php_flag magic_quotes_runtime 0 </IfModule> # END WordPress
 * This worked for me!
 *   Forum: [Fixing WordPress](https://wordpress.org/support/forum/how-to-and-troubleshooting/)
   
   In reply to: [Dropdown Posts List](https://wordpress.org/support/topic/dropdown-posts-list/)
 *  [issy-m](https://wordpress.org/support/users/issy-m/)
 * (@issy-m)
 * [17 years ago](https://wordpress.org/support/topic/dropdown-posts-list/#post-938903)
 * What if I just wanted to display all posts under one specific category (i.e. 
   hacks).
 * Thank you
 *   Forum: [Fixing WordPress](https://wordpress.org/support/forum/how-to-and-troubleshooting/)
   
   In reply to: [Failure Installation with “](https://wordpress.org/support/topic/failure-installation-with/)
 *  [issy-m](https://wordpress.org/support/users/issy-m/)
 * (@issy-m)
 * [17 years, 1 month ago](https://wordpress.org/support/topic/failure-installation-with/#post-763063)
 * I’m getting a similar error on fresh install on PHP over IIS
    PHP Strict Standards:
   Declaration of Walker_Page::start_lvl() should be compatible with that of Walker::
   start_lvl() in C:\Inetpub\wwwroot\test.hostwhacker.com\wp-includes\classes.php
   on line 1199
 * Any help is greatly appreciate it!!!
 * Thank you
 *   Forum: [Installing WordPress](https://wordpress.org/support/forum/installation/)
   
   In reply to: [“Sorry, that key does not appear to be valid.”](https://wordpress.org/support/topic/sorry-that-key-does-not-appear-to-be-valid/)
 *  [issy-m](https://wordpress.org/support/users/issy-m/)
 * (@issy-m)
 * [17 years, 1 month ago](https://wordpress.org/support/topic/sorry-that-key-does-not-appear-to-be-valid/page/2/#post-775291)
 * Otto42,
    that hack was a life saver!!
 * Thank you
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [You do not have sufficient permissions to access this page](https://wordpress.org/support/topic/you-do-not-have-sufficient-permissions-to-access-this-page-15/)
 *  [issy-m](https://wordpress.org/support/users/issy-m/)
 * (@issy-m)
 * [17 years, 2 months ago](https://wordpress.org/support/topic/you-do-not-have-sufficient-permissions-to-access-this-page-15/#post-945705)
 * Here’s the fix, make sure you back up your DB!!!
    happy coding [http://markjaquith.wordpress.com/2006/03/28/wordpress-error-you-do-not-have-sufficient-permissions-to-access-this-page/](http://markjaquith.wordpress.com/2006/03/28/wordpress-error-you-do-not-have-sufficient-permissions-to-access-this-page/)
 *   Forum: [Installing WordPress](https://wordpress.org/support/forum/installation/)
   
   In reply to: [You do not have sufficient permissions to access this page 2.6.1 > 2.7](https://wordpress.org/support/topic/you-do-not-have-sufficient-permissions-to-access-this-page-261-gt-27/)
 *  [issy-m](https://wordpress.org/support/users/issy-m/)
 * (@issy-m)
 * [17 years, 2 months ago](https://wordpress.org/support/topic/you-do-not-have-sufficient-permissions-to-access-this-page-261-gt-27/#post-941050)
 * Here’s the fix, make sure yo back up your DB!!!
    This fixed the issue on my site
   Happy coding
 * [http://markjaquith.wordpress.com/2006/03/28/wordpress-error-you-do-not-have-sufficient-permissions-to-access-this-page/](http://markjaquith.wordpress.com/2006/03/28/wordpress-error-you-do-not-have-sufficient-permissions-to-access-this-page/)
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[Plugin: Register Plus] Editors may edit unverified users](https://wordpress.org/support/topic/plugin-register-plus-editors-may-edit-unverified-users/)
 *  [issy-m](https://wordpress.org/support/users/issy-m/)
 * (@issy-m)
 * [17 years, 3 months ago](https://wordpress.org/support/topic/plugin-register-plus-editors-may-edit-unverified-users/#post-970773)
 * Excelente!!
 * Thank you
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [Lightbox 2 & JW FLV Player ?](https://wordpress.org/support/topic/lightbox-2-038-jw-flv-player/)
 *  [issy-m](https://wordpress.org/support/users/issy-m/)
 * (@issy-m)
 * [17 years, 3 months ago](https://wordpress.org/support/topic/lightbox-2-038-jw-flv-player/#post-853308)
 * You can try this awesome script.
    mediaboxAdvanced Based on Slimbox and the Mootools
   javascript library, mediaboxAdvanced can handle your images, videos, animations,
   social video sites, inline elements, and external pages with ease.
 * [http://iaian7.com/webcode/mediaboxAdvanced](http://iaian7.com/webcode/mediaboxAdvanced)
 * Have fun…
 *   Forum: [Fixing WordPress](https://wordpress.org/support/forum/how-to-and-troubleshooting/)
   
   In reply to: [Error in deleting (posts, images, categories)](https://wordpress.org/support/topic/error-in-deleting-posts-images-categories/)
 *  [issy-m](https://wordpress.org/support/users/issy-m/)
 * (@issy-m)
 * [17 years, 7 months ago](https://wordpress.org/support/topic/error-in-deleting-posts-images-categories/page/2/#post-730826)
 * MNguyen,
    Your suggestion worked for me!! I can delete all posts…
 * Thanks

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

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