tekton23
Forum Replies Created
-
Forum: Fixing WordPress
In reply to: Aw Snap – Sudden Error in Google ChromeThanks Sam. Our web designer manged to fix it. It may have been related to a youtube verification file that I put in the top level folder, as this was the only change made before the problem occured. Or just a Chrome glitch as you suggest.
Either way it is fine now!
Forum: Fixing WordPress
In reply to: Post Dates showing 45 years ago!yes it is custom built.
here is the code:
<?php // the index template file – the default template file WordPress uses to display content ?>
<?php get_header(); ?>
<?php if ( is_front_page() || is_home() ) { ?>
<div id=”main-frontpage” class=”main-content”>
<div id=”left-wrap”>
<div class=”slider”>
<?php echo yukis_slider_template(); ?>
</div><div class=”latest-classes”>
<!– Upcoming Events –>
<?php if ( is_active_sidebar( ‘upcomingevents-1’ ) ) : ?>
<div class=”widget-area upcomingevents-1″ role=”complementary”>
<?php dynamic_sidebar( ‘upcomingevents-1’ ); ?>
</div><!– .widget-area –>
<?php endif; ?>
</div>
<div class=”clear”></div><div class=”latest-products”>
<!–
<?php
$args = array( ‘post_type’ => ‘product’, ‘stock’ => 1, ‘posts_per_page’ => 3, ‘orderby’ =>’date’,’order’ => ‘ASC’ );
$loop = new WP_Query( $args );
while ( $loop->have_posts() ) : $loop->the_post(); global $product; ?>
<div class=”class”>
” href=”<?php the_permalink(); ?>” title=”<?php the_title(); ?>”>
<?php if (has_post_thumbnail( $loop->post->ID )) echo get_the_post_thumbnail($loop->post->ID, array(320, 190)); else echo ‘<img src=”‘.woocommerce_placeholder_img_src().'” alt=”Placeholder” width=”317px” height=”187px” />’; ?>
<div class=”prod-info”>
“><?php the_title(); ?>
</div>
</div>
<?php endwhile; ?>
<?php wp_reset_query(); ?>
–>
<?php if ( dynamic_sidebar(‘main-products’) ) : else : endif; ?>
</div>
</div>
<div id=”right-wrap” class=”sidebar”><div class=”latest-manga”>
<?php
$args = array( ‘tag’ => ‘manga’, ‘stock’ => 1, ‘posts_per_page’ => 1, ‘orderby’ =>’date’ );
$loop = new WP_Query( $args );
while ( $loop->have_posts() ) : $loop->the_post(); global $product; ?>
” href=”<?php the_permalink(); ?>” title=”<?php the_title(); ?>”>
<?php if (has_post_thumbnail( $loop->post->ID )) echo get_the_post_thumbnail($loop->post->ID, array(320, 190)); else echo ‘<img src=”‘.woocommerce_placeholder_img_src().'” alt=”Placeholder” width=”317px” height=”187px” />’; ?>
<div class=”manga-info”>
“><?php the_title(); ?>
<li class=”the-date”><?php echo human_time_diff( get_the_time(‘U’), current_time(‘timestamp’) ) . ‘ ago’; ?>
</div>
<?php endwhile; ?>
<?php wp_reset_query(); ?>
</div><div class=”twitter-feed”>
<span class=”inner-feed wraptocenter”><div id=”twitterfeed”></div></span>
</div><div class=”latest-blog”>
-
<?php $the_query = new WP_Query( array(‘limit’ => 1, ‘posts_per_page’ => 1, ‘showposts’ => 1, ‘tag’ => ‘standard’, ‘tag__not_in’ => array(178) ) ); ?>
- “><?php if(has_post_thumbnail()) { the_post_thumbnail(‘latestblog-thumb’); } ?>
- “><?php the_title(); ?>
<?php while ($the_query -> have_posts()) : $the_query -> the_post(); ?><li class=”latest-blog-data”><?php the_excerpt(); ?>
<li class=”the-date”><?php echo human_time_diff( get_the_time(‘U’, the_post()->ID), current_time(‘timestamp’) ) . ‘ ago’; ?>
<?php endwhile;?>
<?php wp_reset_query(); ?></div>
<?php if ( dynamic_sidebar(‘main-sidebaradspace’) ) : else : endif; ?>
<?php if ( dynamic_sidebar(‘home-sidebar’) ) : else : endif; ?>
</div>
</div><!– #main–>
<?php } else { ?>
<div id=”subpage” class=”main-content”>
<div id=”left-wrap”>
<div class=”main-content” id=”frontpage”>
<?php
if (have_posts()) {
while (have_posts()) {
the_post();
$paged = $wp_query->get( ‘page’ ); ?>
<h1><?php
$nimbus_title = single_post_title(”,false);
if (empty($nimbus_title)) {
?>Post ID <?php the_ID();
} else {
single_post_title();
}
?></h1>
<?php the_date(‘F j Y’, ‘<p class=”dotted”>’, ‘</p>’); ?>
<?php
the_content();
comments_template();
}
} else {
echo ‘Sorry there are no results for this page.’;
}
?>
</div>
</div>
<div id=”right-wrap” class=”sidebar”>
<div class=”latest-blog”>-
<?php $the_query = new WP_Query( array(‘showposts’ => 1, ‘tag__not_in’ => array(178) ) ); ?>
- <?php if(has_post_thumbnail()) { the_post_thumbnail(‘latestblog-thumb’); } ?>
- “><?php the_title(); ?>
<?php while ($the_query -> have_posts()) : $the_query -> the_post(); ?><?php the_date(‘F j Y’, ‘<li class=”latest-blog-date”><i>’, ‘</i>’); ?>
<li class=”latest-blog-data”><?php echo substr(strip_tags($post->post_content), 0, 100);?> ID); ?>” class=”readmore”>Read More
<?php endwhile;?></div>
<div class=”twitter-feed”>
<span class=”inner-feed wraptocenter”><div id=”twitterfeed”></div></span>
</div><div class=”latest-manga”>
<?php
$args = array( ‘tag’ => ‘manga’, ‘stock’ => 1, ‘posts_per_page’ => 1, ‘orderby’ =>’date’ );
$loop = new WP_Query( $args );
while ( $loop->have_posts() ) : $loop->the_post(); global $product; ?>
” href=”<?php the_permalink(); ?>” title=”<?php the_title(); ?>”>
<?php if (has_post_thumbnail( $loop->post->ID )) echo get_the_post_thumbnail($loop->post->ID, array(320, 190)); else echo ‘<img src=”‘.woocommerce_placeholder_img_src().'” alt=”Placeholder” width=”317px” height=”187px” />’; ?>
<div class=”manga-info”>
“><?php the_title(); ?>
<?php the_date(‘F j Y’, ‘<i>’, ‘</i>’); ?>
<p class=”latest-blog-data”><?php echo substr(strip_tags($post->post_content), 0, 100);?> ID); ?>” class=”readmore”>Read More</p>
</div>
<?php endwhile; ?>
<?php wp_reset_query(); ?>
</div>
<?php if ( dynamic_sidebar(‘home-sidebar’) ) : else : endif; ?>
</div>
</div><!– #main–>
<?php }
get_footer(); ?>Forum: Fixing WordPress
In reply to: Post Dates showing 45 years ago!thanks for your help. I can deactivate all, am I in danger of losing anything if I do?
Forum: Fixing WordPress
In reply to: Post Dates showing 45 years ago!Advanced Image Styles
Deactivate | Edit
Adjust an image’s margins and border with ease in the VisualVersion 0.2 | By Gregory Cornelius | View details
Select Configurable Tag Cloud
Configurable Tag Cloud
Deactivate | Edit
A tag cloud plugin for WordPress to give you more flexibility with the styling of your tag cloud.Version 5.2 | By Keith Solomon | View details
Select Contact Form
Contact Form
Settings | Deactivate | Edit
Plugin for Contact Form.Version 3.84 | By BestWebSoft | View details | Settings | FAQ | Support
Select Easy Columns
Easy Columns
Deactivate | Edit
Easy Columns provides the shortcodes to create a grid system or magazine style columns for laying out your pages just the way you need them. Using shortcodes for 1/4, 1/2, 1/3, 2/3, 3/4, 1/5, 2/5, and 3/5 columns, you can insert at least thirty unique variations of columns on any page and even in posts! Quickly add columns to your pages from the editor with an easy to use “pick n’ click” interface! For usage and more information, visit patrickfriedl.com.Version v2.1.3 | By Pat Friedl | View details
Select Error Log Monitor
Error Log Monitor
Activate | Edit | Delete
Adds a Dashboard widget that displays the last X lines from your PHP error log, and can also send you email notifications about newly logged errors.Version 1.2.2 | By Janis Elsts | View details
Select Events Manager
Events Manager
Settings | Deactivate | Edit | Uninstall
Event registration and booking management for WordPress. Recurring events, locations, google maps, rss, ical, booking registration and more!Version 5.5.3.1 | By Marcus Sykes | View details
Select Events Manager Pro
Events Manager Pro
Deactivate | Edit
Supercharge the Events Manager free plugin with extra feature to make your events even more successful!Version 2.3.8.1 | By NetWebLogic | Visit plugin site
Select Instagram Feed
Instagram Feed
Activate | Edit | Delete
Add a simple customizable Instagram feed to your websiteVersion 1.2.3 | By Smash Balloon | View details
Select Jetpack by WordPress.com
Jetpack by WordPress.com
Jetpack | Settings | Deactivate | Edit
Bring the power of the WordPress.com cloud to your self-hosted WordPress. Jetpack enables you to connect your blog to a WordPress.com account to use the powerful features normally only available to WordPress.com users.Version 3.2.1 | By Automattic | View details
Select MailChimp for WordPress Lite
MailChimp for WordPress Lite
Settings | Deactivate | Edit
Lite version of MailChimp for WordPress. Adds various sign-up methods to your website.Version 2.1.6 | By Danny van Kooten | View details | FAQ | Upgrade to Pro
Select Newsletter
Newsletter
Deactivate | Edit
Newsletter is a cool plugin to create your own subscriber list, to send newsletters, to build your business. Before update give a look to this page to know what’s changed.Version 3.6.5 | By Stefano Lissa | View details
Select P3 (Plugin Performance Profiler)
P3 (Plugin Performance Profiler)
Activate | Edit | Delete
See which plugins are slowing down your site. Create a profile of your WordPress site’s plugins’ performance by measuring their impact on your site’s load time.Version 1.5.3.1 | By GoDaddy.com | View details
Select Responsive Lightbox
Responsive Lightbox
Settings | Deactivate | Edit
Responsive Lightbox allows users to view larger versions of images and galleries in a lightbox (overlay) effect optimized for mobile devices.Version 1.4.8 | By dFactory | View details | Support
Select Shareaholic | share buttons, analytics, related content
Shareaholic | share buttons, analytics, related content
Deactivate | Edit | Settings
Whether you want to get people sharing, grow your fans, make money, or know who’s reading your content, Shareaholic will help you get it done. See configuration panel for more settings.Version 7.6.0.4 | By Shareaholic | View details
Select Simply Instagram
Simply Instagram
Deactivate | Edit
Promote your Instagram photo through your WordPress website using Simply Instagram.Version 1.2.6 | By Rolly G. Bueno Jr. | View details
Select Strong Testimonials
Strong Testimonials
Settings | Deactivate | Edit
A powerful testimonial manager.Version 1.11.4 | By Chris Dillon | View details
Select TinyMCE Advanced
TinyMCE Advanced
Deactivate | Edit
Enables advanced features and plugins in TinyMCE, the visual editor in WordPress.Version 4.1.1 | By Andrew Ozz | View details
Select WooCommerce
WooCommerce
Settings | Deactivate | Edit
An e-commerce toolkit that helps you sell anything. Beautifully.Version 2.2.8 | By WooThemes | View details | Docs | API Docs | Premium Support
Select WordPress SEO
WordPress SEO
FAQ | Premium Support | Settings | Deactivate | EditForum: Fixing WordPress
In reply to: Image aligned to left of page, text appearing underI think it must be a css issue as if I copy the code out of the link you sent, it does not work.
also
does not work.Forum: Fixing WordPress
In reply to: Image aligned to left of page, text appearing underThanks, but it keeps over-writing: <br style=”clear: both;” />
with
<p> </p>