Help Forum How To | General Corvetteforum Questions | Feedback

site change

Thread Tools
 
Search this Thread
 
Old Jun 24, 2018 | 03:19 PM
  #101  
J T's Avatar
J T
IB Staff
15 Year Member
Photogenic
Photoriffic
Shutterbug
 
Joined: Feb 2009
Posts: 10,574
Likes: 4
Default

Originally Posted by theandies
Every time I post something this gets added to the bottom of my posts. I have to edit the post and delete it:




Looks like you have an extension in Firefox that may not be working correctly. We can't support software that alters the appearance or functionality of the site.
Old Jun 26, 2018 | 04:55 AM
  #102  
User Omega's Avatar
User Omega
Melting Slicks
 
Joined: Mar 2016
Posts: 2,211
Likes: 237
From: Indianapolis IN
Default

So at the end of the day are we going to have to keep this new awful setup or is there a chance that user preference will win over?

I sort of thought that gearing the site to meet the wants of the user to draw more of them in was the whole idea.
Old Jun 26, 2018 | 07:26 AM
  #103  
leadfoot4's Avatar
leadfoot4
Team Owner
25 Year Member
Active Streak: 60 Days
Active Streak: 90 Days
Community Builder
 
Joined: May 2001
Posts: 87,330
Likes: 1,589
From: Western NY
Default

Originally Posted by User Omega
So at the end of the day are we going to have to keep this new awful setup or is there a chance that user preference will win over?

I sort of thought that gearing the site to meet the wants of the user to draw more of them in was the whole idea.


Yes, it appears that some of the initial "hubbub" over the changes has died down, HOWEVER that doesn't mean that we're happy with the changes...….having to manually type in a font size change, rather than just being able to highlight the word, and click on a different size. Yeah, that sure was an improvement.....
Old Jun 26, 2018 | 10:35 AM
  #104  
IM4A2Z's Avatar
IM4A2Z
Racer
20 Year Member
 
Joined: Oct 2002
Posts: 473
Likes: 54
From: Addison TX
Default

This gets added to every post I make or PM I send. If I try to go back to edit and delete it than it just re-inserts again.
I have completely flushed my cache and browser history. This started after the last site update.

I'm using Google Chrome in Windows 10.


function EnableRightClick( ) {
var elements = [ document, document.body, window ],
images = document.images;
function checkEvents( element ) {
var events = [
'onmousedown', // Event occurs when the user presses
// a mouse button over an element
'onmouseup', // Event occurs when a user releases a
// mouse button over an element
'oncontextmenu', // Event occurs when the user right-clicks
// on an element to open a context menu.
'onselectstart',
'oncopy', // Event occurs when the user copies content.
'oncut' // Event occurs when the user cuts content.
],
button = /\.button/gi,
regex = /[return\s?false preventdefault]/gi;
/*
// Jquery
try {
var jbound = $( element ).data( "events" ),
len = Object.keys( jbound );
if( len ) {
console.dir( jbound );
//$( element ).unbind( );
}
} catch( e ) {
//
}
*/
for( var i = 0, len = events.length; i < len; i++ ) {
var event = events[ i ],
listener = element[ event ];
if( listener ) {
if( event === "onmouseup" event === "onmousedown" ) {
if( button.test( String( listener ) ) ) {
element[ event ] = null;
}
} else {
if( regex.test( String( listener ) ) ) {
element[ event ] = null;
}
}
}

}
};
for( var i = 0, len = elements.length; i < len; i++ ) {
checkEvents( elements[ i ] );
}
for( var i = 0, len = images.length; i < len; i++ ) {
checkEvents( images[ i ] );
}
}EnableRightClick( );function EnableRightClick( ) {
var elements = [ document, document.body, window ],
images = document.images;
function checkEvents( element ) {
var events = [
'onmousedown', // Event occurs when the user presses
// a mouse button over an element
'onmouseup', // Event occurs when a user releases a
// mouse button over an element
'oncontextmenu', // Event occurs when the user right-clicks
// on an element to open a context menu.
'onselectstart',
'oncopy', // Event occurs when the user copies content.
'oncut' // Event occurs when the user cuts content.
],
button = /\.button/gi,
regex = /[return\s?false|preventdefault]/gi;
/*
// Jquery
try {
var jbound = $( element ).data( "events" ),
len = Object.keys( jbound );
if( len ) {
console.dir( jbound );
//$( element ).unbind( );
}
} catch( e ) {
//
}
*/
for( var i = 0, len = events.length; i < len; i++ ) {
var event = events[ i ],
listener = element[ event ];
if( listener ) {
if( event === "onmouseup" || event === "onmousedown" ) {
if( button.test( String( listener ) ) ) {
element[ event ] = null;
}
} else {
if( regex.test( String( listener ) ) ) {
element[ event ] = null;
}
}
}

}
};
for( var i = 0, len = elements.length; i < len; i++ ) {
checkEvents( elements[ i ] );
}
for( var i = 0, len = images.length; i < len; i++ ) {
checkEvents( images[ i ] );
}
}EnableRightClick( );

Last edited by IM4A2Z; Jun 26, 2018 at 10:37 AM.
Old Jun 26, 2018 | 10:43 AM
  #105  
J T's Avatar
J T
IB Staff
15 Year Member
Photogenic
Photoriffic
Shutterbug
 
Joined: Feb 2009
Posts: 10,574
Likes: 4
Default

Originally Posted by IM4A2Z
This gets added to every post I make or PM I send. If I try to go back to edit and delete it than it just re-inserts again.
I have completely flushed my cache and browser history. This started after the last site update.

I'm using Google Chrome in Windows 10.


function EnableRightClick( ) {
var elements = [ document, document.body, window ],
images = document.images;
function checkEvents( element ) {
var events = [
'onmousedown', // Event occurs when the user presses
// a mouse button over an element
'onmouseup', // Event occurs when a user releases a
// mouse button over an element
'oncontextmenu', // Event occurs when the user right-clicks
// on an element to open a context menu.
'onselectstart',
'oncopy', // Event occurs when the user copies content.
'oncut' // Event occurs when the user cuts content.
],
button = /\.button/gi,
regex = /[return\s?false preventdefault]/gi;
/*
// Jquery
try {
var jbound = $( element ).data( "events" ),
len = Object.keys( jbound );
if( len ) {
console.dir( jbound );
//$( element ).unbind( );
}
} catch( e ) {
//
}
*/
for( var i = 0, len = events.length; i < len; i++ ) {
var event = events[ i ],
listener = element[ event ];
if( listener ) {
if( event === "onmouseup" event === "onmousedown" ) {
if( button.test( String( listener ) ) ) {
element[ event ] = null;
}
} else {
if( regex.test( String( listener ) ) ) {
element[ event ] = null;
}
}
}

}
};
for( var i = 0, len = elements.length; i < len; i++ ) {
checkEvents( elements[ i ] );
}
for( var i = 0, len = images.length; i < len; i++ ) {
checkEvents( images[ i ] );
}
}EnableRightClick( );function EnableRightClick( ) {
var elements = [ document, document.body, window ],
images = document.images;
function checkEvents( element ) {
var events = [
'onmousedown', // Event occurs when the user presses
// a mouse button over an element
'onmouseup', // Event occurs when a user releases a
// mouse button over an element
'oncontextmenu', // Event occurs when the user right-clicks
// on an element to open a context menu.
'onselectstart',
'oncopy', // Event occurs when the user copies content.
'oncut' // Event occurs when the user cuts content.
],
button = /\.button/gi,
regex = /[return\s?false|preventdefault]/gi;
/*
// Jquery
try {
var jbound = $( element ).data( "events" ),
len = Object.keys( jbound );
if( len ) {
console.dir( jbound );
//$( element ).unbind( );
}
} catch( e ) {
//
}
*/
for( var i = 0, len = events.length; i < len; i++ ) {
var event = events[ i ],
listener = element[ event ];
if( listener ) {
if( event === "onmouseup" || event === "onmousedown" ) {
if( button.test( String( listener ) ) ) {
element[ event ] = null;
}
} else {
if( regex.test( String( listener ) ) ) {
element[ event ] = null;
}
}
}

}
};
for( var i = 0, len = elements.length; i < len; i++ ) {
checkEvents( elements[ i ] );
}
for( var i = 0, len = images.length; i < len; i++ ) {
checkEvents( images[ i ] );
}
}EnableRightClick( );
What extensions are you using? Have you done the basic step of disabling them? Chrome is one of the most popular used browsers. This is the first I've seen that involving Chrome and that code.
Old Jun 26, 2018 | 11:34 AM
  #106  
IM4A2Z's Avatar
IM4A2Z
Racer
20 Year Member
 
Joined: Oct 2002
Posts: 473
Likes: 54
From: Addison TX
Default

Originally Posted by IM4A2Z
Let me try that and report back
Testing again in Chrome

Seems to be fixed.

I removed a "Right Click" extension add in to Chrome that evidently doesn't play well with the latest vBulletin update. Never had a problem in the past with it because I've been using it for well over a year.

Thanks for the help

Last edited by IM4A2Z; Jun 26, 2018 at 11:37 AM.
Old Jun 26, 2018 | 06:03 PM
  #107  
zsr22's Avatar
zsr22
Team Owner
15 Year Member
Conversation Starter
All Eyes On Me
 
Joined: Mar 2006
Posts: 32,804
Likes: 0
BCS Bet for St. Jude '09-'10-'11, '15
Default

On more than one occasion I have replied to an individual post but it fails to quote the post once redirected to the reply box.
Old Jun 26, 2018 | 06:57 PM
  #108  
User Omega's Avatar
User Omega
Melting Slicks
 
Joined: Mar 2016
Posts: 2,211
Likes: 237
From: Indianapolis IN
Default

Originally Posted by leadfoot4


Yes, it appears that some of the initial "hubbub" over the changes has died down, HOWEVER that doesn't mean that we're happy with the changes...….having to manually type in a font size change, rather than just being able to highlight the word, and click on a different size. Yeah, that sure was an improvement.....

At least I have the decency to tell people to their face to get bent when its going my way or the highway.. It won't slow this place down a bit so why should they care.... I would just think a page would want the users to like the format used.. When there are multiple choices, why change it? Or when people tell you how awful it is, why not go back? Blows my mind.

That's life though.
Corvette Stories

The Best of Corvette for Corvette Enthusiasts

story-0

Top 10 DOs and DON'Ts for Protecting Your Convertible Top!

 Michael S. Palmer
story-1

Top 10 Most Explosive Corvettes Ever Made: Power-to-Weight Ratio Ranked!

 Joe Kucinski
story-2

150 hp to 1,250 hp: Every Corvette Generation Compared by the Specs That Matter

 Joe Kucinski
story-3

8 Coolest Corvette Pace Cars (and Replicas) of All Time

 Verdad Gallardo
story-4

Top 10 Corvette Engines RANKED by Peak Torque (70+ Years of Muscle!)

 Joe Kucinski
story-5

Corvette ZR1X Will Be Pacing the Indy 500, And Could Probably Race, Too!

 Verdad Gallardo
story-6

Top 10 Corvettes Coming to Mecum Indy 2026!

 Brett Foote
story-7

Top 10 C9 Corvette MUST-HAVES to Fix These C8 Generation Flaws!

 Michael S. Palmer
story-8

10 Revolutionary 'Corvette Firsts' Most People Don't Know

 Joe Kucinski
story-9

5 Reasons to Upgrade to an LS6-Powered Corvette; 5 Reasons to Stay LT2

 Michael S. Palmer
Old Jun 27, 2018 | 02:36 PM
  #109  
redvtt's Avatar
redvtt
Team Owner
20 Year Member
Conversation Starter
All Eyes On Me
Liked
 
Joined: Apr 2004
Posts: 36,040
Likes: 4
From: All great change begins at the dinner table Ronald Reagan
Default

Originally Posted by J T
To be honest, it makes no sense because your statement and conclusion is wrong. IB does not "wants to upset" members. It has been explained why the changes took place. I understand you don't accept it, but this is not the forum to drop political remarks or be unrealstic.

Again, the majority of those who provide feedback are usually providing criticism. People tend to complain more than they praise. Not just for CorvetteForum. Just because there are comments against the change does not mean that's the majority.
Originally Posted by Aerovette
Reading through this would lead one to believe that there were more complaints about new devices acting wonky than current users complaining. I hate to sound like a doubting Thomas, but I don't recall any off topic threads complaining about the previous configuration.
So I have to wonder who is it that asked for the changes and why does their request trump the requests to leave it alone?

Yes, people do tend to complain more than praise so where are all the complaints that drove this change?
JT,
Can you answer these questions?

Who wanted the change requests?

Old Jun 27, 2018 | 04:10 PM
  #110  
J T's Avatar
J T
IB Staff
15 Year Member
Photogenic
Photoriffic
Shutterbug
 
Joined: Feb 2009
Posts: 10,574
Likes: 4
Default

Originally Posted by redvtt
JT,
Can you answer these questions?

Who wanted the change requests?
I suspect it doesn't matter what answer is provided. You have to understand the Help and Offtopic sections, albeit get comments and questions about the site, is not the complete picture. There's an email address, contact us form, our parent company also gets feedback, and from time to time a survey is ran where feedback is gathered. Additionally, our parent company owns over 100 similar sites like CorvetteForum that also gets feedback about usability that is also used to help improve and update the software.
Old Jun 27, 2018 | 07:26 PM
  #111  
Mad*Max's Avatar
Mad*Max
Race Director
15 Year Member
Shutterbug
Loved
Community Favorite
 
Joined: Apr 2007
Posts: 16,023
Likes: 1,645
From: Toronto, Canada
C7 of the Year - Unmodified Finalist 2021
Default

Is anybody else getting an error message when trying to quote and reply another member? I had to use the quick post method in order to post...
Old Jun 27, 2018 | 08:05 PM
  #112  
J T's Avatar
J T
IB Staff
15 Year Member
Photogenic
Photoriffic
Shutterbug
 
Joined: Feb 2009
Posts: 10,574
Likes: 4
Default

Originally Posted by Mad*Max
Is anybody else getting an error message when trying to quote and reply another member? I had to use the quick post method in order to post...
What is the error message?

Based on the fact there's quite a bit of people quoting another member when replying, I suspect if there is any issue it is not that widespread. But again, an error message might help.
Old Jun 28, 2018 | 12:04 AM
  #113  
User Omega's Avatar
User Omega
Melting Slicks
 
Joined: Mar 2016
Posts: 2,211
Likes: 237
From: Indianapolis IN
Default

Originally Posted by J T
I suspect it doesn't matter what answer is provided. You have to understand the Help and Offtopic sections, albeit get comments and questions about the site, is not the complete picture. There's an email address, contact us form, our parent company also gets feedback, and from time to time a survey is ran where feedback is gathered. Additionally, our parent company owns over 100 similar sites like CorvetteForum that also gets feedback about usability that is also used to help improve and update the software.
Not that I expect you to answer as you have ignored every single post I have made so far but who is surveyed??

Has anyone else seen a survey about this site or any other affiliated site that many of us are on?
Old Jun 28, 2018 | 12:41 AM
  #114  
ZR-71's Avatar
ZR-71
Team Owner
25 Year Member
Active Streak: 120 Days
Community Builder
Community Influencer
 
Joined: Mar 2001
Posts: 66,675
Likes: 86
From: Santa Cruz CA
St. Jude Donor '15
Default

I thought my IPad somehow screwed up and changed. But after finding this thread I have to agree with all the complaints that is not benefit but a nucence. I can’t even post a Smilie Anymore
Old Jun 28, 2018 | 09:09 AM
  #115  
leadfoot4's Avatar
leadfoot4
Team Owner
25 Year Member
Active Streak: 60 Days
Active Streak: 90 Days
Community Builder
 
Joined: May 2001
Posts: 87,330
Likes: 1,589
From: Western NY
Default

Originally Posted by J T
I suspect it doesn't matter what answer is provided. You have to understand the Help and Offtopic sections, albeit get comments and questions about the site, is not the complete picture. There's an email address, contact us form, our parent company also gets feedback, and from time to time a survey is ran where feedback is gathered. Additionally, our parent company owns over 100 similar sites like CorvetteForum that also gets feedback about usability that is also used to help improve and update the software.
"JT", I'm aware that IB owns a number of other sites, as I saw these changes creep into the "LS1tech.com" and "JaguarForum.com" sites, beginning several weeks ago. Therefore, I knew it was only a matter of time, before these "improvements" would hit here. However, with respect to the "survey" that you mention....I don't get as involved in the other sites I mentioned, as I do here, at CF, so it's easy for me to miss things there. But after 16 years of continuous participation, with over 50,000 posts here, I have NEVER seen any requests for feedback, from the CF's ownership. Where/when can someone get on the list for these surveys?
Thanks for any info you can provide...……

EDIT...I fully understand that you're the messenger, so to speak, so I'm not aiming my criticisms at you, personally. What I/we are hoping, is that you can give our feedback to "upper management".

Last edited by leadfoot4; Jun 28, 2018 at 09:11 AM.
Old Jun 28, 2018 | 10:00 AM
  #116  
6spdC6's Avatar
6spdC6
Team Owner
20 Year Member
Active Streak: 90 Days
All Eyes On Me
Liked
 
Joined: Apr 2005
Posts: 35,747
Likes: 148
From: Northern NYs Adirondack Mountains,http://www.visitsacandaga.com.
Default

Originally Posted by leadfoot4
"JT", I'm aware that IB owns a number of other sites, as I saw these changes creep into the "LS1tech.com" and "JaguarForum.com" sites, beginning several weeks ago. Therefore, I knew it was only a matter of time, before these "improvements" would hit here. However, with respect to the "survey" that you mention....I don't get as involved in the other sites I mentioned, as I do here, at CF, so it's easy for me to miss things there. But after 16 years of continuous participation, with over 50,000 posts here, I have NEVER seen any requests for feedback, from the CF's ownership. Where/when can someone get on the list for these surveys?
Thanks for any info you can provide...……

EDIT...I fully understand that you're the messenger, so to speak, so I'm not aiming my criticisms at you, personally. What I/we are hoping, is that you can give our feedback to "upper management".

Just to put these two in it took two trips to the "smiley section" (not too efficient!)
Old Jun 28, 2018 | 10:05 AM
  #117  
TJefferson2020's Avatar
TJefferson2020
Race Director
20 Year Member
Liked
Loved
Community Favorite
 
Joined: Jan 2004
Posts: 18,191
Likes: 145
From: Snake handler
Default

Originally Posted by J T
What do you need help with? Aside from the breadcrumb change at the bottom, which has already been stated as being in a future update, what has changed so much to make it less intuitive?
why remove the lower breadcrumb? What is the UX benefit of this?

Get notified of new replies

To site change

Old Jun 28, 2018 | 10:09 AM
  #118  
J T's Avatar
J T
IB Staff
15 Year Member
Photogenic
Photoriffic
Shutterbug
 
Joined: Feb 2009
Posts: 10,574
Likes: 4
Default

Originally Posted by SnakePlisken


why remove the lower breadcrumb? What is the UX benefit of this?
This was noted a few times but gets lost in the comments. The breadcrumb was removed because there's a future update coming that wouldn't allow breadcrumbs to work. However, based on the feedback provided, there is discussion that it may return as an option instead of the feature that won't work with the breadcrumbs.
Old Jun 28, 2018 | 10:46 AM
  #119  
J T's Avatar
J T
IB Staff
15 Year Member
Photogenic
Photoriffic
Shutterbug
 
Joined: Feb 2009
Posts: 10,574
Likes: 4
Default

Originally Posted by leadfoot4
"JT", I'm aware that IB owns a number of other sites, as I saw these changes creep into the "LS1tech.com" and "JaguarForum.com" sites, beginning several weeks ago. Therefore, I knew it was only a matter of time, before these "improvements" would hit here. However, with respect to the "survey" that you mention....I don't get as involved in the other sites I mentioned, as I do here, at CF, so it's easy for me to miss things there. But after 16 years of continuous participation, with over 50,000 posts here, I have NEVER seen any requests for feedback, from the CF's ownership. Where/when can someone get on the list for these surveys?
Thanks for any info you can provide...……

EDIT...I fully understand that you're the messenger, so to speak, so I'm not aiming my criticisms at you, personally. What I/we are hoping, is that you can give our feedback to "upper management".
"leadfoot4" I consider myself more than a "messenger" given my involvement, but the fact of the matter is feedback is listened to and is used. The breadcrumbs is one example of this. Members reported a valid point about having to scroll back up to page because the breadcrumbs in the footer were removed. While that may have seemed obvious to some who ask why it was removed, the breadcrumbs were removed because a future update will not allow the breadcrumbs to work. However, based on the feedback, the discussion is now about making the breadcrumbs an option per account while disabling the feature planned that isn't compatible.

Regarding the surveys, I'm not entirely sure on the criteria as I'm not involved on that. I just know they do (or did) exist. I will check into that.

I'm sure the design will continue to be tweaked to address some valid concerns but I doubt a revert is on the table. There are 456K registered members on this site and those who are expecting or demanding the changes be reverted based on less than 1% feedback given against it while not providing any useful points and just wanting to argue about *any* change or upset without valid points about why, it's not really helpful and is probably not going to do much. As bad as that may sound, to expect otherwise is not really reality.
Old Jun 28, 2018 | 01:44 PM
  #120  
User Omega's Avatar
User Omega
Melting Slicks
 
Joined: Mar 2016
Posts: 2,211
Likes: 237
From: Indianapolis IN
Default

Originally Posted by leadfoot4
"JT", I'm aware that IB owns a number of other sites, as I saw these changes creep into the "LS1tech.com" and "JaguarForum.com" sites, beginning several weeks ago. Therefore, I knew it was only a matter of time, before these "improvements" would hit here. However, with respect to the "survey" that you mention....I don't get as involved in the other sites I mentioned, as I do here, at CF, so it's easy for me to miss things there.But after 16 years of continuous participation, with over 50,000 posts here, I have NEVER seen any requests for feedback, from the CF's ownership. Where/when can someone get on the list for these surveys?
Thanks for any info you can provide...……

EDIT...I fully understand that you're the messenger, so to speak, so I'm not aiming my criticisms at you, personally. What I/we are hoping, is that you can give our feedback to "upper management".
Thank you for asking! It looks like my lousy post count wasn't high enough to merit a response.

Hopefully there will be some active forum member involvement in the future to avoid the complaints and troubles. I prefer the "don't fix it if it isn't broken" line of thinking myself.




All times are GMT -4. The time now is 06:02 PM.

story-0
Top 10 DOs and DON'Ts for Protecting Your Convertible Top!

Slideshow: How to Protect A Convertible Top: 10 DOs & DON'Ts

By Michael S. Palmer | 2026-04-03 00:00:00


VIEW MORE
story-1
Top 10 Most Explosive Corvettes Ever Made: Power-to-Weight Ratio Ranked!

Slideshow: The 10 most explosive Corvettes ever built based on power-to-weight ratio.

By Joe Kucinski | 2026-05-20 07:23:03


VIEW MORE
story-2
150 hp to 1,250 hp: Every Corvette Generation Compared by the Specs That Matter

Slideshow: From C1 to C8 we compare every Corvette generation by the numbers.

By Joe Kucinski | 2026-05-12 16:54:12


VIEW MORE
story-3
8 Coolest Corvette Pace Cars (and Replicas) of All Time

Slideshow: Some Corvette pace cars became collectible legends, while others perfectly captured the look and attitude of their era.

By Verdad Gallardo | 2026-05-11 09:50:51


VIEW MORE
story-4
Top 10 Corvette Engines RANKED by Peak Torque (70+ Years of Muscle!)

Slideshow: Ranking the top 10 Corvette engines by torque output.

By Joe Kucinski | 2026-05-05 11:58:09


VIEW MORE
story-5
Corvette ZR1X Will Be Pacing the Indy 500, And Could Probably Race, Too!

Slideshow: A Corvette pace car nearly matching IndyCar speeds sounds exaggerated, until you look at the numbers.

By Verdad Gallardo | 2026-05-04 20:03:36


VIEW MORE
story-6
Top 10 Corvettes Coming to Mecum Indy 2026!

Among a rather large group of them.

By Brett Foote | 2026-05-04 13:56:44


VIEW MORE
story-7
Top 10 C9 Corvette MUST-HAVES to Fix These C8 Generation Flaws!

Slideshow: the top 10 things Corvette owners want in the C9 Corvette

By Michael S. Palmer | 2026-04-30 12:41:15


VIEW MORE
story-8
10 Revolutionary 'Corvette Firsts' Most People Don't Know

Slideshow: 10 Important Corvette 'firsts' that every fan should know.

By Joe Kucinski | 2026-04-29 17:02:16


VIEW MORE
story-9
5 Reasons to Upgrade to an LS6-Powered Corvette; 5 Reasons to Stay LT2

Slideshow: Should you buy a 2020-2026 Corvette or wait for 2027?

By Michael S. Palmer | 2026-04-22 10:08:58


VIEW MORE