cronk005
Forum Replies Created
-
Forum: Fixing WordPress
In reply to: Unable to Delete/Modify PagesHi Schulte-
I meant to post this the other day.
I did contact them and they said that they do not do any server-level caching. I ran a database repair tool and I haven’t had any further issues with any other pages. I’m still having issues with a couple of old pages that I was having issues with, but my solution for that was to delete them and recreate them.
So, I *think* things are OK now. But that remains to be seen.
Thanks to you both for your thoughts.
Regards.
Forum: Fixing WordPress
In reply to: Unable to Delete/Modify PagesI have also contacted the host, Host Rocket (who I have been with since about 2011), regarding the cache. They’re usually pretty good about getting back to me within an hour.
Forum: Fixing WordPress
In reply to: Unable to Delete/Modify PagesThank you. It is so strange. It seems to be only the pages that I’m having issues with. I’m not having this same issue (knock wood) with Posts.
I have tried deactivating all plugins to see if that would resolve the issue, but that did not change the issue.
My current active plugins include:
Akismet
Comment Image
Easy Flash Embed
Fast Secure Contact Form
Flexi Pages Widget
Full Text Feed
Get the Image
Html Embedder
Hum
Lightbox Plus Colorbox
Raw HTML
Related Posts Thumbnails
Short Link Maker
SI CAPTCHA Anti-Spam
Twitter Expander
Twitterlink Comments
World Flags
WP GEo
WP to Twitter
WP World TravelMy Current Deactivated Plugins:
Current Location
Great Circle MapperForum: Fixing WordPress
In reply to: Unable to Delete/Modify PagesP.S., I deleted the wp-admin and wp-includes folders and uploaded the latest versions and still the issue continues.
Forum: Fixing WordPress
In reply to: Unable to Delete/Modify PagesThank you. I have done this. Something still will not let me update certain pages.
What I’m finding strange is that it is not ALL pages, but only certain pages. It also sometimes lets me create new pages, and sometimes I can’t. Sometimes to create a new page I have to make it without a category and then attach it to a category.
At first I thought maybe there was something to do with the category, but I have 4 or 5 pages associated with a category and I can make changes to some pages but not other pages.
It really is a strange issue that’s happening.
Forum: Fixing WordPress
In reply to: Unable to Delete/Modify PagesAs troubleshooting goes, I’ve also tried it in Internet Explorer, Firefox & Google Chrome.
Forum: Fixing WordPress
In reply to: Unable to Delete/Modify PagesHi kmessinger. Thanks again for your input.
1. Wouldn’t activating a basic theme rule out any theme related issues?
2. I disabled ALL of the plug ins and still had the issue. So that would rule out a plug in issue, would it not?
3. I did not receive any errors when I brought up the javascript console and tried deleting a page. It just remained static, with the only message being: Consider using ‘dppx’ units, as in CSS ‘dpi’ means dots-per-CSS-inch, not dots-per-physical-inch, so does not correspond to the actual ‘dpi’ of a screen. In media query expression: print, (-webkit-min-device-pixel-ratio: 1.25), (min-resolution: 120dpi)
Forum: Fixing WordPress
In reply to: Unable to Delete/Modify PagesThank you, kmessinger for your thoughts. Unfortunately, I tried all of that and it still has the issue.
Do you know if there is a way to roll back the Word Press version as a trial?
Forum: Fixing WordPress
In reply to: Unable to Delete/Modify Pages@wmaddrey – you need to create your OWN topic. Do NOT add to other people’s topics!
Forum: Fixing WordPress
In reply to: Unable to Delete/Modify PagesIt also will not always allow me to add pages.
Forum: Plugins
In reply to: [Twitter Widget Pro] CSS & styling issuesthis is what i’m going for.
http://globe-trekking.com/twitter_ideal.jpgForum: Plugins
In reply to: [Twitter Widget Pro] CSS & styling issuesOK, I have solved most of my initial issues and have it somewhat more “presentable”. There is one thing that I really would like to figure out and that is how I can get the twitter graphic to be next to my twitter handle. Currently I have the following as my “twitter-widget” code:
.widget_twitter div { padding:0; width:280px; } .widget_twitter a { text-decoration:none; color:#333333; margin: 0 10px 10px 0; } } .widget_twitter a:visited { text-decoration:underline; color:#FF00FF; } .widget_twitter a:hover { text-decoration:underline; color:#0000CC; } .widget_twitter ul { margin-left: margin-bottom:5px; clear:both; } .widget_twitter li .clear { clear:both; } .widget_twitter .follow-button, .widget_twitter .xavisys-link { margin:0 10px 10px 25px; } .widget_twitter .entry-content { width:280px; margin-top:10px; } .widget_twitter .entry-meta { display:block; font-size:80%; margin-bottom: 10px; } .widget_twitter .intent-meta a { background-image: url('images/everything-spritev2.png'); /** from Twitter resources */ display: inline-block; text-indent: -9999px; margin: 0 10px 10px 0; height: 16px; width: 16px; } .widget_twitter .in-reply-to-meta { margin: 0 10px 10px 0; } .widget_twitter .intent-meta a.in-reply-to { background-position: 0 center; } .widget_twitter .intent-meta a:hover.in-reply-to { background-position: -16px center; } .widget_twitter .intent-meta a.favorite { background-position: -32px center; } .widget_twitter .intent-meta a:hover.favorite { background-position: -48px center; } .widget_twitter .intent-meta a.retweet { background-position: -80px center; } .widget_twitter .intent-meta a:hover.retweet { background-position: -96px center; }and this is the area that I made changes to my widget template:
$widgetContent .= '<ul>'; if ( ! is_array( $tweets ) || count( $tweets ) == 0 ) { $widgetContent .= '<li class="wpTwitterWidgetEmpty">' . __( 'No Tweets Available', $this->_slug ) . '</li>'; } else { $count = 0; foreach ( $tweets as $tweet ) { // Set our "ago" string which converts the date to "# ___(s) ago" $tweet->ago = $this->_timeSince( strtotime( $tweet->created_at ), $args['showts'], $args['dateFormat'] ); $entryContent = apply_filters( 'widget_twitter_content', $tweet->text, $tweet ); $widgetContent .= "<span class='entry-content'><img src='http://globe-trekking.com/running/wp-content/themes/newscast/images/bird_blue_16.png'><a href='http://twitter.com/{$args['username']}'>@{$args['username']}</a> <br/>{$entryContent}</span>"; $widgetContent .= " <span class='entry-meta'>"; $widgetContent .= "<span class='time-meta'>"; $linkAttrs = array( 'href' => "http://twitter.com/{$tweet->user->screen_name}/statuses/{$tweet->id_str}" ); $widgetContent .= $this->_buildLink( $tweet->ago, $linkAttrs ); $widgetContent .= '</span>'; if ( 'true' != $args['hidefrom'] ) { $from = sprintf( __( 'from %s', $this->_slug ), str_replace( '&', '&', $tweet->source ) ); $widgetContent .= " <span class='from-meta'>{$from}</span>"; } if ( !empty( $tweet->in_reply_to_screen_name ) ) { $rtLinkText = sprintf( __( 'in reply to %s', $this->_slug ), $tweet->in_reply_to_screen_name ); $widgetContent .= ' <span class="in-reply-to-meta">'; $linkAttrs = array( 'href' => "http://twitter.com/{$tweet->in_reply_to_screen_name}/statuses/{$tweet->in_reply_to_status_id_str}", 'class' => 'reply-to' ); $widgetContent .= $this->_buildLink( $rtLinkText, $linkAttrs ); $widgetContent .= '</span>'; } $widgetContent .= '</span>'; if ( 'true' == $args['showintents'] ) { $widgetContent .= ' <span class="intent-meta">'; $lang = $this->_getTwitterLang(); if ( !empty( $lang ) ) $linkAttrs['data-lang'] = $lang; $linkText = __( 'Reply', $this->_slug ); $linkAttrs['href'] = "http://twitter.com/intent/tweet?in_reply_to={$tweet->id_str}"; $linkAttrs['class'] = 'in-reply-to'; $linkAttrs['title'] = $linkText; $widgetContent .= $this->_buildLink( $linkText, $linkAttrs ); $linkText = __( 'Retweet', $this->_slug ); $linkAttrs['href'] = "http://twitter.com/intent/retweet?tweet_id={$tweet->id_str}"; $linkAttrs['class'] = 'retweet'; $linkAttrs['title'] = $linkText; $widgetContent .= $this->_buildLink( $linkText, $linkAttrs ); $linkText = __( 'Favorite', $this->_slug ); $linkAttrs['href'] = "http://twitter.com/intent/favorite?tweet_id={$tweet->id_str}"; $linkAttrs['class'] = 'favorite'; $linkAttrs['title'] = $linkText; $widgetContent .= $this->_buildLink( $linkText, $linkAttrs ); $widgetContent .= '</span>'; } /*$widgetContent .= '</li>';*/ if ( ++$count >= $args['items'] ) break; } } $widgetContent .= '</ul>';