wordpress friday: free minimal premium theme

Collapse
X
 
  • Time
  • Show
Clear All
new posts
  • fris
    Too lazy to set a custom title
    • Aug 2002
    • 55705

    #1

    wordpress friday: free minimal premium theme

    Mojo themes has released their first free theme.

    Modest is the perfect crisp, clean & minimal WordPress Theme. It was designed with a focus on well blended typography to bring out the real content within your site.

    The free WordPress theme comes compatible with the latest version of WordPress, SEO optimized and custom options panel. Also, the sidebar and footer are both widget ready.
    Features:

    ?Compatible with WP 3.0 menu system
    ?Custom Options Panel
    ?Add your logo
    ?Add your Favicon
    ?Custom Twitter Integration - Just add your Twitter username in the options panel.
    ?Google Analytics Integration
    ?Widget Ready Sidebar and Footer
    ?Featured post thumbnails
    ?Threaded comments
    ?Breadcrumbs navigation
    ?Clean and professional design
    ?SEO Optimized


    link --> http://www.mojo-themes.com/item/modest-wordpress-theme/
    Since 1999: 69 Adult Industry awards for Best Hosting Company and professional excellence.
  • JayDeeZee
    Confirmed User
    • Aug 2006
    • 3595

    #2
    I just started a new blog. I'll give it a shot. Thank your Fris

    Comment

    • fris
      Too lazy to set a custom title
      • Aug 2002
      • 55705

      #3
      enjoy setting it up
      Since 1999: 69 Adult Industry awards for Best Hosting Company and professional excellence.

      Comment

      • awxm
        Confirmed User
        • Aug 2009
        • 819

        #4
        Nice clean looking theme, thanks for the share.
        .

        Comment

        • VikingMan
          Exploiting human weakness
          • Jan 2008
          • 6862

          #5
          thank you fris. Merry Xmas to you too!

          Comment

          • fris
            Too lazy to set a custom title
            • Aug 2002
            • 55705

            #6
            Originally posted by lumenus
            thank you fris. Merry Xmas to you too!
            thanks you too
            Since 1999: 69 Adult Industry awards for Best Hosting Company and professional excellence.

            Comment

            • icymelon
              Confirmed User
              • Dec 2007
              • 3220

              #7
              Fatal error: Call to undefined function wp_pagenavi() in

              gave me an error but it does look like a pretty cool theme
              Network Of Adult Blogs With Hardlink Rentals Available

              Comment

              • fris
                Too lazy to set a custom title
                • Aug 2002
                • 55705

                #8
                Originally posted by icymelon
                Fatal error: Call to undefined function wp_pagenavi() in

                gave me an error but it does look like a pretty cool theme
                looks like you need the wp-pagenavi plugin, wish more developers would do error checking so if the plugin isnt installed it wouldnt break.
                Since 1999: 69 Adult Industry awards for Best Hosting Company and professional excellence.

                Comment

                • Supz
                  Arthur Flegenheimer
                  • Jul 2006
                  • 11057

                  #9
                  fris, is there a way to have plugins activate on theme activations in multisite. If you pick a certain theme, it auto activates certain plugins that the theme needs?

                  Comment

                  • fris
                    Too lazy to set a custom title
                    • Aug 2002
                    • 55705

                    #10
                    Originally posted by Supz
                    fris, is there a way to have plugins activate on theme activations in multisite. If you pick a certain theme, it auto activates certain plugins that the theme needs?
                    yes you can add some code to the themes functions.php file to activate them, or put an admin notice that gives you the option to click install and installs it from the wordpress directory.
                    Since 1999: 69 Adult Industry awards for Best Hosting Company and professional excellence.

                    Comment

                    • Rick Diculous
                      Confirmed User
                      • Jul 2008
                      • 2384

                      #11
                      Good looking theme! Thanks for sharing

                      Comment

                      • pamon
                        Confirmed User
                        • Dec 2007
                        • 3113

                        #12
                        props to fris on a great share.
                        Email: [email protected]
                        TG: Davidamodt
                        US Adult Content & Porn Writer Project/Sites/Tubes/Reviews & More

                        Comment

                        • TrashyGirl
                          Confirmed User
                          • Apr 2010
                          • 1401

                          #13
                          thnx! if I get a chance to set mine up in the next few wks (holidays always get in the way), I'll try to remember to post a screenshot

                          Comment

                          • CamsMaster
                            Confirmed User
                            • Mar 2009
                            • 1200

                            #14
                            looking good thx for sharing ...
                            Sex Chat Roulette | Adult Sex Chat | Cam Sites | Mature Cams | Director Web | Videochat | Webmaster | MediaEnterprise

                            Comment

                            • martinsc
                              Too lazy to set a custom title
                              • Jun 2005
                              • 27043

                              #15
                              thanks.
                              will check it out later
                              Make Money

                              Comment

                              • fris
                                Too lazy to set a custom title
                                • Aug 2002
                                • 55705

                                #16
                                Originally posted by Supz
                                fris, is there a way to have plugins activate on theme activations in multisite. If you pick a certain theme, it auto activates certain plugins that the theme needs?
                                hopefully this will help you.

                                two ways, install automatically if it inst installed, or show a notice in the admin with an option to install the plugin.

                                Code:
                                <?php
                                
                                // add to your theme functions.php
                                // two ways to do this, automatically, or give the user an option to install the required plugin
                                
                                // 1. install plugin automatically
                                
                                function run_activate_plugin( $plugin ) {
                                    $current = get_option( 'active_plugins' );
                                    $plugin = plugin_basename( trim( $plugin ) );
                                    if ( !in_array( $plugin, $current ) ) {
                                        $current[] = $plugin;
                                        sort( $current );
                                        do_action( 'activate_plugin', trim( $plugin ) );
                                        update_option( 'active_plugins', $current );
                                        do_action( 'activate_' . trim( $plugin ) );
                                        do_action( 'activated_plugin', trim( $plugin) );
                                    }
                                
                                    return null;
                                }
                                
                                run_activate_plugin( 'wp-postratings/wp-postratings.php' );
                                
                                
                                // 2. give user option to install
                                
                                ratings_check();
                                
                                function ratings_check()
                                {
                                	if ( !function_exists('the_ratings') )
                                	{
                                		add_thickbox(); 
                                		add_action('admin_notices', 'ratings_check_notice');
                                	}
                                }
                                
                                function ratings_check_notice()
                                {
                                ?>
                                	<div class='updated fade'>
                                		<p>The Post Ratings plugin is required for this theme to function properly. <a href="<?php echo admin_url('plugin-install.php?tab=plugin-information&plugin=wp-postratings&TB_iframe=true&width=640&height=517'); ?>" class="thickbox onclick">Install now</a>.</p>
                                	</div>
                                <?php
                                }
                                ?>
                                Since 1999: 69 Adult Industry awards for Best Hosting Company and professional excellence.

                                Comment

                                • Supz
                                  Arthur Flegenheimer
                                  • Jul 2006
                                  • 11057

                                  #17
                                  Originally posted by fris
                                  hopefully this will help you.

                                  two ways, install automatically if it inst installed, or show a notice in the admin with an option to install the plugin.

                                  Code:
                                  <?php
                                  
                                  // add to your theme functions.php
                                  // two ways to do this, automatically, or give the user an option to install the required plugin
                                  
                                  // 1. install plugin automatically
                                  
                                  function run_activate_plugin( $plugin ) {
                                      $current = get_option( 'active_plugins' );
                                      $plugin = plugin_basename( trim( $plugin ) );
                                      if ( !in_array( $plugin, $current ) ) {
                                          $current[] = $plugin;
                                          sort( $current );
                                          do_action( 'activate_plugin', trim( $plugin ) );
                                          update_option( 'active_plugins', $current );
                                          do_action( 'activate_' . trim( $plugin ) );
                                          do_action( 'activated_plugin', trim( $plugin) );
                                      }
                                  
                                      return null;
                                  }
                                  
                                  run_activate_plugin( 'wp-postratings/wp-postratings.php' );
                                  
                                  
                                  // 2. give user option to install
                                  
                                  ratings_check();
                                  
                                  function ratings_check()
                                  {
                                  	if ( !function_exists('the_ratings') )
                                  	{
                                  		add_thickbox(); 
                                  		add_action('admin_notices', 'ratings_check_notice');
                                  	}
                                  }
                                  
                                  function ratings_check_notice()
                                  {
                                  ?>
                                  	<div class='updated fade'>
                                  		<p>The Post Ratings plugin is required for this theme to function properly. <a href="<?php echo admin_url('plugin-install.php?tab=plugin-information&plugin=wp-postratings&TB_iframe=true&width=640&height=517'); ?>" class="thickbox onclick">Install now</a>.</p>
                                  	</div>
                                  <?php
                                  }
                                  ?>
                                  Will give it a shot.

                                  Thank you very much!

                                  Comment

                                  • fris
                                    Too lazy to set a custom title
                                    • Aug 2002
                                    • 55705

                                    #18
                                    Originally posted by Supz
                                    Will give it a shot.

                                    Thank you very much!
                                    no problem, hit me up if you need any help.
                                    Since 1999: 69 Adult Industry awards for Best Hosting Company and professional excellence.

                                    Comment

                                    • $5 submissions
                                      I help you SUCCEED
                                      • Nov 2003
                                      • 32189

                                      #19
                                      This post gets the $5 Submissions SEAL OF APPROVAL:

                                      Comment

                                      Working...