potempasisters
Forum Replies Created
-
Forum: Plugins
In reply to: Daily email to subscribersoh..ok sorry
Forum: Plugins
In reply to: Daily email to subscriberswhere do you start a thread…for some reason i can’t locate it…
Anyways, my question is how to slow down the speed of the feature slider in my html..Here is the code and my site is http://sarahpotempa.com
<?php
global $options;
foreach ($options as $value) {
if (get_settings( $value[‘id’] ) === FALSE) { $$value[‘id’] = $value[‘std’]; } else { $$value[‘id’] = get_settings( $value[‘id’] ); }
}
?><script type=”text/javascript”>
$(function() {
$(“#navi ul”).tabs(“#panes > div”, {
effect: ‘fade’,
fadeOutSpeed: 500,rotate: true
}).slideshow({
autoplay: true,
interval: 2500
});
});
</script><div id=”feature”>
<?php
$catid5 = $wpzoom_featured_category_5;
$cat5 = get_category($catid5,false);
$catlink5 = get_category_link($catid5);
$breaking_cat5 = “cat=$catid5”;
?><!– tab panes –>
<div id=”panes”><?php $headline = new WP_Query(‘showposts=4&’ . $breaking_cat5 ); while($headline->have_posts()) : $headline->the_post(); ?>
<div>
<span class=”overlay”>” title=”<?php the_title(); ?>”><?php the_title(); ?></span>
<?php unset($photo);
$photo = catch_that_image (get_the_id(), ”, ”);if ( current_theme_supports( ‘post-thumbnails’ ) && has_post_thumbnail() ) {
the_post_thumbnail(array(480,9999, true));
}else{
if ($wpzoom_cf_use == ‘Yes’)
{
$photo = get_post_meta($post->ID, $wpzoom_cf_photo, true);
} // if CF used
else
{
if (!$photo)
{
$photo = catch_that_image($post->ID);
}
} // if CF not usedif ($photo)
{
?>
<img src=”<?php bloginfo(‘template_directory’); ?>/scripts/timthumb.php?w=480&h=280&zc=1$amp;src=<?php echo $photo; ?>” alt=”<?php the_title(); ?>” />
<?php
}
else
{
echo”<img src=\””; bloginfo(‘template_directory’); echo”/images/blank.jpg\” />”;
} // if $photo still does not exist} // if theme does not have a thumbnail
?><h3>” title=”<?php the_title(); ?>”><?php the_title(); ?></h3><ul class=”meta-feature”> <?php edit_post_link( __(‘Edit’), ‘
- | ‘, ‘
‘); ?>
<?php the_excerpt(); ?><span class=”more”>” title=”<?php the_title(); ?>”>read more</span>
</div>
<?php endwhile; ?></div>
<br clear=”all” />
<!– navigator –>
<div id=”navi”>-
<?php unset($photo);
$photo = catch_that_image (get_the_id(), ”, ”);if ( current_theme_supports( ‘post-thumbnails’ ) && has_post_thumbnail() ) {
the_post_thumbnail(array(90,9999, true));
}else{
if ($wpzoom_cf_use == ‘Yes’)
{
$photo= get_post_meta($post->ID, $wpzoom_cf_photo, true);
} // if CF used
else
{
if (!$photo)
{
$photo = catch_that_image($post->ID);
}
} // if CF not usedif ($photo)
{
?>
<img src=”<?php bloginfo(‘template_directory’); ?>/scripts/timthumb.php?w=96&h=56&zc=1$amp;src=<?php echo $photo; ?>” alt=”<?php the_title(); ?>” />
<?php
}
else
{
echo”<img src=\””; bloginfo(‘template_directory’); echo”/images/blank2.jpg\” />”;
} // if $photo still does not exist} // if theme does not have a thumbnail
?>
<?php $teaser_small = new WP_Query(‘showposts=4&’ . $breaking_cat5 ); while($teaser_small->have_posts()) : $teaser_small->the_post(); ?>
<?php endwhile; ?>
</div>
<?php wp_reset_query(); ?>
</div>Forum: Installing WordPress
In reply to: POWWEB Domain ChangeFor example:
in the WP Admin Panel, under SETTINGS, GENERAL, I currently have:
WordPress address (URL) – http://sarahpotempa.com/ps
Blog address (URL) – http://sarahpotempa.com/psUnder phpMyAdmin, wp_options I currently located:
siteurl – http://sarahpotempa.com/ps
home – http://sarahpotempa.com/psPreviously, I had a different blog address only in the WP Admin Panel:
WordPress address (URL) – http://sarahpotempa.com/ps
Blog Address (URL) – http://www.beautybent.comI changed this to match the phpmyAdmin. My question is if I changed the blog address (URL) in the WPAdmin and in the phpMyAdmin (wp_options) will this successfully keep all of my files in http://sarahpotempa.com/ps, but still allow you to view the blog when you type in both URLs?
Forum: Installing WordPress
In reply to: POWWEB Domain ChangeTHANK YOU SO MUCH!! I found out that the home in phpMyAdmin was the same as the siteurl and that was messing up all the links. I am afraid to change the home to my blog address (url)..will that cause any problems?
Instead, I changed the blog address in the WP Admin page (not in phpMyAdmin) and that fixed all the links, pages, etc. I am so happy that it is all there and actually works, but I am going to eventually want to switch back the blog URL. Is that the only thing I will need to do (change the home in phpMyAdmin to match the Blog Address in the WPAdMin)..as long as the site_url remains the same??
I would love your advice!
THANKS!!