jambab13
Forum Replies Created
-
Forum: Fixing WordPress
In reply to: How to make this ad not scroll?the ad I mean is the one on the left, just so you know.
Forum: Fixing WordPress
In reply to: Blog white background not showing upBump, i need an answer on how to fix, i know you told me to re-add the footer but how, re-installing? add a bit of code? what? please guys…its urgent.
Forum: Fixing WordPress
In reply to: Blog white background not showing upHow do i do that? lol
re-uploading theme maybe?
Forum: Fixing WordPress
In reply to: Tubepress problem# BEGIN WordPress <IfModule mod_rewrite.c> RewriteEngine On RewriteBase / RewriteRule ^index\.php$ - [L] RewriteCond %{REQUEST_FILENAME} !-f RewriteCond %{REQUEST_FILENAME} !-d RewriteRule . /index.php [L] </IfModule> # END WordPressThats my .htaccess file, i tried putting the
php_value memory_limit 64Mjust inside the </ifmodule> but it just gave a 500 internal error, did i put it in the right place?
Also i have found out that its not my host because i host other blogs and it worked on them.
Forum: Fixing WordPress
In reply to: Adding Page Titles To The Browser Tabs/WindowsWill it change the article pages i already have or not?
Forum: Fixing WordPress
In reply to: Adding Ads Under Postswell i did what u said, and it came up with error so i had to undo it, i cant afford to have errors
Forum: Plugins
In reply to: Error with WP-LinkDirectoryMore info:
The two plugins it states in there are All In One SEO Plugin, and WP-LinkDirectory
i tried disabling the All in one SEO Plugin but then it shows up with this error:
Warning: session_start() [function.session-start]: Cannot send session cache limiter – headers already sent (output started at /home/jamlux/public_html/wp-content/themes/glossyblue-1-4/header.php:5) in /home/jamlux/public_html/wp-content/plugins/wordpress-link-directory/securimage.php on line 422
Forum: Fixing WordPress
In reply to: Title At Top Won’t Changeoh, no worries, it has suddenly disappeared now, i dont know what i did but its disappeared.
thanks for your help π
Forum: Fixing WordPress
In reply to: Title At Top Won’t Changethis is what is in my functions.php
<?php
// Widget Settings
if ( function_exists(‘register_sidebar’) )
register_sidebar(array(
‘name’ => ‘Sidebar’,
‘before_widget’ => ‘<div id=”%1$s” class=”sidebarbox”>’,
‘after_widget’ => ‘</div>’,
‘before_title’ => ‘<h3>’,
‘after_title’ => ‘</h3>’,
));function widget_webdemar_search() {
?>
<div class=”sidebarbox”>
<h3>Search</h3>
<div class=”searchform”>
<form method=”get” action=”<?php echo htmlspecialchars($_SERVER[‘PHP_SELF’]); ?>”>
<input type=”text” name=”s” id=”search” />
<input type=”hidden” id=”search-submit” value=”Search” />
</form>
</div>
</div><?php
}if ( function_exists(‘register_sidebar_widget’) )
register_sidebar_widget(__(‘Search’), ‘widget_webdemar_search’);?>
Forum: Fixing WordPress
In reply to: Title At Top Won’t Changei cant see anything when i look at functions.php
Forum: Fixing WordPress
In reply to: Title At Top Won’t Changebetween <title> and </title> i had
<?php if ( is_home() ) { ?><?php bloginfo(‘description’); ?> | <? bloginfo(‘name’); ?><?php } ?>
<?php if ( is_search() ) { ?><?php echo $s; ?> | <? bloginfo(‘name’); ?><?php } ?>
<?php if ( is_single() ) { ?><?php wp_title(”); ?> | <? bloginfo(‘name’); ?><?php } ?>
<?php if ( is_page() ) { ?><?php wp_title(”); ?> | <? bloginfo(‘name’); ?><?php } ?>
<?php if ( is_category() ) { ?>Archive <?php single_cat_title(); ?> | <? bloginfo(‘name’); ?><?php } ?>
<?php if ( is_month() ) { ?>Archive <?php the_time(‘F’); ?> | <? bloginfo(‘name’); ?><?php } ?>
<?php if ( is_tag() ) { ?><?php single_tag_title();?> | <? bloginfo(‘name’); ?><?php } ?>