Forum Replies Created

Viewing 6 replies - 1 through 6 (of 6 total)
  • Thread Starter tfirma2000

    (@tfirma2000)

    OK thanks! — I didn’t see my profile link on https://www.www.ads-software.com homepage, but now I see it would be on this page: https://www.ads-software.com/support/profile/MY-USERNAME

    How does one “change the id in wp_wpsqt_all_questions”?

    Though I see the questions ID on the survey page, when I click EDIT I don’t see a way to change the question ID #

    Thread Starter tfirma2000

    (@tfirma2000)

    I found the answer – Under USERS in Admin Menu, there’s an “Unverified Users” link. There you can manually approve users, re-send verification link, etc.

    tfirma2000

    (@tfirma2000)

    Not sure if that is just an old version where you have to change the category number in the code, but the theme doesn’t work that way anymore. If you take a look at the README.txt file that came with the theme it says now that you can set the categories in the theme configuration.

    In your WordPress Admin in the left column go to the APPEARANCES section and select “Lifestyle Theme Options” (I belive it’s on this page: YOURDOMAIN.COM/wp-admin/themes.php?page=theme-options ) — from there you can set which category and how many posts to display in the top right, top left and bottom sections.

    tfirma2000

    (@tfirma2000)

    Hmmm that didn’t work for me. I am having the same issue — when I add the above code, something does display now when I go to the plugins.php page, but it’s a bunch of code that displays

    $time) { if ( isset($recent[ $plugin ]) ) unset($recent[ $plugin ]); } if( $recent != get_option('recently_activated') ) //If array changed, update it. update_option('recently_activated', $recent); wp_redirect('plugins.php?activate-multi=true'); exit; break; case 'error_scrape': check_admin_referer('plugin-activation-error_' . $plugin); $valid = validate_plugin($plugin); if ( is_wp_error($valid) ) wp_die($valid); error_reporting( E_ALL ^ E_NOTICE ); @ini_set('display_errors', true); //Ensure that Fatal errors are displayed. include(WP_PLUGIN_DIR . '/' . $plugin); do_action('activate_' . $plugin); exit; break; case 'deactivate': check_admin_referer('deactivate-plugin_' . $plugin); deactivate_plugins($plugin); update_option('recently_activated', array($plugin => time()) + (array)get_option('recently_activated')); wp_redirect('plugins.php?deactivate=true'); exit; break; case 'deactivate-selected': check_admin_referer('bulk-manage-plugins'); deactivate_plugins($_POST['checked']); $deactivated = array(); foreach ( (array)$_POST['checked'] as $plugin ) $deactivated[ $plugin ] = time(); update_option('recently_activated', $deactivated + (array)get_option('recently_activated')); wp_redirect('plugins.php?deactivate-multi=true'); exit; break; case 'delete-selected': if ( ! current_user_can('delete_plugins') ) wp_die(__('You do not have sufficient permissions to delete plugins for this blog.')); check_admin_referer('bulk-manage-plugins'); $plugins = $_REQUEST['checked']; //$_POST = from the plugin form; $_GET = from the FTP details screen. include(ABSPATH . 'wp-admin/update.php'); $title = __('Delete Plugin'); $parent_file = 'plugins.php'; if ( ! isset($_REQUEST['verify-delete']) ) { wp_enqueue_script('jquery'); require_once('admin-header.php'); ?>
    
          ', sprintf(__('%s by %s'), $plugin['Name'], $plugin['Author']), ''; ?>
    tfirma2000

    (@tfirma2000)

    I have the same problem. Am running WP 2.7.1. My hosting company told me that process is connecting to 72.233.56.139 IP 80 port (which wordpress.com) and is not getting a reply. I have not yet resolved it, but suspect a WP upgrade may help.

    What version are you running?>

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