iMacros for LinkedIn - How to Disable Instant Message Box in Chrome? - linkedin

I'm running an iMacros script in LinkedIn. Each time someone replies, the instant message box pops up and disrupts the macro. How can I disable instant messaging in LinkedIn?
I can't find a solution in LinkedIn's site settings, so I figure it must be done through Chrome Console Event Listeners. I'm just not sure which changes to make or how to do it. Any help is appreciated.

You can remove the 'Messaging' bar by means of the following code:
URL GOTO=javascript:{document.querySelector("#msg-overlay").parentNode.removeChild(document.querySelector("#msg-overlay"));undefined;}
If this doesn't help, make your question more precise with adding more information regarding the problem.

Related

How to catch OverQuotaMapError for a Google map?

If my javascript code attempts to load the Google map API more then 25,000 times in a day then Google will write OverQuotaMapError to the window.console.
See https://developers.google.com/maps/documentation/javascript/error-messages
Is OverQuotaMapError a property or a value in the window.console object?
What is the recommended code to see if this ‘error’ has occurred?
I have a wildland fire map that will likely hit the API load limit later today. When that happens I want to be display an informative message to my users.
Silly me. If you open the google documentation link I posted and scroll to the bottom then you will see a link to advice from Google for how to check for any of these errors via your code.

GTM + Gravity Forms Goal tracking in Google Analytics

I have a Gravity Form with a text confirmation page, not a redirect confirmation. I would like to track this form through Google Tag Manager to display a goal conversion in Google Analytics (Universal Analytics).
I've followed the steps here: http://www.notesonclick.com/blog/gravity-form-event-tracking-via-tag-manager/
No conversions are being recorded. However when using GTM-debug mode, all the triggers are firing, even the gform.submit.success tag is being fired after clicking the submit button.
Could someone please help?
We've had the same issue. The only way we've been able to get GTM to record conversions is to remove validation. We'd rather it validate, but we haven't found any other workarounds.
I have implement that code in multiple site and it is working fine, Since you are not getting conversion then there might be issue with form Goal Creation in google analytics. or some time i have noticed this things happening when google analytics have been implement directly on the site and event tracking setup through tag manager..
if you still need some more help leave comment in comment box of same blog
I saw the excellent and elegant solution by Dinesh but was not able to implement it on the site I was working with. I put a hack together that work correctly. For detailed instructions, please see here.
http://www.albanyanalytics.com/2018/03/gravity-form-tracking-with-google-tag.html

Event conflicts w/ google analytics

I'm a complete newbie to google analytics, new like I was put on a project yesterday and I've been combing through docs trying to figure out what's wrong with this _trackEvent that I'm trying to set up.
Here's the setup:
I have a drupal site that has had some custom events set up. One of the events that we track is outbound links, and that works great. What we want to do is start creating special cases for some of these links. So for example I have a live chat button w/ this code:
<a href='url/to/chat
onclick="_gaq.push(['_trackEvent','LiveChat','btnClick',this.href]);
setTimeout(function(){this.newWindow = window.open(this.href);
this.newWindow.focus();
this.newWindow.opener=window;},200);
return false;"><img alt='Live Chat Software' src='src/url' border='0'></a>
so what I did is ran the calls through the ga_debug.js. This is the output I got
_gaq.push processing "_trackEvent" for args:
"[Outbound links,Click,outgoing/url]": Track Event
Tracking beacon sent!
This means that an event is getting sent on click. So I'm curious why it's sending an Outbound Links event rather than my LiveChat event? Could it be scoping issues? Not sure, as I know the outbound links is defined at a global level. Anyone have any suggestions/insights/opinions? Before berating me about code, I have inherited this project and I'm just trying to understand it better.
thank you,
Brodie
Okay so it turns out that it was a scoping issue. When they had originally set us up the bomb the click event was registered to the body as opposed to being an inline. So that was eating the inline event.
lesson learned: double check scoping
tools that helped
ga_debug.js

LinkedIn button shows up intermitent

I am using the code to place a linkedIn Follow button (generated here https://developer.linkedin.com/plugins/follow-company) on this page, http://new.janeirodigital.com (view Client Testimonials section). However, the buttons sometimes show up and sometimes don't.
I have read a little bit of cross domains issues that may cause this, but I am not able to find a workaround to fix this. If you visit that page in Chrome and see the errors console, you'll see a couple of errors like regarding the linked in button, like:
Unsafe Javascript attempt to access frame with URL mysite.com from frame with URL http://platform.linkedin.com/js/....Domains, protocols and ports must match.
Has anybody experienced this problem before?
Any help appreciated
Daniel
The messages you are seeing in the developer console in Chrome are unrelated to your problem. They are an artifact of the cross-domain communication and as you'll notice, you see them for Facebook and Twitter as well on the same page.
That said, viewing your page I am also seeing intermittent 403s for some of the backend calls that the FollowCompany plugin is making. I have alerted our NOC to the issue and they should be investigating now.
Reviewing your page, it seems you have done everything necessary and are set, so once we fix the operational issue you should be good to go.
My apologies for any inconvenience!
-Jeremy
I just found that this is happening when there are more than one follow button on the page, if you delete the first one and the second shows without problems but the others have the same problem...
Hope this could help your team Jeremy!!

How do I view wordpress themes without logging in?

Many times I want to show a client how their site is progressing or show someone my current work on a theme to get feedback. I would like a way to send a link possibly with ?theme=.... in the URI that doesn't require a log in.
Currently I have to log in to show the client or others to show progress and get feedback.
Any known ways of doing this?
This could solve you problem.
Works with a sidebar which you could set temperarly
http://wordpress.org/extend/plugins/theme-switcher/
this one works with ?preview_theme=my-theme
http://wordpress.org/extend/plugins/theme-preview/

Resources