Hey everyone,
Im pretty new to php so I need some help with this one… I would like to have the page title appear on my featured images on mouse hover. Currently, my theme has an option in the admin panel to set text for the featured image on hover, but it is the same for all the images (VIEW PROJECT) in the portfolio gallery on my home page.
The website can be seen here… http://www.tylerbeckdesign.com
I would like it to be like this… http://www.lukebott.com/ (click the work or play tab below slider to see images)
It must have something to do with this bit of code from template-portfolio.php file because the css for #portfolio.ext.p is kept there in my style.css.
[php]" rel=“bookmark” title="<?php printf(__('Permanent Link to %s', 'wpzoom'), get_the_title()); ?>">
<?php get_the_image( array( 'size' => 'portfolio-thumb', 'width' => 285, 'height' => 190, 'link_to_post' => false ) ); ?> <?php echo option::get('portfolio_project_title'); ?> [/php]I have seen other people posting about this on the forums, and I tried pasting in the code that worked for them, but it seems that my admin panel is overriding my custom code to display the page name on hover and goes back to the default VIEW PROJECT text on hover for all images.
It’s been pretty frustrating for me since wpzoom won’t help me because this is considered a “customization”.
Thanks in advance for your replies.