Forum Replies Created

Viewing 8 replies - 16 through 23 (of 23 total)
  • Thread Starter mgrace74

    (@mgrace74)

    I have gotten comments, and I don’t know if my host has changed server settings. What kind of settings could affect this?

    Is it possible to manually unsubscribe emails from the list from an administrator view?

    Ok, here’s my problem. I’ve got the new feed address say thankya, but I can’t find where to change the one which appears on my site (the wp-rss2.php link). In my template, my code looks like this:

    <li><a href="<?php bloginfo('rss2_url'); ?>" title="<?php _e('Syndicate this site using RSS'); ?>"><?php _e('<abbr title="Really Simple Syndication">RSS</abbr>'); ?></a></li>

    I’ve updated my wp-feed.php file, so if you try to find the feed with an aggregator, it finds the good one, but I can not find where to change the link. Any help is appreciated.

    Thread Starter mgrace74

    (@mgrace74)

    bump please

    Forum: Plugins
    In reply to: wp-photos & the edit file
    Thread Starter mgrace74

    (@mgrace74)

    OK, I think we’re finally getting somewhere. I’m not sure what I need to edit in the wp-photos.php file. Can you point me in the right direction as far as what settings need to be set?

    Forum: Plugins
    In reply to: wp-photos & the edit file
    Thread Starter mgrace74

    (@mgrace74)

    Nope, that produced the same result as last time. I’m starting to wonder if I have the right files in the right place. I have wp-photo.php, wp-photos-installer.php, and wp-photos-manager.php in the root directory of my blog. I also have wp-photos.php in the plugin directory, and it is activated. Are these the correct files?

    Forum: Plugins
    In reply to: wp-photos & the edit file
    Thread Starter mgrace74

    (@mgrace74)

    Again, thanks for your time and effort, but it is still not working. There is nothing displayed after the photo column on my screen, and only my most recent entry is displayed in the rows. The problem has to be in this code:

    case ‘photos’:
    ?>
    <td><?php wpphotos_link(); ?></td>
    <?php
    break;

    If you have any other suggestions, they would be greatly appreciated.

    Forum: Plugins
    In reply to: wp-photos & the edit file
    Thread Starter mgrace74

    (@mgrace74)

    Thank you for your response. For whatever reason, it’s still not working….here is my code:

    // define the columns to display, the syntax is ‘internal name’ => ‘display name’
    $posts_columns = array(
    ‘id’ => __(‘ID’),
    ‘date’ => __(‘When’),
    ‘title’ => __(‘Title’),
    ‘categories’ => __(‘Categories’),
    ‘comments’ => __(‘Comments’),
    ‘photos’ => __(‘Photos’),
    ‘author’ => __(‘Author’)

    );
    $posts_columns = apply_filters(‘manage_posts_columns’, $posts_columns);

    // you can not edit these at the moment
    $posts_columns[‘control_view’] = ”;
    $posts_columns[‘control_edit’] = ”;
    $posts_columns[‘control_delete’] = ”;

    ?>

    <table width=”100%” cellpadding=”3″ cellspacing=”3″>
    <tr>

    <?php foreach($posts_columns as $column_display_name) { ?>
    <th scope=”col”><?php echo $column_display_name; ?></th>
    <?php } ?>

    </tr>
    <?php
    $what_to_show = ‘posts’;
    if ( empty($_GET[‘m’]) || 0 == $_GET[‘m’] && empty($_GET[‘s’]) ) {
    $showposts = 15;
    } else {
    $nopaging = true;
    }

    include(ABSPATH.’wp-blog-header.php’);

    if ($posts) {
    $bgcolor = ”;
    foreach ($posts as $post) { start_wp();
    $class = (‘alternate’ == $class) ? ” : ‘alternate’;
    ?>
    <tr class='<?php echo $class; ?>’>

    <?php

    foreach($posts_columns as $column_name=>$column_display_name) {

    switch($column_name) {

    case ‘id’:
    ?>
    <th scope=”row”><?php echo $id ?></th>
    <?php
    break;

    case ‘date’:
    ?>
    <td><?php the_time(‘Y-m-d \<\b\r \/\> g:i:s a’); ?></td>
    <?php
    break;
    case ‘title’:
    ?>
    <td><?php the_title() ?>
    <?php if (‘private’ == $post->post_status) _e(‘ – Private‘); ?></td>
    <?php
    break;

    case ‘categories’:
    ?>
    <td><?php the_category(‘,’); ?></td>
    <?php
    break;

    case ‘comments’:
    ?>
    <td>&c=1″>
    <?php comments_number(__(‘0’), __(‘1’), __(‘%’)) ?>
    </td>
    <?php
    break;

    case ‘author’:
    ?>
    <td><?php the_author() ?></td>
    <?php
    break;

    case ‘photos’:
    ?>
    <td><?php wpphotos_link(); ?></td>
    <?php
    break;

    case ‘control_view’:
    ?>
    <td>” rel=”permalink” class=”edit”><?php _e(‘View’); ?></td>
    <?php
    break;

    My screen looks like this now:

    https://www.bmgwebdesign.com/images/screenshotBlog.jpg

    The code looks good, so I can’t figure out what it is. Please let me know if you can think of anything. TIA.

Viewing 8 replies - 16 through 23 (of 23 total)