scottoliphant
Forum Replies Created
-
Forum: Plugins
In reply to: [Plugin: Front-end Editor] rel tags within the editable areaChanging the shadowbox Javascript Library to “mootools” is the solution i found. My guess is there may be some conflicts with the 2 js files, but I don’t have the skills to troubleshoot what they may be! thanks, maybe this will help someone else
scottForum: Plugins
In reply to: [Plugin: Front-end Editor] rel tags within the editable area<div id='fee_340' class='front-ed-the_content front-ed'><p>Content<br /> <a href="http://img198.imageshack.us/img198/6260/bowie174x100.jpg" rel="shadowbox[post-340];player=img;"><img class="alignnone size-thumbnail wp-image-350" src="http://img198.imageshack.us/img198/6260/bowie174x100.jpg" alt="bowie" width="174" height="100" /></a></p> <p><a href="http://img198.imageshack.us/img198/6260/bowie174x100.jpg" rel="shadowbox[post-340];player=img;">link to image</a></p>lets try again in the code tag =)
Forum: Plugins
In reply to: [Plugin: Front-end Editor] rel tags within the editable areaHere is the HTML
<div id=’fee_340′ class=’front-ed-the_content front-ed’><p>Content
<img class=”alignnone size-thumbnail wp-image-350″ src=”http://img198.imageshack.us/img198/6260/bowie174x100.jpg” alt=”bowie” width=”174″ height=”100″ /></p>
<p>link to image</p>the top link around the image works, the bottom link around the text does not, i just confirmed that the bottom link shadowbox does work if front end editor is off (the rel code is being auto written to launch the shadowbox). Going to try some other troubleshooting today and will let you know if i figure anything out. thanks again!
Forum: Plugins
In reply to: [Plugin: Front-end Editor] rel tags within the editable area(also for what it’s worth, using the dev version 1.4b)
Forum: Plugins
In reply to: [Plugin: Front-end Editor] rel tags within the editable areaa further bit of info from trouble shooting
if the link is around an image the shadowbox works fine, around a text link to an image, no go. Again, if i disable front end editor both work and launch image correctly.Forum: Plugins
In reply to: Remove css galleryalso, add this is your themes css:
<style type='text/css'> .gallery { margin: auto; } .gallery-item { float: left; margin-top: 10px; text-align: center; width: 33%; } .gallery img { border: 2px solid #cfcfcf; } .gallery-caption { margin-left: 0; } </style>per:
http://sivel.net/2009/02/remove-gallery-style-tags-one-liner/Forum: Fixing WordPress
In reply to: 2.7 Issues – No Visual Editor & Other ThingsI was having the same problem after manual upgrade, uninstalled all the plugs to check for errors there. I solved it my doing an automatic reinstall from the admin, now works like a champ. Something weird must have happened during the unzip
Forum: Fixing WordPress
In reply to: wp_list_category exclude by namefound a solution
<?php // get category name's ID then insert into wp_list_categories ?> <?php $category = get_category_by_slug('Archive'); $catid = $category->term_id; ?> <ul> <?php wp_list_categories('exclude='.$catid); ?> </ul>Forum: Fixing WordPress
In reply to: query_posts and exclude tagfigured it out, an array couple with the “tag__not_in” was the trick
<?php // remove clients tagged archive (42) $my_query = new WP_Query(array( 'tag__not_in'=>array('42'), 'category_name'=>'Clients', 'orderby'=>'title', 'order'=>'ASC')); } ?>the loop
<?php while ($my_query->have_posts()) : $my_query->the_post(); $do_not_duplicate = $post->ID; ?>Forum: Plugins
In reply to: [Plugin: Events Calendar] Not compatible with NextGen Galleryso, found a hack workaround for now:
comment out the php lines in nggallery.php (as i’ve done below)// if (IS_WP25) // wp_enqueue_script('ngg-thickbox', NGGALLERY_URLPATH .'thickbox/thickbox-pack.js', array('jquery'), '3.1.1'); // else // wp_enqueue_script('thickbox', NGGALLERY_URLPATH .'thickbox/thickbox-pack.js', array('jquery'), '3.1.1');Events and Nextgen are both loading thickbox.js, but from 2 different places (and with a query string attached to the events js, must have been confusing WP). Nextgen loads from the plugin folder, while events seems to load from the wordpress js folder (opted to keep this one). NOTE: Nextgen will stop working if you remove the events calendar. You’ll need to go back and remove the php comments to get to work.
Forum: Fixing WordPress
In reply to: List archive of posts in sidebar of current category (dynamically)Hey thanks Aaron! It got me close, ended up going with this, will incorporate your idea for post number as well. thank you so much.
<h3>Archives</h3> <ul> <?php if (have_posts()) : ?> <?php while (have_posts()) : the_post(); ?> <li> <?php the_date(); ?> // <a href="<?php the_permalink() ?>" rel="bookmark" title="Permanent Link to <?php the_title(); ?>"> <?php the_title(); ?></a><br /> <?php //the_excerpt(); ?> </li><br /> <?php endwhile; ?> <?php endif; ?>Forum: Fixing WordPress
In reply to: Fatal error: line 21 of widgets.php FRESH INSTALLupgraded to php 5.2.5 and worked like a champ.
Forum: Fixing WordPress
In reply to: Fatal error: line 21 of widgets.php FRESH INSTALLseems like it may be related to php 5.0.5 and up, a little googling revealed similar errors in other cms’s
Forum: Plugins
In reply to: Single post page inherit custom page template?thanks, but, the tricky part is I need a custom template only if i come off a certain category template. If i hit the single post from, say, the home page, i want it to use the original style used for the rest of the site. Make sense? I need someway to evaluate where the user came from…