Search for existing answers to your product and support questions.
Familiarize yourself with our support site and learn best practices in working with our team.
Manage Service Requests, View and update service requests submitted by you and others in your organization.
Submit a new issue to our technical support team.
Oracle B2C Service insights from our Technical Support team subject matter experts
Browse resources to assist you in launching your implementation and ensure a successful go-live.
Access your OCI account.
Find product documentation for supported versions of B2C and documentation libraries for related service solutions.
You will have the tools to improve your customers' experience when you learn about all the things our products can do.
Find links for API documentation, Custom Processes, Customer Portal, and Agent Browser UI Extensibility Framework.
Explore how accelerators are designed to demonstrate how an integration scenario could be built using the public integration and extension capabilities of the Oracle B2C Service.
Prepare for a successful transition by reviewing upcoming release changes and enhancements.
Explore webinars, events, and feature kits to learn about B2C Service features, functionality, and best practices from the technical experts.
Oracle MyLearn offers a portfolio of free and paid subscription-based learning resources to help you gain valuable skills, accelerate cloud adoption, increase productivity, and transform your business.
Empower your team with the skills to implement, configure, manage, and use your applications with Customer Experience Cloud Training.
Our goal is to facilitate a friendly, supportive environment where members can easily collaborate with each other on solutions and best practices.
Ask and answer questions specific to B2C.
This is an exciting resource intended to help with your Oracle Service Cloud Analytics.
Share product improvement ideas and enhancement requests with Oracle Development, while collaborating with other Oracle customers and partners.
Update your phone number, email notification preferences, and severity 1 and severity 2 contact preferences.
View the contact managers within your organization.
Find contact information of the Technical Account Manager (TAM) and Client Success Manager (CSM) for your organization.
Environment:
Customer portal, answers, search engines, Google, show_on_pages condition page tag
Resolution:
Most of the pages in customer portal, such as /app/answers/detail do not contain the HTML head section. Therefore it is impossible to add header meta tags directly to the detail.php file or to the answer content.
However, by using a customer portal condition page tag you can add meta tags to the head section of the template that will appear when a page is compiled.
For example adding the following code to the template will add a "nosnippet" meta tag to the answers. The nosnippet tag changes the way results appear in Google's search results.
<rn:condition show_on_pages="/answers/detail"> <meta name="googlebot" content="nosnippet"> </rn:condition>
Unfortunately the page condition tag does not work for individual answers such as the example of adding a "no index" tag to a specific answer. Therefore the page condition tag can be used with some PHP code.
The following is an example for excluding answer id 12345 from search results on compliant search engines. Note that this code is an example and a robust version designed by your developers should be used on production sites. Also the example works with in an out-of-the-box configuration and may not work with URLs that contain search terms and/or product and category URL parameters.
<rn:condition show_on_pages="answers/detail"> <? $x = 'a_id/12345'; if(strstr($_SERVER['REQUEST_URI'], 'a_id/') == $x) { echo "<META NAME=\"ROBOTS\" CONTENT=\"NOINDEX, NOFOLLOW\">"; } ?> </rn:condition>
For more information on the robots meta tag please refer to http://www.robotstxt.org/meta.html.
To find the template that a page uses, open the page in a text editor and inspect the top line.
<rn:meta title="#rn:msg:SHP_TITLE_HDG#" template="standard.php" clickstream="home"/>
To access more information about the conditional page tags you can access http:<interface>.custhelp.com/ci/admin and open Page Tags either under Widgets or Framework.
You must have access to customer portal enabled to view the ci/admin page. Refer to Answer ID 2600: Configuring WebDAV connection to access the Customer Portal.