kazerk
Forum Replies Created
-
Forum: Plugins
In reply to: Theme “page-style” missing template and style sheetLooks like you already got taken care of..
Forum: Plugins
In reply to: Want to add a ‘CLICK HERE’ button at end of postNo problem.
Forum: Plugins
In reply to: Theme “page-style” missing template and style sheetYea that is possible.
paste a link to your blog and I will help you out in the morning. I will add the text and html badges to the copy I have here, then you may just upload to your own. From that you will be able to see how I did it and will be much easier for you..
Forum: Plugins
In reply to: How Can My Readers Post Pics to my blog?I did a search to see if I could find plug in .. did not see one on cursory search. you may look around a little more. I have seen pic’s in peoples posts. The reply box and page can be modified to allow people to post pics. Will require little reworking of the code using your editor.
Forum: Plugins
In reply to: Theme “page-style” missing template and style sheetlol.. they are kind of a hassle.. The right sidebar has two parts to it..a left and a right side.. you can only add additional links/pages or get rid of
* Development Blog
* Documentation
* Plugins
* Suggest Ideas
* Support Forum
* Themes
* WordPress Planet
by just clicking a button..However, you can change anything you want on either side. You just have to do it using the editor or by copying to notepad and making the changes. Then pasting back to your editor.
Or copy to note pad
What are you wanting to add to it?
Forum: Plugins
In reply to: Theme “page-style” missing template and style sheetIf you go to the appearance >editor then click on the side bar link on right hand side of your management panel.. it will open that file and you can begin editing it.
Look for:
<div id="sidebar-right"> <!---put anything you want here--> <div id="subfeed" >You can add anything you want inside there. Will require little coding. Let me know if you need help.
Forum: Plugins
In reply to: Theme “page-style” missing template and style sheetForum: Plugins
In reply to: You do not have sufficient permissions to access this pageSounds like a file permission error…
What operating system is your server/pc running the blog under.. Windows/Linux?
Forum: Plugins
In reply to: Want to add a ‘CLICK HERE’ button at end of post<a href="http://www.whatever.com" >Some Text Describing Link</a>then insert that into the index.php file here:<div id="content"> <?php if (have_posts()) : ?> <?php while (have_posts()) : the_post(); ?> <div class="post" id="post-<?php the_ID(); ?>"> <h2><a href="<?php the_permalink() ?>" rel="bookmark" title="Permanent Link to <?php the_title_attribute(); ?>"><?php the_title(); ?></a></h2> <small><?php the_time('F jS, Y') ?> <!-- by <?php the_author() ?> --></small> <div class="entry"> <?php the_content('Read the rest of this entry »'); ?> </div> <p class="postmetadata"><?php if (function_exists('the_tags')) { the_tags('Tags: ', ', ', '<br />'); } ?>Posted in <?php the_category(', ') ?> | <?php edit_post_link('Edit', '', ' | '); ?> <?php comments_popup_link('No Comments »', '1 Comment »', '% Comments »'); ?></p> </div> <?php endwhile; ?> <div class="navigation"> <div class="alignleft"><?php next_posts_link('« Older Entries') ?></div> <div class="alignright"><?php previous_posts_link('Newer Entries »') ?></div> </div> <?php else : ?> <h2 class="center">Not Found</h2> <p class="center">Sorry, but you are looking for something that isn't here.</p> <?php include (TEMPLATEPATH . "/searchform.php"); ?> <?php endif; ?> <!---- PUT YOUR LINKS BELOW HERE---> <p><a href="http://www.whatever.com" >Some Text Describing Link 1</a><br /> <a href="http://www.whatever.com" >Some Text Describing Link 1</a><br /> </p> </div>Hope that helps
Forum: Plugins
In reply to: Theme “page-style” missing template and style sheetMake sure that the file is actually in there or not. ..pathtowordpress/wp-content/themes/page-style/template.php
If its not. Might consider downloading again, or google your exact question and see if anyone else has that problem.