stockmarketcode
Forum Replies Created
-
Forum: Plugins
In reply to: tinymce advanced drag and drop not workingI figured out it was an issue with the theme and I disabled the theme and it worked well after it was re-enabled.
Forum: Fixing WordPress
In reply to: IE V FirefoxHi samboll
There are quite a few mistakes….how do I access the lines of code through wordpress to correct them?
Forum: Fixing WordPress
In reply to: IE V Firefoxanyone?
Forum: Fixing WordPress
In reply to: Blog page is blankHi Michael
Found it! Platinum SEO plugin was the issue.
Thanks for your help and support….I’d never have found this myself.
Barry
Forum: Fixing WordPress
In reply to: Blog page is blankHeres the code from index.php…this might help.
<?php get_header(); ?>
<div id=”content”><div class=”feature clearfloat” id=”lead”>
<?php
// this is where the Lead Story module begins
query_posts(‘showposts=1&cat=3’); ?>
<?php while (have_posts()) : the_post(); ?>
” rel=”bookmark” title=”Permanent Link to <?php the_title(); ?>”><img src=”<?php bloginfo(‘template_url’); ?>/images/<?php
// this is where the Lead Story image gets printed
$values = get_post_custom_values(“Image”); echo $values[0]; ?>” alt=”” id=”leadpic” />
<h3>
<?php
// this is where the name of the Lead Story category gets printed
wp_list_categories(‘include=3&title_li=&style=none’); ?></h3>
” rel=”bookmark” title=”Permanent Link to <?php the_title(); ?>” class=”title”>
<?php
// this is where the title of the Lead Story gets printed
the_title(); ?>
<?php
// this is where the excerpt of the Lead Story gets printed
the_excerpt(); ?>
{” rel=”bookmark” title=”Permanent Link to <?php the_title(); ?>”>More»}
<?php endwhile; ?>
</div><!–END FEATURE–><div id=”leftcol”>
<?php
// this is where the Features module begins
query_posts(‘showposts=3&cat=4’); ?>
<h3><?php
// this is where the name of the Features category gets printed
wp_list_categories(‘include=4&title_li=&style=none’); ?></h3>
<?php while (have_posts()) : the_post(); ?>
<div class=”feature”>” rel=”bookmark” title=”Permanent Link to <?php the_title(); ?>”><img src=”<?php bloginfo(‘template_url’); ?>/images/<?php
// this is where the custom field prints images for each Feature
$values = get_post_custom_values(“Image”); echo $values[0]; ?>” alt=”” />” rel=”bookmark” class=”title”>
<?php
// this is where title of the Feature gets printed
the_title(); ?>»</div>
<?php endwhile; ?>
</div><!–END LEFTCOL–><div id=”rightcol”>
<?php
// this is where you enter the IDs of which categories you want to display
$display_categories = array(5,6,7);
foreach ($display_categories as $category) { ?>
<div class=”clearfloat”>
<?php query_posts(“showposts=1&cat=$category”);
$wp_query->is_category = false;
$wp_query->is_archive = false;
$wp_query->is_home = true;
?>
<h3>“><?php
// this is where the name of each category gets printed
single_cat_title(); ?></h3>
<?php while (have_posts()) : the_post(); ?>
<?php
// this grabs the image filename
$values = get_post_custom_values(“Image”);
// this checks to see if an image file exists
if (isset($values[0])) {
?>
” rel=”bookmark” title=”Permanent Link to <?php the_title(); ?>”><img src=”<?php bloginfo(‘template_url’); ?>/images/<?php $values = get_post_custom_values(“Image”); echo $values[0]; ?>” alt=”” />
<?php } ?>
” rel=”bookmark” class=”title”><?php
// this is where title of the article gets printed
the_title(); ?>»
<?php the_excerpt(); ?>
<?php endwhile; ?>
</div>
<?php } ?>
</div><!–END RIGHTCOL–>
</div><!–END CONTENT–><?php get_sidebar(); ?>
<?php get_footer(); ?>Forum: Fixing WordPress
In reply to: Blog page is blankHi Michael
I deleted all the minmbo files from my server and reuploaded a fresh downlaod, but when I click on it as a preview to activiating it, all I see is white space with no theme displayed.
Barry
Forum: Fixing WordPress
In reply to: Blog page is blankHi Michael
Thanks for the help. I changed to the default theme, set the blog page as “blog posts” and its working fine. Ive hidden a page that Im using as my home page so that it doesnt show up in the nav menu in mimbo. That was done after the issue occured. Ive also (since I first posted) edited the sidebar.php to my liking….shockingly easy…I will be able to edit template code if you can direct me to continue to diagnose the issue.
New post shows up fine…. https://socialbuzz.co.uk/29/ in default theme.
Barry
Forum: Fixing WordPress
In reply to: All search engine links go to archives….Thanks Clayton
Im going to send the inforamtion you gave to me webmaster and see what he thinks.
Thanks again
Barry
Forum: Fixing WordPress
In reply to: Delayed Publishing plugin?actually…forget it…I just saw the sidebar widget…ready fire aim my arse!
Forum: Fixing WordPress
In reply to: installed via hostgator cpanelHi Design simply
I did as requested in the “Moving WordPress Within Your Site” and moved everything to a new directory called blog.
Now I can see the index.htm page but I cant log into anything to do with the blog.
Im a bit lost here as this is my first time with wordpress and Im not sure what Im doing wrong.
Should the blog folder be in the Public_html folder instead of the root? (I assume that the root folder is the one marked simply with a “/”)
Hope you can help
Forum: Fixing WordPress
In reply to: installed via hostgator cpanelHi Stvwlf….how do I do this? Do you have a guide to help me or is there anything in the hostgator or WP FAQs for this? What if I just delete index.htm. will wordpress then show at index.php as a default?
The first posters idea didnt work BTW