Forum Replies Created

Viewing 15 replies - 91 through 105 (of 118 total)
  • Thread Starter ishan001

    (@ishan001)

    I have disabled all plugins! Still no luck!

    Thread Starter ishan001

    (@ishan001)

    I am using Thesis 1.6!

    And yes, I’m using WP 3.0!

    And I have upgraded! Now, should I wait for actual upgrade or downgrade? I am having problems with CDN. To be exact, all the cloudfront settings are there but plugin is displaying a big banner at top of admin pages saying: Content Delivery Network Error: The “Access key”, “Secret key”, “Bucket” and “Replace default hostname with” fields must be populated.
    And strangely, CDN is working for some images(i.e. plugin is updating urls for only some images!) and others are being served from own server. Isn’t plugin supposed to rewrite all URLs?

    I am also getting same error!

    Thread Starter ishan001

    (@ishan001)

    And yes, directory has permisions 755. Are these sufficient?

    Thread Starter ishan001

    (@ishan001)

    Any help?

    Thread Starter ishan001

    (@ishan001)

    Thanks a lot.

    Well, go to yourdomin.com/wp-admin You can log in here.

    Well, this may not be good idea. Not many people use WP with FB and most importantly, WP is supposed to be light. If dev team starts adding small features into the core, it would become too bloated. Why not request a plugin for this?

    Well, according to what I have seen, WP might not be perfect for classifieds site. If you can, try Joomla. The Ad Manager component(free) is something that can help a lot.

    Was this problem present with WP 2.8.3 or prior versions? If now, try degrading or contact the script developer to check memory use!

    Thread Starter ishan001

    (@ishan001)

    Titles can be easily fixed. I liked my theme titles, so retained it. Here’s a bit on change:

    Here’s how a sidebar declaration goes:
    register_sidebar(array('name'=>'FooterExtremeRight','before_widget' => '<div class="widget">','after_widget' => '</div>','before_title' => '<h2>','after_title' => '</h2>',

    Notice h2 tags here? They control footer titles. If you want to change, just lower them( h3,h4,h5 )! I have learned some HTML and CSS is not much different! Glad the fix helped you! ??

    Thread Starter ishan001

    (@ishan001)

    Finally, here’s the working code(fully tested every footer sidebar with multiple widgets!)

    Code in Style.css:

    #subfooter {
    width:950px;
    overflow: hidden;
    margin-left:auto;
    margin-right:auto;
    height:auto;
    background-color:#f3f1e0;
    border: 1px solid #D9D6BC;
    clear:both;
    }  
    
    .FooterLeft {
    	width: 230px;
    	float: left;
            padding: 2px;
    	}
    
    .FooterRight {
    	width: 230px;
    	float: left;
            padding: 2px;
    	}
    
    .FooterCenter {
    	width: 230px;
    	float: left;
            padding: 2px;
    	}
    
    .FooterExtremeRight {
    	width: 230px;
    	float: left;
            padding: 2px;
    	}
    
    #subfooter .FooterLeft .widget {
      margin-bottom: 10px;
      float: left;
      width: 225px;
      display: block;
      position: relative;
    }  
    
    #subfooter .FooterCenter .widget {
      margin-bottom: 10px;
      float: left;
      width: 225px;
      display: block;
    }  
    
    #subfooter .FooterRight .widget {
      margin-bottom: 10px;
      float: left;
      width: 225px;
      display: block;
    }  
    
    #subfooter .FooterExtremeRight .widget {
      margin-bottom: 10px;
      float: left;
      width: 225px;
      display: block;
    }  
    
    #subfooter ul {
      list-style-type: none;
      margin: 0;
      padding: 0;
    }
    #subfooter ul li {
      list-style-type: circle;
      margin: 0px 0px 2px 25px;
      padding: 1px 0px 0px 0px;
    }
    #subfooter ul li a {
      font-size: 12px;
    }
    #subfooter
    
    .alignright { float: right; margin-left: 10px; margin-right: 2px;}
    
    .aligncenter { margin-right: auto; margin-left: auto; }
    
    .alignleft { float: left; margin-right: 10px; margin-left:2px;}

    Code added to Functions.php:

    <?php
     if ( function_exists('register_sidebar') )
    register_sidebar(array('name'=>'Article Sidebar','before_widget' => '<div class="widget">','after_widget' => '</div>','before_title' => '<h2>','after_title' => '</h2>',));
     if ( function_exists('register_sidebar') )
    register_sidebar(array('name'=>'FooterLeft','before_widget' => '<div class="widget">','after_widget' => '</div>','before_title' => '<h2>','after_title' => '</h2>',));
     if ( function_exists('register_sidebar') )
    register_sidebar(array('name'=>'FooterCenter','before_widget' => '<div class="widget">','after_widget' => '</div>','before_title' => '<h2>','after_title' => '</h2>',));
     if ( function_exists('register_sidebar') )
    register_sidebar(array('name'=>'FooterRight','before_widget' => '<div class="widget">','after_widget' => '</div>','before_title' => '<h2>','after_title' => '</h2>',));
     if ( function_exists('register_sidebar') )
    register_sidebar(array('name'=>'FooterExtremeRight','before_widget' => '<div class="widget">','after_widget' => '</div>','before_title' => '<h2>','after_title' => '</h2>',));

    Code added to Footer.php

    <div id="subfooter">
        <div class="FooterLeft">
                <?php if ( !function_exists('dynamic_sidebar') || !dynamic_sidebar('FooterLeft') ) : ?>
    			<?php endif; ?>
        </div>	
    
        <div class="FooterCenter">
            <?php if ( !function_exists('dynamic_sidebar') || !dynamic_sidebar('FooterCenter') ) : ?>        <?php endif; ?>
    	</div>	
    
        <div class="FooterRight">
                <?php if ( !function_exists('dynamic_sidebar') || !dynamic_sidebar('FooterRight') ) : ?>
    			<?php endif; ?>
        </div>	
    
        <div class="FooterExtremeRight">
                <?php if ( !function_exists('dynamic_sidebar') || !dynamic_sidebar('FooterExtremeRight') ) : ?>
    			<?php endif; ?>
        </div>
    
    </div>

    Just change color values according to your theme and it will work!

Viewing 15 replies - 91 through 105 (of 118 total)