Title: zeniph's Replies | WordPress.org

---

# zeniph

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

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

 Search replies:

## Forum Replies Created

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

1 [2](https://wordpress.org/support/users/zeniph/replies/page/2/?output_format=md)
[3](https://wordpress.org/support/users/zeniph/replies/page/3/?output_format=md)…
[8](https://wordpress.org/support/users/zeniph/replies/page/8/?output_format=md)
[9](https://wordpress.org/support/users/zeniph/replies/page/9/?output_format=md)
[10](https://wordpress.org/support/users/zeniph/replies/page/10/?output_format=md)
[→](https://wordpress.org/support/users/zeniph/replies/page/2/?output_format=md)

 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[Insert Pages] Insert pop up not happening.](https://wordpress.org/support/topic/insert-pop-up-not-happening/)
 *  [zeniph](https://wordpress.org/support/users/zeniph/)
 * (@zeniph)
 * [11 years, 8 months ago](https://wordpress.org/support/topic/insert-pop-up-not-happening/#post-4913169)
 * Cool thanks, this really is one of those plugins that I cant live with out now.
 * The base functionality is really great, getting the insert button working again
   would be even greater.
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[Insert Pages] Insert pop up not happening.](https://wordpress.org/support/topic/insert-pop-up-not-happening/)
 *  [zeniph](https://wordpress.org/support/users/zeniph/)
 * (@zeniph)
 * [11 years, 10 months ago](https://wordpress.org/support/topic/insert-pop-up-not-happening/#post-4913155)
 * Same issue
 * WordPress 3.9 included a large update to the TinyMCE WSYIWIG editor and the coding
   for adding buttons to the toolbar changed. Suspect it relates to that.
 * The shortcodes still work however and its not too hard to construct them manually.
 *   Forum: [Fixing WordPress](https://wordpress.org/support/forum/how-to-and-troubleshooting/)
   
   In reply to: [Plugin Install failed after migrating to live server](https://wordpress.org/support/topic/plugin-install-failed-after-migrating-to-live-server/)
 *  [zeniph](https://wordpress.org/support/users/zeniph/)
 * (@zeniph)
 * [12 years ago](https://wordpress.org/support/topic/plugin-install-failed-after-migrating-to-live-server/#post-4694905)
 * inside wp-config.php (and possibly in other theme/pluggin files too I guess) 
   look for anything defining the constant “WP_TEMP_DIR”. Something like the below:
 * `define('WP_TEMP_DIR', '/home/yoursiteusername/public_html/wp-content/uploads');`
 * its possible to override and hardcode the default temp upload value with this
 *   Forum: [Themes and Templates](https://wordpress.org/support/forum/themes-and-templates/)
   
   In reply to: [[nano blogger] Page Alignment](https://wordpress.org/support/topic/page-alignment-2/)
 *  [zeniph](https://wordpress.org/support/users/zeniph/)
 * (@zeniph)
 * [13 years, 1 month ago](https://wordpress.org/support/topic/page-alignment-2/#post-3659276)
 * The element #wrapper has the following CSS that contribute to the width:
 *     ```
       border: 1px solid #EDEDED;
       padding: 10px;
       width: 980px;
       ```
   
 * 980 + 10 + 10 + 1 + 1 = 1002px
 * From a screen width of 1024px you lose about 28px (varies depending on browser)
   in vertical scroll bar and browser chrome leaving you about 996px – unfortunately
   the wrapper is simply too wide for the browser viewport.
 * You could just remove padding: 10px; but it looks pretty bad. The simplest solution
   might be to add a media query targeting screens at or below 1024px and removing
   the padding only from them (though if your dealing with old laptops they may 
   have old browsers that dont support media queries….)
 * try adding this
 *     ```
       <style type="text/css">
       @media screen and (max-width:1024px) {
         #wrapper {
           padding: 0px;
         }
       }
       </style>
       ```
   
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[WP FullCalendar] Removing event start times in WP FullCalendar](https://wordpress.org/support/topic/plugin-wp-fullcalendar-removing-event-start-times-in-fullcalendar/)
 *  [zeniph](https://wordpress.org/support/users/zeniph/)
 * (@zeniph)
 * [13 years, 5 months ago](https://wordpress.org/support/topic/plugin-wp-fullcalendar-removing-event-start-times-in-fullcalendar/#post-2976288)
 * Just place it in your theme’s style.css
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[WP FullCalendar] Removing event start times in WP FullCalendar](https://wordpress.org/support/topic/plugin-wp-fullcalendar-removing-event-start-times-in-fullcalendar/)
 *  [zeniph](https://wordpress.org/support/users/zeniph/)
 * (@zeniph)
 * [13 years, 5 months ago](https://wordpress.org/support/topic/plugin-wp-fullcalendar-removing-event-start-times-in-fullcalendar/#post-2976286)
 * to remove completely:
 * `.fc-event-time{display:none}`
 *   Forum: [Fixing WordPress](https://wordpress.org/support/forum/how-to-and-troubleshooting/)
   
   In reply to: [Hacked by hacker. (one small issuse)](https://wordpress.org/support/topic/hacked-by-hacker-one-small-issuse/)
 *  [zeniph](https://wordpress.org/support/users/zeniph/)
 * (@zeniph)
 * [13 years, 6 months ago](https://wordpress.org/support/topic/hacked-by-hacker-one-small-issuse/#post-3192320)
 * try using your primary email instead of your username to recover your password
 *   Forum: [Themes and Templates](https://wordpress.org/support/forum/themes-and-templates/)
   
   In reply to: [Image Load Order](https://wordpress.org/support/topic/image-load-order/)
 *  [zeniph](https://wordpress.org/support/users/zeniph/)
 * (@zeniph)
 * [14 years, 11 months ago](https://wordpress.org/support/topic/image-load-order/#post-2099939)
 * I see you’ve also got 2 referenes to style.css in your HEAD – that may also be
   causing some double load issue perhaps. Not sure but I’d definately fix that 
   first.
 *   Forum: [Themes and Templates](https://wordpress.org/support/forum/themes-and-templates/)
   
   In reply to: [Image Load Order](https://wordpress.org/support/topic/image-load-order/)
 *  [zeniph](https://wordpress.org/support/users/zeniph/)
 * (@zeniph)
 * [14 years, 11 months ago](https://wordpress.org/support/topic/image-load-order/#post-2099632)
 * nice looking design
 * Interlacing doesn’t have any effect for css background images – have to wait 
   until they are completely loaded until they display.
 * The browser kind of just tries to process things in the order in which it encounters
   them, plus there’s a bit of a delay while it loads and interprets the linked 
   CSS. You could perhaps try moving your key elements to be inline css above the
   css LINK tag in the HEAD so that they are referenced and loaded first.
 * Your images also seem pretty huge but I guess thats the rub for such a highly
   graphical design.
 * or you could try for some javascript solution and delay everything until all 
   or specific items have loaded. A bit of messing about I’ve found in the past 
   and you’d perhaps need to create a loading state also.
 *   Forum: [Themes and Templates](https://wordpress.org/support/forum/themes-and-templates/)
   
   In reply to: [My theme does not handle First Link Priority correctly.](https://wordpress.org/support/topic/my-theme-does-not-handle-first-link-priority-correctly/)
 *  [zeniph](https://wordpress.org/support/users/zeniph/)
 * (@zeniph)
 * [15 years ago](https://wordpress.org/support/topic/my-theme-does-not-handle-first-link-priority-correctly/#post-2043080)
 * though if you can edit the style sheet your permissions are most likely OK..
 *   Forum: [Themes and Templates](https://wordpress.org/support/forum/themes-and-templates/)
   
   In reply to: [My theme does not handle First Link Priority correctly.](https://wordpress.org/support/topic/my-theme-does-not-handle-first-link-priority-correctly/)
 *  [zeniph](https://wordpress.org/support/users/zeniph/)
 * (@zeniph)
 * [15 years ago](https://wordpress.org/support/topic/my-theme-does-not-handle-first-link-priority-correctly/#post-2043079)
 * Hi, sorry I’ve only ever used FTP to update themes – never used the built in 
   theme editor.
 * It sounds like you may have a [permissions](http://codex.wordpress.org/Changing_File_Permissions)
   issue with the themes folder/files not allowing you to update – if so you’d need
   a FTP program to rectify that (but if you get that far you might as well just
   update the files on your PC and upload them)
 *   Forum: [Themes and Templates](https://wordpress.org/support/forum/themes-and-templates/)
   
   In reply to: [My theme does not handle First Link Priority correctly.](https://wordpress.org/support/topic/my-theme-does-not-handle-first-link-priority-correctly/)
 *  [zeniph](https://wordpress.org/support/users/zeniph/)
 * (@zeniph)
 * [15 years ago](https://wordpress.org/support/topic/my-theme-does-not-handle-first-link-priority-correctly/#post-2043071)
 * Hi DiDe
 * Well you were right it is a theme issue… but I’d probably say that how you craft
   your internal links in your content will have a bigger effect on SEO than this.
 * To implement it for your site do the following:
 * probably in header.php delete the logo image IMG tag and change to:
 *     ```
       <div class="left" id="logo">
       <a href="http://yoursite">Edmonton Home Builders and some other keywords for seo</a>
       </div>
       ```
   
 * in style.css replace existing #logo with this:
 *     ```
       #logo {
           background: url("images//MHI_Banner D.jpg") no-repeat scroll 0 0 transparent;
           height: 150px;
           text-indent: -1000px;
           width: 960px;
       }
       ```
   
 * Wont hurt and it’s good SEO practice to have the most relevevant terms come first
   in the html but I agree with Chip and dont think it will make any major difference
   to ranking – 1 single quality inbound link can have more effect that 1000 (or
   10000000) internal cross links.
 *   Forum: [Fixing WordPress](https://wordpress.org/support/forum/how-to-and-troubleshooting/)
   
   In reply to: [Correct way to allow nbsp entity in TinyMCE?](https://wordpress.org/support/topic/correct-way-to-allow-nbsp-entity-in-tinymce/)
 *  [zeniph](https://wordpress.org/support/users/zeniph/)
 * (@zeniph)
 * [15 years, 3 months ago](https://wordpress.org/support/topic/correct-way-to-allow-nbsp-entity-in-tinymce/#post-1506654)
 * just further to what Karl says above (and for my own future reference) you can
   add a function to your themes functions.php file like the below.
 * In this example I’m pretty much killing off every HTML rewritting feature that
   tinyMCE does (which for many people may be a bad idea but I have my reasons).
   Have added in also how to add the entities values asked by mcbsys.
 *     ```
       function change_mce_options($initArray) {
   
       	$initArray['verify_html'] = false;
       	$initArray['cleanup_on_startup'] = false;
       	$initArray['cleanup'] = false;
       	$initArray['forced_root_block'] = false;
       	$initArray['validate_children'] = false;
       	$initArray['remove_redundant_brs'] = false;
       	$initArray['remove_linebreaks'] = false;
       	$initArray['force_p_newlines'] = false;
       	$initArray['force_br_newlines'] = false;
       	$initArray['fix_table_elements'] = false;
   
       	$initArray['entities'] = '160,nbsp,38,amp,60,lt,62,gt';	
   
       	return $initArray;
       }
   
       add_filter('tiny_mce_before_init', 'change_mce_options');
       ```
   
 * the full list of values you can adjust are here
    [tinymce.moxiecode.com/wiki.php/Configuration](http://tinymce.moxiecode.com/wiki.php/Configuration)
 *   Forum: [Fixing WordPress](https://wordpress.org/support/forum/how-to-and-troubleshooting/)
   
   In reply to: [Blank Permalink Admin Page after changing permalink type](https://wordpress.org/support/topic/blank-permalink-admin-page-after-changing-permalink-type/)
 *  [zeniph](https://wordpress.org/support/users/zeniph/)
 * (@zeniph)
 * [15 years, 7 months ago](https://wordpress.org/support/topic/blank-permalink-admin-page-after-changing-permalink-type/page/3/#post-1360838)
 * no worries all – glad was of assistance
 * I’m yet to try it but it sounds like AFreeman’s (the original poster) solution
   above of increasing memory for PHP is the true fix – better than my hack to the
   core.
 *   Forum: [Themes and Templates](https://wordpress.org/support/forum/themes-and-templates/)
   
   In reply to: [Jquery Slideshow](https://wordpress.org/support/topic/jquery-slideshow/)
 *  [zeniph](https://wordpress.org/support/users/zeniph/)
 * (@zeniph)
 * [15 years, 10 months ago](https://wordpress.org/support/topic/jquery-slideshow/#post-1580546)
 * your jQuery looks to be working fine, you just dont have any images in the HTML
   to manipluate – just empty A tags

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

1 [2](https://wordpress.org/support/users/zeniph/replies/page/2/?output_format=md)
[3](https://wordpress.org/support/users/zeniph/replies/page/3/?output_format=md)…
[8](https://wordpress.org/support/users/zeniph/replies/page/8/?output_format=md)
[9](https://wordpress.org/support/users/zeniph/replies/page/9/?output_format=md)
[10](https://wordpress.org/support/users/zeniph/replies/page/10/?output_format=md)
[→](https://wordpress.org/support/users/zeniph/replies/page/2/?output_format=md)