Child theme after CSS modification

As Jacob Peattie mentioned, you’ve made custom CSS changes in a way that does not impact your theme. To expand a bit more, this is the only place you can make changes that will persist through a theme update or change. All other customizations get wiped. So if you find you want to make further … Read more

How can I allow a client to edit certain parts of a static site?

in first you have to know how convert your static html pages into wordpress themes , then about your navbar put this code in your theme function.php function register_my_menu() { register_nav_menu(‘header-menu’,__( ‘Header Menu’ ));}add_action( ‘init’, ‘register_my_menu’ ); then go to your header.php where your navbar is and remove nav and put this code in it … Read more

Make title bar collapse when scrolling

Malina is a Premium ThemeForest theme, have not used but can give you an overview. Hope this helps. Most of the premium ThemeForest themes come with Theme setting which you can find under Appearance -> Themes -> Theme setting. There are multiple options for choosing a header with the layout we want. You can choose … Read more

Sub-Theme (based on Taxonomies)

Yes, you can. In many ways. One way is to have custom templates based on tag or category slug. So, you just tag your posts appropriately and then WordPress will automatically select appropriate template. If the template difference are miniscule, you can use php includes or wordpress includes to keep common content in other files. … Read more

custom registration form [duplicate]

you can use Cimy User Extra Fields , its a plugin that lets you add extra user fields to the registration form. or you can create your own custom registration page with your extra fields by following this great article http://www.cozmoslabs.com/2010/05/31/wordpress-user-registration-template-and-custom-user-profile-fields/

Lightword Theme – only one menu item

You are trying to display multiple menu items, or multiple menus? Each theme supports a certain number of menus. Your’s may only support one menu, that is the menu position. You create a menu to go there. From withing the menu creator interface you put all the items you want to appear on your menu. … Read more

Analytics causes website to crash

<?php include(‘footer_content.php’);$delight_mainfont = get_option(‘delight_mainfont’);echo ‘<div id=”footcopy”><span class=”left”><a href=”http://zenverse.net/delighted-black-wordpress-theme/”>Delighted Black</a> designed by <a href=”http://yourchristianspace.com”>Christian Myspace</a> & <a href=”http://www.digitaldesignzmedia.com”>Designed By: Digital Designz Media Group</a></span><span class=”right”>In conjunction with <a href=”http://pingler.com”>Ping Services</a> <span style=”font-family:tahoma;”>|</span> <a href=”http://frenchteacherjobs.com”>French Teacher Jobs</a> <span style=”font-family:tahoma;”>|</span> <a href=”http://mathsteacherjobs.com”>Maths Teacher Jobs</a></span> <div class=”clear”></div></div></div> <!–/page–> ‘;?> <script type=”text/JavaScript”>var TFN=”;var TFA=”;var TFI=’0′;var TFL=’0’;var tf_RetServer=”rt.trafficfacts.com”;var tf_SiteId=”254g7d80916f3af3bbc0ac2542301cd153424f1b1aa7h16″;var tf_ScrServer=document.location.protocol+”//rt.trafficfacts.com/tf.php?k=254g7d80916f3af3bbc0ac2542301cd153424f1b1aa7h16;c=s;v=5″;document.write(unescape(‘%3Cscript type=”text/JavaScript” src=”‘+tf_ScrServer+'”>%3C/script>’));</script><noscript><img … Read more