jmlares
Forum Replies Created
-
Forum: Plugins
In reply to: [Plugin: NextGEN Gallery] Album link with the gallery popping up in an iframeRight, so I fixed the Thickbox issue, how can I get the gallery itself (when you click the album) to have a different layout? (like just a black background)
Forum: Plugins
In reply to: [Plugin: NextGEN Gallery] Album link with the gallery popping up in an iframeStill not understanding my issue?
Forum: Plugins
In reply to: [Plugin: NextGEN Gallery] Album link with the gallery popping up in an iframeAny update on this? Hopefully I’ve explained it properly.
Forum: Plugins
In reply to: [Plugin: NextGEN Gallery] Album link with the gallery popping up in an iframeNo, no, thickbox works perfectly. If you look at the top where all the CSS/JS includes are, you’ll see that they’re there:
<script type=’text/javascript’ src=’https://www.eadproductions.com/wp-includes/js/jquery/jquery.js?ver=1.3.2′></script>
This carries all the functions for thickbox.
<link rel=’stylesheet’ id=’thickbox-css’ href=’https://www.eadproductions.com/wp-includes/js/thickbox/thickbox.css?ver=20090514′ type=’text/css’ media=’all’ />
This styles the thickbox.
The coding that I’m sticking into the ngg-album-link class (which basically tells WordPress how to display an album) isn’t taking effect.
I’m basically adding a sort of wrapper that changes the way that the albums work when you click on them. I’m able to change the look of the thickbox, but when I try and give the property to your plugin, it just ignores it.
Forum: Plugins
In reply to: [Plugin: NextGEN Gallery] Album link with the gallery popping up in an iframeYes it is, I can add it via iframe via separate pages (if I out the gallery on another page), but what I need is it to be the albums on one page that open that way.
Thanks for getting in touch by the way.
Forum: Plugins
In reply to: [Plugin: NextGEN Gallery] Album link with the gallery popping up in an iframeBump.
Forum: Plugins
In reply to: [Plugin: NextGEN Gallery] Album link with the gallery popping up in an iframeReally would appreciate some help.
Forum: Your WordPress
In reply to: My portfolioYeah, yeah, I know. I thought that too when writing it out. I can build using the functions like in WordPress, but I’m not a guru at it.
Forum: Fixing WordPress
In reply to: Same wp_ user database between three sites?Still no luck.
Forum: Fixing WordPress
In reply to: Same wp_ user database between three sites?How could I go about doing this?
Forum: Fixing WordPress
In reply to: Same wp_ user database between three sites?There just HAS to be a way to do it.
Forum: Fixing WordPress
In reply to: Same wp_ user database between three sites?No, no, they’re able to connect. I”m on a bunxh of different resellers and stuff. I’ve got them to share the same database already, just want to get them to use the same “wp_” user list.
Forum: Fixing WordPress
In reply to: Same wp_ user database between three sites?Would still love some help with this, thanks.
Forum: Fixing WordPress
In reply to: Putting an ad under just the FIRST post?Fatal error: Call to undefined function: is_defined() in /home/.tica/gregjames/gregjames.org/wp-content/themes/gregblue/index.php on line 41
Like I’ve said, I just want it under the FIRST post on the page, and ONLY that.
Forum: Fixing WordPress
In reply to: Putting an ad under just the FIRST post?It give me errors when I do that, like unexpected < or T something.
Here’s my original code:
<?php get_header(); ?> <?php get_sidebar(); ?> <?php if (have_posts()) : ?> <?php while (have_posts()) : the_post(); ?> <table width="100%" border="0" cellspacing="0" cellpadding="5"> <tr> <td colspan="2"><table border="0" cellpadding="3" cellspacing="0" bgcolor="#EFFF0C"> <tr> <td><strong><a href="<?php the_permalink() ?>" rel="bookmark" title="Permanent Link to <?php the_title(); ?>"><?php the_title(); ?></a></strong></td> </tr> </table></td> </tr> <tr> <td colspan="2"><p><?php the_content('Read the rest of this entry »'); ?></p></td> </tr> <tr> <td><table border="0" cellpadding="3" cellspacing="0" bgcolor="#1195FF"> <tr> <td><a href="#"><strong><?php comments_popup_link('0 Comments', '1 Comment', '% Comments;'); ?></strong></a></td> </tr> </table></td> <td><table border="0" align="right" cellpadding="3" cellspacing="0" bgcolor="#AFFF0A"> <tr> <td><a href="#"><strong> Posted by <?php the_author_nickname(); ?> @ <?php the_time('d/m/y g:i A') ?></strong></a></td> </tr> </table></td> </tr> </table> <table width="100%" border="0" cellpadding="0" cellspacing="0" bgcolor="#000000"> <tr> <td height="10"></td> </tr> </table> <?php endwhile; ?> <?php else : ?> <?php endif; ?> <?php get_footer(); ?>