futurepocket
Forum Replies Created
-
Forum: Themes and Templates
In reply to: Can't install a theme into my wordpress siteTry recreating the “upgrade” folder in the wp-content’s folder and setting the permissions to 777. If it still doesn’t work, you will have to manually install the theme — which is probably best because I find WordPress’s auto-install/upgrade module very buggy. Just download the theme, extract it and upload it to your wp-content/themes folder.
Forum: Themes and Templates
In reply to: Want to make a template for the "previous posts" pagesThe script is trying pull off the wrong location, just add a forward slash to wp-content… like this:
/wp-content/themes/dariel-EmptyCanvas/images/random/rotate.php
instead of:
wp-content/themes/dariel-EmptyCanvas/images/random/rotate.php
That should fix it.
Forum: Themes and Templates
In reply to: Want to make a template for the "previous posts" pagesI don’t understand what you are trying to do. You want to add the rotate.php script to all your pages/posts not only on the index so the rotating images display on all your posts? Where is the “previous posts” pages, I don’t see any link to that on your website?
Forum: Themes and Templates
In reply to: Displaying webpage before actual WordPress ThemeIf you are trying to create a page totally independent (excluding the header and footer), you can either put your wordpress files in a separate folder such as http://yourdomain.com/blog
Or, you can create a page with a custom template, and use that as your front page. Read this guide: http://joe-riggs.com/blog/2009/07/create-blank-page-for-wordpress-blog-using-your-theme-template/
Alternatively, you can use this code:
<?php /* Template Name: My Page */ ?> <?php get_header(); ?> <div id="content"> <?php if (have_posts()) : while (have_posts()) : the_post(); ?> [ your markup goes here ] <?php endwhile; endif; ?> </div> <?php get_sidebar(); ?> <?php get_footer(); ?>Remove the get sidebar, get footer and get header, and also the div id content and just add your own markup within the page. Then call that template when creating the page and make it your main page.
Forum: Themes and Templates
In reply to: pages and widgetsSelect “Show on Selected” and then use the “Target by URL” box provided to target which pages you would like the widget to be displayed on (you can also specify all posts under certain categories, home page, archive pages etc). OR if you want to hide widgets from certain pages, select hide widgets and add their respective URL’s in the “Target by URL” box provided.
Forum: Themes and Templates
In reply to: how to make a line breakI wouldn’t add line breaks, try adding the image and the text you want to display beside it in a table.
Forum: Themes and Templates
In reply to: Trying to find specific minimal themeI doubt anyone would be able to help you find this theme… the description itself isn’t enough to distinguish b/w the thousands of WordPress themes available.
Forum: Themes and Templates
In reply to: pages and widgetsTry this:
http://wordpress.org/extend/plugins/widget-context/
Should be just what you’re looking for!
Forum: Themes and Templates
In reply to: broken theme, no FTP accessThere is no way to fix this without FTP acess, you would need to remove the theme you were downloading manually through FTP and delete the maintenance file – none of which you can do without FTP access.
Forum: Themes and Templates
In reply to: Featured Image instead Custom fieldsThis would actually require a lot of work and isn’t as easy as it sounds. You would need to modify your theme files to point to featured image for both sections of your theme (which I believe is outdated by this point). You can integrate the post thumbnail (featured image) function in your theme by adding a function:
add_theme_support( 'post-thumbnails' );BUT, this doesn’t necessarily mean it will replace both those images on your page, depends how your theme is calling them.
Wrong section for the posts and yes I’ve noticed the same issue with several social plugins recently that are adding words to META descriptions, disturbing sharing. Hopefully its resolved soon with Sharebar.
Forum: Themes and Templates
In reply to: Excerpt Generating Weird CodeWell, I figured out that Sharebar is messing up the excerpt, specifically the Digg button. Even if I leave the Facebook share and Tweet button in, it adds “Share Tweet” right before the description of the post which is not good for me. Anyway to prevent it from doing this?
Forum: Themes and Templates
In reply to: Twitter Widget ScriptI sort of solved the issue but can’t fully fix it. The problem was that the twitter script uses styles from my theme which were defined to make the logo move in weird positions – so I defined custom CSS to fix it, can’t fix it all the way.
Forum: Themes and Templates
In reply to: Define Custom Field For Facebook Like Image?Sorry, forgot to post URL:
Forum: Hacks
In reply to: Adding Custom FunctionIsn’t there anybody I can pay to create this for me?