Title: MilkyTech's Replies | WordPress.org

---

# MilkyTech

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

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

 Search replies:

## Forum Replies Created

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

 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[Portfolio Gallery - Photo Gallery] Gallery/Content Popup – Thumbnail image sizes](https://wordpress.org/support/topic/gallerycontent-popup-thumbnail-image-sizes/)
 *  Thread Starter [MilkyTech](https://wordpress.org/support/users/milkytech/)
 * (@milkytech)
 * [10 years, 2 months ago](https://wordpress.org/support/topic/gallerycontent-popup-thumbnail-image-sizes/#post-6812296)
 * Yes, turns out it is very easy to manipulate the code. Huge-IT support was awesome!
   They actually recoded the plugin for me and emailed me my own custom copy of 
   it. Then I was able to compare what they sent me to the original files and figured
   out where the changes were made and I was then able to make a few more changes
   to customize it to my specific needs!
    portfolio_front_end_view.php is the file
   that contained the styling for the “Gallery/Content Popup View”
 *   Forum: [Themes and Templates](https://wordpress.org/support/forum/themes-and-templates/)
   
   In reply to: [[Theme:Nevada]Size of Menu Text](https://wordpress.org/support/topic/themenevadasize-of-menu-text/)
 *  Thread Starter [MilkyTech](https://wordpress.org/support/users/milkytech/)
 * (@milkytech)
 * [10 years, 4 months ago](https://wordpress.org/support/topic/themenevadasize-of-menu-text/#post-6817130)
 * I did but I figured it out and so tried to delete my post
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[Portfolio Gallery - Photo Gallery] Gallery/Content Popup – Thumbnail image sizes](https://wordpress.org/support/topic/gallerycontent-popup-thumbnail-image-sizes/)
 *  Thread Starter [MilkyTech](https://wordpress.org/support/users/milkytech/)
 * (@milkytech)
 * [10 years, 4 months ago](https://wordpress.org/support/topic/gallerycontent-popup-thumbnail-image-sizes/#post-6812117)
 * The only thumbnails there are. the small pictures on the right side of the popup
   window (Gallery/Content Popup View)
 *   Forum: [Themes and Templates](https://wordpress.org/support/forum/themes-and-templates/)
   
   In reply to: [An overiding style for links](https://wordpress.org/support/topic/an-overiding-style-for-links/)
 *  [MilkyTech](https://wordpress.org/support/users/milkytech/)
 * (@milkytech)
 * [11 years, 11 months ago](https://wordpress.org/support/topic/an-overiding-style-for-links/#post-4086452)
 * [@graphicscove](https://wordpress.org/support/users/graphicscove/)
    I’m having
   a similar issue. I understand why !important can correct the issue but I don’t
   understand why it happened in the first place. I was working on the site last
   night and the text-decoration and :hover was working fine but I guess I was messing
   around with some other css and when I get up this morning, chrome is overriding
   with a:-webkit-any-link. I can’t find anything I did to cause this but obviously
   I did something.
 *   Forum: [Fixing WordPress](https://wordpress.org/support/forum/how-to-and-troubleshooting/)
   
   In reply to: [Can't find file to add php code](https://wordpress.org/support/topic/cant-find-file-to-add-php-code/)
 *  Thread Starter [MilkyTech](https://wordpress.org/support/users/milkytech/)
 * (@milkytech)
 * [12 years, 11 months ago](https://wordpress.org/support/topic/cant-find-file-to-add-php-code/#post-3726564)
 * i tried that index.php and all that’s in there is this:
 *     ```
       <?php
       /**
        * Index
        *
        * Default home page blog
        *
        * v0.7 - Added php comments
        * v0.7 - Internationalized
        * v0.7 - Replaced default pagination with emm_paginate()
        * v2.0 - Remove sidebar for mobi
        * v2.1 - Fixed link
        * v2.3 - css grid class constant added
        * v2.3 - fixed mobi for child themes
        *
        * @author Tim Bednar
        * @version v1.0
       */
       ?>
       <?php get_header(); ?>
   
         <div id="content" class="<?php echo constant('ASHFORD_CONTENT_RIGHT_GRID');?>">
         <?php if(function_exists('wp_content_slider')) { wp_content_slider(); } ?>
           <?php if (have_posts()) : ?>
             <?php while (have_posts()) : the_post(); ?>
             <?php
               if(IS_MOBI=='false'){
                 include (TEMPLATEPATH . '/post_excerpt.php');
               } else {
                 include (ASHFORD_CHILD_DIR . '/post_list_mobi.php');
               }
             ?>
             <?php endwhile; ?>
           <?php else : ?>
             <?php  if (is_user_logged_in()){echo '<p class="hint"><a href="http://ashford.turtleinteractive.com/support" title="Get more hints">HINT &raquo;</a>: When you add more posts, they will be listed here. </p>';};?>
           <?php endif; ?>
           <?php if (function_exists("emm_paginate")) {
             emm_paginate();
           } else {?>
             <div id="paginate">
               <span class="paginate-previous"><?php next_posts_link('<span class="meta-nav">&laquo;</span> '.__('Older posts','ashford'), '10') ?></span>
               <span class="paginate-next"><?php previous_posts_link(__('Newer posts','ashford').'<span class="meta-nav">&raquo;</span>', '10') ?></span>
             </div>
           <?php }?>
         </div><!-- /#content -->
         <?php if (IS_MOBI=='false'){get_sidebar();} ?>
       <?php get_footer(); ?>
       ```
   
 * You can see where I threw that line of code in at the start of the content div.
   I saved this file to the /themes/energy_pros/ folder and it didn’t work
 *   Forum: [Fixing WordPress](https://wordpress.org/support/forum/how-to-and-troubleshooting/)
   
   In reply to: [Can't find file to add php code](https://wordpress.org/support/topic/cant-find-file-to-add-php-code/)
 *  Thread Starter [MilkyTech](https://wordpress.org/support/users/milkytech/)
 * (@milkytech)
 * [12 years, 11 months ago](https://wordpress.org/support/topic/cant-find-file-to-add-php-code/#post-3726537)
 * it is a custom theme based on Ashford or hero or both, i don’t know. Someone 
   started this site and now I’ve been given the god awful task of figuring out 
   wordpress and fixing the site.
    In the /wp-content/themes/ folder there is 4 
   theme folders and 1 index.php file that only contains “silence is golden”. The
   4 theme folders are: ashford ashford_pro Energy_Pros placeholder
 * i would think the file I need to add the code to is in the Energy_Pros folder,
   but there is no index.php in there, just function.php, meta-page.php and a bunch
   of post-blahblahblah.php’s. In-fact, I can’t figure for the life of me where 
   any of the website is. if you go to the site energypros.com, there are like 10
   webpages! where is all that data on the server? I have opened almost every .php
   file on the server in dreamweaver and none of them contain anything remotely 
   resembling the visible site. sooo frustrating!

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