Jump to content

yourgoal

Members
  • Posts

    7
  • Joined

  • Last visited

yourgoal's Achievements

Newbie

Newbie (1/7)

0

Reputation

  1. Hi, In my website (Click here) in the sign in page, I have used the instructions as mentioned in this url (http://www.ewtnet.com/2013/06/how-to-create-custom-sign-in-page-in.html). After doing the changes as mentioned, I am facing the below mentioned problems 1) The background image is not showing up for the full page2) How to get rid of the scroller on the page as it is not required3) How to put the sign in form on the leftside of the page instead of right side4) How to remove the signin and signup buttons on top right of the page 5) How to remove the wordings software in orange box. Request you to kindly help asap.
  2. Hi, Thank you for your reply. I checked again and the file is available in the folder and with respect to the support in the forum of Jamit, I am not finding any support from them. As w3 schools was the one where I learnt web desiging and developing, I was sure that I'll get the required support here.
  3. Hi, I am using jamit job board software in my website and there is some issue. Some times the board gives out the error as mentioned below. This error doesn't popup always but only some times. Does any one here have any idea or suggestion on how to resolve this. "Not Acceptable An appropriate representation of the requested resource /employers/post_iframe.php could not be found on this server. Additionally, a 404 Not Found error was encountered while trying to use an ErrorDocument to handle the request." My website url is www.indianretailjobs.com
  4. Hi, I am using the php code as mentioned below to remove the verification email of the new user in my website which is powered by wordpress. However, once the user registers he gets the user name and password on the website screen. I would like to disable this and display "Your password has been sent to your registered email id". I want to user to check his email for the password. <?php /* Plugin Name: Remove Email Verification Plugin URI: Description: This plugin automatically activates user and blog signups, effectively disabling the need for the user to respond to an email Author: Barry at clearskys.net (Incsub) Version: 1.0.3 Author URI: */ /* Copyright 2007-2009 Incsub (http://incsub.com) This program is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License (Version 2 - GPLv2) as published by the Free Software Foundation. This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details. You should have received a copy of the GNU General Public License along with this program; if not, write to the Free Software Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA */ // Remove existing filters - we need to do this in the whitelist_options filter because there isn't another action between // the built in MU one and the saving, besides which we need to add our new_admin_email field to the list anyway. add_filter('whitelist_options', 'remove_mu_option_hooks'); // Blog signup - autoactivate add_filter( 'wpmu_signup_blog_notification', 'activate_on_blog_signup', 10, 7 ); // User signup - autoactivate add_filter( 'wpmu_signup_user_notification', 'activate_on_user_signup', 10, 4 ); // End activation message display add_action( 'signup_finished', 'activated_signup_finished', 1 ); // Change internal confirmation message - user-new.php add_filter('gettext', 'activated_newuser_msg', 10, 3); //Remove BP activation emails. add_filter('wp_mail', 'remove_bp_activation_emails'); function remove_bp_activation_emails($data) { if ( strstr($data['message'], 'To activate your user, please click the following link') || strstr($data['message'], 'To activate your blog, please click the following link') ) { unset( $data ); $data['message'] = ''; $data['to'] = ''; $data['subject'] = ''; } return $data; } function remove_mu_option_hooks($whitelist_options) { global $wp_filter; if(has_action('update_option_new_admin_email', 'update_option_new_admin_email')) { remove_action('update_option_new_admin_email', 'update_option_new_admin_email', 10, 2); // Add our own replacement action add_action('pre_update_option_new_admin_email', 'custom_update_option_new_admin_email', 10, 2); } $whitelist_options['general'][] = 'new_admin_email'; return $whitelist_options; } function custom_update_option_new_admin_email($new_value, $old_value) { global $current_site; // Update the correct fields update_option('admin_email', $new_value); // Return the old value so that the new_admin_email option isn't set return $old_value; } function activate_on_blog_signup($domain, $path, $title, $user, $user_email, $key, $meta) { global $current_site; // Rather than recreate the wheel, just activate the blog immediately $result = wpmu_activate_signup($key); if ( is_wp_error($result) ) { if ( 'already_active' == $result->get_error_code() || 'blog_taken' == $result->get_error_code() ) { $signup = $result->get_error_data(); ?> <h2><?php _e('Congratulations! Your new blog is ready!'); ?></h2> <?php if( $signup->domain . $signup->path != '' ) { } } else { ?> <h2><?php _e('An error occurred during the signup'); ?></h2> <?php echo '<p>'.$result->get_error_message().'</p>'; } } else { extract($result); $url = get_blogaddress_by_id( (int) $blog_id); $user = new WP_User( (int) $user_id); ?> <h2><?php _e('Congratulations! Your new blog is ready!'); ?></h2> <div id="signup-welcome"> <p><span class="h3"><?php _e('Username:'); ?></span> <?php echo $user->user_login ?></p> <p><span class="h3"><?php _e('Password:'); ?></span> <?php echo $password; ?></p> </div> <?php if( !empty($url) ) : ?> <p class="view"><?php printf(__('You're all set up and ready to go. <a href="%1$s">View your site</a> or <a href="%2$s">Login</a>'), $url, $url . 'wp-login.php' ); ?></p> <?php else: ?> <?php endif; } // Now we need to hijack the sign up message so it isn't displayed ob_start(); return false; // Returns false so that the activation email isn't sent out to the user } function activate_on_user_signup($user, $user_email, $key, $meta) { global $current_site, $current_blog; // Output buffer in case we need to email instead of output $html = ''; // Rather than recreate the wheel, just activate the user immediately $result = wpmu_activate_signup($key); if ( is_wp_error($result) ) { if ( 'already_active' == $result->get_error_code() || 'blog_taken' == $result->get_error_code() ) { $signup = $result->get_error_data(); $html .= '<h2>' . __('Hello, your account has been created!') . "</h2>n"; if( $signup->domain . $signup->path == '' ) { } else { } } else { $html .= '<h2>' . __('An error occurred during the signup') . "</h2>n"; $html .= '<p>'.$result->get_error_message().'</p>'; } } else { extract($result); $user = new WP_User( (int) $user_id); $html = '<h2>' . sprintf(__('Hello %s, your account has been created!'), $user->user_login ) . "</h2>n"; $html .= '<div id="signup-welcome">'; $html .= '<p><span class="h3">' . __('Username:') . '</span>' . $user->user_login . '</p>'; $html .= '<p><span class="h3">' . __('Password:') . '</span>' . $password . '</p>'; $html .= '</div>'; } // Check if we are passed in an admin area if(!is_admin() || !(isset($_POST['_wp_http_referer']) && strstr($_POST['_wp_http_referer'], 'user-new.php'))) { echo $html; } // Now we need to hijack the sign up message so it isn't displayed ob_start(); return false; // Returns false so that the activation email isn't sent out to the user } //Invitation email sent to new user. A confirmation link must be clicked before their account is created. function activated_newuser_msg($transtext, $normtext, $domain) { switch ($normtext) { // Plugin page text that we want to remove case 'Invitation email sent to new user. A confirmation link must be clicked before their account is created.': $transtext = __('The new user has been created and an email containing their account details has been sent to them.'); break; case 'If you change this we will send you an email at your new address to confirm it. <strong>The new address will not become active until confirmed.</strong>': $transtext = ''; break; } return $transtext; } function activated_signup_finished() { // Flush the activation buffer ob_end_clean(); } ?> remove verification email.txt
  5. Hi, I am using a free theme for my wordpress site and unable to find which css code to change. The headings for the listing as shown in the below url are in dark blue and I would like to change them to white. Please let me know how to do the same. http://www.yourgoal.in/business-directory/118/off-road/
  6. 2) Hi, I am new here.Can any one help me out with the coding for my websiteI would like to create a form with the following options to be put in a page in my website. • States• Cities• Amount• Category• New topic title• Topic description After a user enters the information as mentioned above and after clicking on the submit button. I want a textbox in the same page to add up the total amount entered by visitors visiting my website and show how much amount has been entered. this should never get deleted. Also, want to have a bar chart in the same page showing the first 4 cities, states and categories selected by visitors visiting my website. Would also like to have a blog where users can enter their story title and story of their experience. “ Idea behind this is I want to create a website where users can discuss their stories of how and when they have paid bribe. To make my website for interactive, I want users to fill a form with the options mentioned above. After the user enters the information, the same has to be shown in the form of bar chart. “
  7. 2) Hi, I am new here.Can any one help me out with the coding for my websiteI would like to create a form with the following options to be put in a page in my website. • States• Cities• Amount• Category• New topic title• Topic descriptionAfter a user enters the information as mentioned above and after clicking on the submit button. I want a textbox in the same page to add up the total amount entered by visitors visiting my website and show how much amount has been entered. this should never get deleted.Also, want to have a bar chart in the same page showing the first 4 cities, states and categories selected by visitors visiting my website. This has to be in % wise. Even this should never get deleted.Would also like to have a blog where users can enter their story title and story of their experience.“ Idea behind this is I want to create a website where users can discuss their stories of how and when they have paid bribe. To make my website for interactive, I want users to fill a form with the options mentioned above. After the user enters the information, the same has to be shown in the form of bar chart. “
×
×
  • Create New...