Forum Replies Created

Viewing 10 replies - 1 through 10 (of 10 total)
  • Thread Starter travelbug2007

    (@travelbug2007)

    Is this the correct spot to submit the bug? https://www.w3-edge.com/contact/

    Thread Starter travelbug2007

    (@travelbug2007)

    No I do not use anything called minify. Is there any other reason why this would freeze up the slider.

    It’s so confusing that it works on one of my sites and not the other. Both have the same Genesis BackCountry theme.

    The only difference between the two sites is one was started from scratch with Genesis, the one that is freezes the slider on was originally on a different non-Genesis theme.

    Both have the slider working at the moment, but the travelfootprints one is only working because I have the W3 Total cache plugin disabled.
    https://www.travelfootprints.ca
    https://www.banffandbeyond.com

    Is this the correct spot I have posted in for the plugin author to respond, or is there any place to post to?

    Thanks

    Forum: Fixing WordPress
    In reply to: Widget is broken?
    Thread Starter travelbug2007

    (@travelbug2007)

    Sort of came to a solution for this issue. I was not getting any where with this problem. I had another post about it, but sort of going from a different angle, and it seemed to be stumping anyone trying to help me.

    I finally found some info with other people having the same problem. They suggested I try and open up my site in another browser. Most people having the same problem were using IE and were able to finally edit their widget by opening in Firefox.

    I had the opposite, I only use Firefox, so opened up in IE and I’ll be darned if the widget was not completely normal there and I could edit it.

    If I go back to Firefox now, it is still not working in it. So from now on I guess I will just have to remember to open IE if I need to make changes just for that specific widget. How bizarre!

    Any feedback from someone who can give an explanation for this would be appreciated. Is this a wordpress glitch or did I do something to cause it?

    I have posted this issue in the feedback thread as well.

    Thank you

    Thread Starter travelbug2007

    (@travelbug2007)

    Thank you, got it all done and a new version of wordpress installed:)

    Thread Starter travelbug2007

    (@travelbug2007)

    Hello again,

    Sorry to have to keep dragging this post on, but I am just not having any luck with this. To the best of my knowledge I have wordpress 2.5 if that is such a version. There is no version listed at the bottom of any of the pages when I log in. It only says Thank you for creating with WordPress Get version 2.5.1

    Something is really strange with this Recent Post Widget that is in my sidebar. At one point I would have put some writing in for it because it says Recent Posts:Painting Information in the box. It is in the spot where the rest of the plugins have been dragged over that are currently in my sidebar, but it just does not have any option to do anything to it. The other plugins have a litte word edit right on the box that you can click on and then make changes, remove it, etc. The way this plugin is right now, I can’t even remove it. I am not even sure how it got there at this point.

    My theme I am using and website are up top in one of my above posts if that will help to look at.

    I will not go ahead and try to change the core files at this point as the last post warns against. I am a newbie and will trust the advice of someone with more knowledge.

    Don’t know what to do at this point, any suggestions please.
    Thank you

    Thread Starter travelbug2007

    (@travelbug2007)

    Hi,

    I just put wordpress in the other day through Fantastico, I am not sure which version I have, whatever it gave me. I see it is telling me to update to version 2.5.1 so I assume I have the version prior to that.

    I see the icon for the widget that is in the sidebar, but unlike the other widgets, it does not have that tiny edit work that you can click on and make changes to, not sure why?

    So I assume I do need to change it in the widget.php?

    Thank you

    Thread Starter travelbug2007

    (@travelbug2007)

    https://wordpress.pastebin.ca/1006501

    Here is the pastebin for my widget.php

    Thank you

    My site is https://www.parnellpainting.com

    and the theme is Floralia

    Thank you

    Thread Starter travelbug2007

    (@travelbug2007)

    Hello, me again

    I think I got a little farther along, but still am a bit confused. I found the widget.php The lines that I was told to look for have a number of 15 in both spots, but I only have 5 recent posts showing. I see some lines of code with number 5, but I was not sure if they were the numbers to change to show more entries. I would like more than 5 entries to show. Can someone please tell me where in the widget.php I need to make changes? I only pasted the section of it that I thought was relevant. Please let me know if I am not in the right place at all.

    Thank you

    wp_flush_widget_recent_entries();
    }
    $title = attribute_escape($options[‘title’]);
    if ( !$number = (int) $options[‘number’] )
    $number = 5;
    ?>

    <p><label for=”recent-entries-title”><?php _e(‘Title:’); ?> <input class=”widefat” id=”recent-entries-title” name=”recent-entries-title” type=”text” value=”<?php echo $title; ?>” /></label></p>
    <p>
    <label for=”recent-entries-number”><?php _e(‘Number of posts to show:’); ?> <input style=”width: 25px; text-align: center;” id=”recent-entries-number” name=”recent-entries-number” type=”text” value=”<?php echo $number; ?>” /></label>

    <small><?php _e(‘(at most 15)’); ?></small>
    </p>
    <input type=”hidden” id=”recent-entries-submit” name=”recent-entries-submit” value=”1″ />
    <?php
    }

    function wp_widget_recent_comments($args) {
    global $wpdb, $comments, $comment;
    extract($args, EXTR_SKIP);
    $options = get_option(‘widget_recent_comments’);
    $title = empty($options[‘title’]) ? __(‘Recent Comments’) : $options[‘title’];
    if ( !$number = (int) $options[‘number’] )
    $number = 5;
    else if ( $number < 1 )
    $number = 1;
    else if ( $number > 15 )
    $number = 15;

    if ( !$comments = wp_cache_get( ‘recent_comments’, ‘widget’ ) ) {
    $comments = $wpdb->get_results(“SELECT comment_author, comment_author_url, comment_ID, comment_post_ID FROM $wpdb->comments WHERE comment_approved = ‘1’ ORDER BY comment_date_gmt DESC LIMIT $number”);
    wp_cache_add( ‘recent_comments’, $comments, ‘widget’ );
    }
    ?>

    <?php echo $before_widget; ?>
    <?php echo $before_title . $title . $after_title; ?>
    <ul id=”recentcomments”><?php
    if ( $comments ) : foreach ($comments as $comment) :
    echo ‘<li class=”recentcomments”>’ . sprintf(__(‘%1$s on %2$s’), get_comment_author_link(), ‘comment_post_ID) . ‘#comment-‘ . $comment->comment_ID . ‘”>’ . get_the_title($comment->comment_post_ID) . ‘‘) . ”;
    endforeach; endif;?>
    <?php echo $after_widget; ?>
    <?php
    }

    function wp_delete_recent_comments_cache() {
    wp_cache_delete( ‘recent_comments’, ‘widget’ );
    }
    add_action( ‘comment_post’, ‘wp_delete_recent_comments_cache’ );
    add_action( ‘wp_set_comment_status’, ‘wp_delete_recent_comments_cache’ );

    function wp_widget_recent_comments_control() {
    $options = $newoptions = get_option(‘widget_recent_comments’);
    if ( $_POST[“recent-comments-submit”] ) {
    $newoptions[‘title’] = strip_tags(stripslashes($_POST[“recent-comments-title”]));

    Thread Starter travelbug2007

    (@travelbug2007)

    oops!!!! Sorry, messed that post up really bad. I meant to put my website link in and ended up linking my whole post. My website is https://www.parnellpainting.com

    Thread Starter travelbug2007

    (@travelbug2007)

    Thank you, that worked!

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