jakep_sf
Forum Replies Created
-
Forum: Plugins
In reply to: [LoadedPress Show More] [Plugin: LoadedPress Show More] feature requestFor the a, b, c – currently the plugin doesn’t support multiple ‘mores’ inside of a single ‘showmore’, however the positioning of the link could be solved with a small bit of modification to your stylesheet (the below as applied to the default twenty ten theme):
#content{position:relative; top:0; left:0;} #content .showmore{border:solid 1px #000;} #content .showmore a{ position:absolute; top:10px; right:0; border:solid 1px #000; padding:2px 8px; }
Forum: Plugins
In reply to: [LoadedPress Show More] [Plugin: LoadedPress Show More] feature requestOvidiu,
Answered your request back at the demo blog, that’s built in functionality, but perhaps we can make the instructions a bit more informative. Thanks for request.Forum: Themes and Templates
In reply to: Missing Logo In Header.. Only On 'Post' Pages..?I still believe it to be a relative url issue. The best way to solve this is to upload your logo into the theme directory and call it with wp’s get_bloginfo(‘stylesheet_directory’).
if you do the above (after uploading your file to the directory) you can call the logo by:
<img src=”<?php echo get_bloginfo(‘stylesheet_directory’); ?>/images/logo.png”>
assuming you have ftp access.. if not, try linking your image absolutely and make sure you change it when the site goes live ( <img src=”https://localhost/powerfactorservices/wordpress/wp-content/uploads/2010/11/logo.png”> )
Forum: Themes and Templates
In reply to: Missing Logo In Header.. Only On 'Post' Pages..?in your header file where the logo is linked try replacing
<img src=”wp-content/uploads/2010/11/logo.png”>
with
<img src=”/wp-content/uploads/2010/11/logo.png”>
Forum: Themes and Templates
In reply to: Missing Logo In Header.. Only On 'Post' Pages..?If you copy your source code and paste it into the paste bin, I’m sure someone here would be more able to help.
Forum: Fixing WordPress
In reply to: Limit excerpt length by charactersboom!
Forum: Fixing WordPress
In reply to: Upgraded today, now having CSS issuesDe,
If you made your changes directly to the Twenty Ten theme, then they’re gone, which is why you should always back up your wordpress and better yet, create a child theme so your changes aren’t overwritten.Forum: Fixing WordPress
In reply to: How to Show AWeber Web Form on Selected PagesBob,
Either make a custom sidebar template with is_page(‘the page’) or is_category(‘aweber’) or use widget logic which basically does the same thing.Forum: Fixing WordPress
In reply to: Limit excerpt length by charactersNem,
Looks like you need a custom functionfunction get_the_twitter_excerpt(){ $excerpt = get_the_content(); $excerpt = strip_shortcodes($excerpt); $excerpt = strip_tags($excerpt); $the_str = substr($excerpt, 0, 20); return $the_str; }
you should be able to put the above into your functions and this
<?php echo 'Excerpt: '.get_the_twitter_excerpt(); ?>
into your loop.
Forum: Fixing WordPress
In reply to: iframe makes rest of page disappear in IE only<iframe ….. ></iframe>
Looks like you’re missing a closing tag from what you posted here. if that was just an omission on your part here, no one will be of much use unless you post a url to your site. Or you could always try validating your site and see if you get any errors that would make sense.
Forum: Fixing WordPress
In reply to: Anyone Can Postwell you can try reading this:
https://codex.www.ads-software.com/Function_Reference/wp_insert_postor just allow everyone that registers with your site to be an author / contributor and clean up after all of the spam a few times a day.
Forum: Fixing WordPress
In reply to: Anyone Can PostI would try the Formidable plugin. From the site:
Create and Edit Posts
Allow your users to not only create posts with your forms, but also manage and edit them. Set the post date, title, slug, excerpt, categories, tags, status (they can select whether it’s a draft or pending review), unlimited custom fields, and of course the content.Forum: Fixing WordPress
In reply to: Media Uploader IssueChaz,
If you’re running php5, make sure your php.ini file is named php5.ini.Here are my settings that i modified while on the phone with godaddy support:
php_value upload_max_filesize 20M php_value post_max_size 20M php_value max_execution_time 200 php_value max_input_time 200 post_max_size = 64M file_upload = on upload_max_filesize = 64M
Forum: Fixing WordPress
In reply to: Sidebar Widgets Issue in Chrome and IEa link to your site may help more.
Forum: Fixing WordPress
In reply to: [NSFW] Text Links Won't Work on Pagesusedpantysellingadvice? finally!
might want to slap a nsfw on there for someone with a boss not paying attention to links..If the gov can’t help you solve it, try disabling all of your plugins to see if they are causing an issue.