ishan001
Forum Replies Created
-
Forum: Fixing WordPress
In reply to: Weired Problem: Auto Home Page Redirection!I have disabled all plugins! Still no luck!
Forum: Fixing WordPress
In reply to: Weired Problem: Auto Home Page Redirection!I am using Thesis 1.6!
Forum: Plugins
In reply to: [Plugin: W3 Total Cache] WordPress UpgradeAnd yes, I’m using WP 3.0!
Forum: Plugins
In reply to: [Plugin: W3 Total Cache] WordPress UpgradeAnd 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?Forum: Plugins
In reply to: [Plugin: Maintenance Mode] MM 5.1 won’t installI am also getting same error!
Forum: Plugins
In reply to: advanced-cache.php Missing! Where to get it?And yes, directory has permisions 755. Are these sufficient?
Forum: Plugins
In reply to: [Plugin: WP Super Cache]: It just broke my blog!Any help?
Forum: Plugins
In reply to: [Plugin: Sidebar Login] Login Button Not WorkingTry logging in at https://www.mashthemedia.com/wp-login
Forum: Installing WordPress
In reply to: Moving Between Folders On Same ServerThanks a lot.
Forum: Fixing WordPress
In reply to: Logging in if I took off META on sidebar?Well, go to yourdomin.com/wp-admin You can log in here.
Forum: Requests and Feedback
In reply to: Built-in Cross-posting for Facebook, etc.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?
Forum: Fixing WordPress
In reply to: big problem with wp 2.8.4 and 2.8.5Well, 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.
Forum: Fixing WordPress
In reply to: big problem with wp 2.8.4 and 2.8.5Was this problem present with WP 2.8.3 or prior versions? If now, try degrading or contact the script developer to check memory use!
Forum: Themes and Templates
In reply to: Problems With Widget Placement in FooterTitles 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! ??
Forum: Themes and Templates
In reply to: Problems With Widget Placement in FooterFinally, 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!