etegration1
Forum Replies Created
-
Forum: Plugins
In reply to: [RevivePress – Keep your Old Content Evergreen] republish more than 3 yearsthanks
Forum: Plugins
In reply to: [auto set first image as featured – ToolBox] Line 513it’s not resolved so dont mark it resolved and i did it the manual way.
Forum: Themes and Templates
In reply to: [Montezuma] Preview Images – How to resizehow to show image when an image is all that is on the post?
Forum: Installing WordPress
In reply to: using IP address as DB Hostname not allowed?any clues?
Forum: Installing WordPress
In reply to: using IP address as DB Hostname not allowed?to be sure, i tested mysql remote connection with username and password, i connect to the mysql remotely. any one?
Forum: Installing WordPress
In reply to: using IP address as DB Hostname not allowed?i get database error. i edited the /etc/hosts on the 2nd web server to have the hostname and ip mapped. did a ping, success. change DB_HOST to hostname, same db error too. ideas?
Forum: Fixing WordPress
In reply to: New Post – Default Text?great post themetutorials, found this from Google. Exactly what i needed.
Forum: Plugins
In reply to: WordPress Shopping Cart other than wp e-commerce?A good e-Commerce site takes time to setup because as a seller there are many options you can tweak to optimize and extend your reach.
That said the reality is that you can setup WP e-Commerce in no time at all as you can on the e-Commerce video on the wordpress.tv site.
Here is a look at the latest WP e-Commerce running WordPress 2.8
https://apps.instinct.co.nz/wp-2.8.1/products-page/It is as they say bloody awesome!!
it’s awesomely 404.
Forum: Requests and Feedback
In reply to: Flash 10 issues – no media uploadany one knows if this is resolve in 2.7?
Forum: Fixing WordPress
In reply to: Flash Player 10 Beta breaks file uploadstill no improvements on this? no one side is willing to change?
Forum: Themes and Templates
In reply to: Mass insert image into post – but not a gallerythank you but i hope there’ll just be a button like “Add All Image to this post” soon…
Forum: Fixing WordPress
In reply to: Flash Player 10 Beta breaks file uploadph shitz, i guess wordpress will fix this in due course. in the meantime, downgrade back to 9. https://kb.adobe.com/selfservice/viewContent.do?externalId=tn_14266&sliceId=1
Forum: Fixing WordPress
In reply to: How to show “Page last updated” in site?what are you trying to say joni? use the following, it will work.
<?php $u_time = get_the_time('U'); $u_modified_time = get_the_modified_time('U'); if ($u_modified_time >= $u_time + 86400) { echo "and last modified on "; the_modified_time('F jS, Y'); echo " at "; the_modified_time(); echo ", "; } ?>
From https://systembash.com/content/last-modified-date-time-on-wordpress-template-page/
Forum: Themes and Templates
In reply to: Theme Editor experts help neededfor reference, the default page.php
<?php get_header(); ?> <div id="content"> <?php if (have_posts()) : ?> <?php while (have_posts()) : the_post(); ?> <div class="post" id="post-<?php the_ID(); ?>"> <h2><?php the_title(); ?></h2> <div class="entry"> <?php the_content('<span class="readmore">'.__('Read the rest of this entry »',TEMPLATE_DOMAIN).'</span>'); ?> </div> </div> <div class="meta"> <dl> <?php if(function_exists('the_tags')) : ?> <?php the_tags('<dt>Tags</dt><dd>', ', ', '</dd>'); ?> <?php endif; ?> <?php if(function_exists('the_bunny_tags')) : ?> <?php the_bunny_tags('<dt>Tags</dt><dd>', '</dd>', ', '); ?> <?php endif; ?> <?php if(function_exists('the_bookmark_links')) : ?> <dt><?php _e('Spread the word',TEMPLATE_DOMAIN); ?></dt><dd><?php the_bookmark_links(); ?></dd> <?php endif; ?> <?php if ('open' == $post-> comment_status) : ?> <dt><img alt="<?php _e('Comments rss',TEMPLATE_DOMAIN); ?>" src="<?php echo get_bloginfo('stylesheet_directory') ?>/images/icons/feed-icon-16x16.gif" /></dt><dd><?php comments_rss_link(__('Comments rss',TEMPLATE_DOMAIN)); ?></dd> <?php endif; ?> <?php if ('open' == $post->ping_status) : ?> <dt><img alt="<?php _e('Trackback',TEMPLATE_DOMAIN); ?>" src="<?php echo get_bloginfo('stylesheet_directory') ?>/images/icons/trackback-icon-16x16.gif" /></dt><dd><a href="<?php trackback_url(true); ?> " rel="trackback" title="<?php _e('Trackback',TEMPLATE_DOMAIN); ?>"><?php _e('Trackback',TEMPLATE_DOMAIN); ?></a></dd> <?php endif; ?> <?php if ($user_ID) : ?> <dt><img alt="<?php _e('Edit',TEMPLATE_DOMAIN); ?>" src="<?php echo get_bloginfo('stylesheet_directory') ?>/images/icons/edit-icon-16x16.gif" /></dt><dd><?php edit_post_link(__('Edit',TEMPLATE_DOMAIN),'',''); ?></dd> <?php endif; ?> </dl> </div> <?php comments_template(); ?> <?php endwhile; ?> <?php else : ?> <h2><?php _e('Not Found',TEMPLATE_DOMAIN); ?></h2> <p><?php _e('Sorry, but you are looking for something that isn\'t here.',TEMPLATE_DOMAIN); ?></p> <?php endif; ?> </div> <?php // sidebars ?> <?php if ($freshy_options['sidebar_right'] == true) get_sidebar(); ?> <?php if ($freshy_options['sidebar_left'] == true) include (TEMPLATEPATH . '/sidebar_left.php'); ?> </div> <?php get_footer(); ?>
Forum: Themes and Templates
In reply to: Theme Editor experts help neededthanks moshu. Edited to the following:
<?php /* Template Name: gmap */ ?> <?php get_header(); ?> <?php if (have_posts()) : ?> <?php while (have_posts()) : the_post(); ?> <div id="post-<?php the_ID(); ?>"> <h2><?php the_title(); ?></h2> <?php the_content(); ?> <?php comments_template(); ?> <?php endif; ?> <?php endwhile; ?> <?php else : ?> <h2><?php _e('Not Found',TEMPLATE_DOMAIN); ?></h2> <p><?php _e('Sorry, but you are looking for something that isn\'t here.',TEMPLATE_DOMAIN); ?></p> <?php endif; ?> </div> </div> <?php get_footer(); ?>
still blank. ??