joshgx
Forum Replies Created
-
Forum: Plugins
In reply to: [Skin Login] Change logo url and alternate textno problem mrcavallo! glad to help.
Forum: Plugins
In reply to: [Skin Login] Change logo url and alternate textKara,
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.
Forum: Plugins
In reply to: [Plugin: Affiliate Plus] How usemindnl 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!
Forum: Fixing WordPress
In reply to: add category selection to new post on front pageHey 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!
Forum: Themes and Templates
In reply to: p2 front end categories: AJAX component?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!!!!