Forum Replies Created

Viewing 5 replies - 1 through 5 (of 5 total)
  • Thread Starter joshgx

    (@joshgx)

    no problem mrcavallo! glad to help.

    Thread Starter joshgx

    (@joshgx)

    Kara,

    It is placed in the skin-login.php at the end just before the ?>

    $sn_skin_login_css = $style_background_image.$style_background_colour.$style_logo.$style_text_colour.$style_link_colour.$style_button_colour.$style_button_border_colour.$style_theme_css.$style_custom_css;
    
    		// changing the logo link from www.ads-software.com to your site
    			function my_login_url() { return get_home_url(); }
    
    		// changing the alt text on the logo to show your site name
    			function my_login_title() { return get_option('blogname'); }
    
    		// calling it only on the login page
    			add_filter('login_headerurl', 'my_login_url');
    			add_filter('login_headertitle', 'my_login_title');
    
    ?>
    	<style type="text/css">
    		<?php echo $sn_skin_login_css; ?>
    	</style>
    <?php }
    add_action( 'login_enqueue_scripts', 'sn_skin_login_css_styles' );

    here is the end of the file.

    mindnl great plugin. If your interested in another plugin challenge I have some ideas but I’m just not good enough in PHP yet. let me kno!

    Hey guys. I found a way to do this. I posted the instructions over at

    https://www.ads-software.com/support/topic/272697

    There ya go!

    hello to all!

    I successfully modified the P2 Theme (working off of the already modified P2 Theme over at https://www.omarvelous.com/)

    The problem with omarvelous’s theme was it was not posting the category you selected in the dropdown box…. well guess what? it is 3:14 AM and I just figured it out!!!!!!!!!

    Here is what you do:

    1. Goto https://www.omarvelous.com/ and download his theme.
    2. Open the p2.js file and go to line 188.
    3. Change [ $(‘#postcategory’).val(-1); ] to [ $(‘#postcategory’).val(”); ]

    4. Then open post-form.php, go to line 24 and change [ <?php wp_dropdown_categories(‘show_count=1&hierarchical=1&name=postcategory&tab_index=4&show_option_none=Categorize it’); ?> ] to [ <?php wp_dropdown_categories(‘hide_empty=0&name=postcategory&tab_index=4&show_option_none=Choose Category’); ?> ]
    5. Enjoy!!!

    I am absolutely exhausted now but I thought I would share because I know everyones been trying to fix this for a long time!!!!

Viewing 5 replies - 1 through 5 (of 5 total)