on 06-22-2023 09:01 AM
Products shown in the Recommends programs are outdated, why?
If the incorrect products are shown in the logo recommendations program, check to make sure that your catalog is up to date.
To avoid manually updating the products in the future, it is highly recommended that you have your catalogs updated automatically by downloading from a FTP server.
Error "The request is originated from unregistered host", what can we do?
Content may not return when the site domain is not in the authorized site list. To confirm, check your browser's JS Console, you may notice the following error:
"[CCS_ERROR] The request is originated from unregistered host: 'http://yourdomainhere.com'. Please go to Portal / Site Integration settings to add it into your sites list."
This occurs when the site domain requesting the content is missing from the Allowed Site Domains in your company settings. It appears that your site domain was not added to your site list. The good news is that this can easily be resolved by performing the following steps in the Portal:
I am having problems installing the Showcase on my website that is powered by OfficeLive, can you help me?
I am having problems installing the Showcase on my website that is powered by Word Press, can you help me?
I am receiving warnings about page contains secure and non-secure items, why is that?
This is a common error that occurs when some element on a secure web page (one that is loaded with https:// in the address bar) is not being loaded from a secure source. This usually occurs with images, frames, iframes, Flash, and JavaScripts. If you added the ContentCast JavaScript on secured pages that are served using https, make sure your call to the ContentCast JavaScript code is also using the https protocol.
I am a ChannelOnline customer, is there a way to link the Showcase to my store on ChannelOnline?
Buy / Shop Now links are not appearing in my Brand Showcase, why?
It may take 15 minutes before the changes take affect.
Contact Us links return error, why?
Content is not returning, why?
Flash is overlapping the Lightbox, what can I do?
Add the following code after the Object tag:
<param name="WMode" value="transparent"></param>
And add the following code in the Embed tag:
wmode="transparent"
It should look something like this:
<object width="300" height="220"> <param name="WMode" value="transparent"></param> <param name="movie" value="http://www.flash.com"></param> <param name="allowFullScreen" value="true"></param> <param name="allowscriptaccess" value="always"></param> <embed wmode="transparent" src="http://www.flash.com" type="application/x-shockwave-flash" allowscriptaccess="always" allowfullscreen="true" width="300"> height="220"></embed> </object>
Portal returns a blank page, why?
The Lightbox doesn’t appear how can I fix this?
This is browser specific issue due to the page not including a DOCTYPE declaration in the HTML. If a DOCTYPE is not declared, the lightbox function is unable to determine where to position itself within the browser.
Solution:
Add the appropriate DOCTYPE tag as the first element within your site.
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "http://www.w3.org/TR/html4/strict.dtd">
Read http://www.w3schools.com/tags/tag_doctype.asp for more examples.