<?xml version="1.0" encoding="UTF-8" ?>
<rss version="2.0" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:slash="http://purl.org/rss/1.0/modules/slash/" xmlns:wfw="http://wellformedweb.org/CommentAPI/" xmlns:atom="http://www.w3.org/2005/Atom"><channel><title>Q&amp;amp;A - Recent Threads</title><link>https://verint14-pre-02.socialedgeconsulting.io/practice-a/f/q-a</link><description /><dc:language>en-US</dc:language><generator>14.0.0.622 14</generator><lastBuildDate>Wed, 27 May 2026 19:50:47 GMT</lastBuildDate><atom:link rel="self" type="application/rss+xml" href="https://verint14-pre-02.socialedgeconsulting.io/practice-a/f/q-a" /><item><title>Looking for Your Feedback!</title><link>https://verint14-pre-02.socialedgeconsulting.io/thread/76?ContentTypeID=1</link><pubDate>Mon, 07 Apr 2025 12:54:17 GMT</pubDate><guid isPermaLink="false">1e086d11-7170-45b2-b705-f426ef214f5d</guid><dc:creator>Sara Collins</dc:creator><slash:comments>3</slash:comments><comments>https://verint14-pre-02.socialedgeconsulting.io/thread/76?ContentTypeID=1</comments><wfw:commentRss>https://verint14-pre-02.socialedgeconsulting.io/practice-a/f/q-a/76/looking-for-your-feedback/rss?ContentTypeId=0</wfw:commentRss><description>&lt;h3 id="mcetoc_1io8514v00" data-start="42" data-end="124"&gt;&lt;strong data-start="46" data-end="124"&gt;Company X - Practice A Employee Feedback Survey: We Want to Hear From You!&lt;/strong&gt;&lt;/h3&gt;
&lt;p data-start="126" data-end="334"&gt;At &lt;strong data-start="129" data-end="155"&gt;Company X - Practice A&lt;/strong&gt;, we are committed to creating a positive and supportive work environment. As part of our ongoing efforts to improve, we invite you to participate in our Employee Feedback Survey.&lt;/p&gt;
&lt;p data-start="336" data-end="661"&gt;&lt;strong data-start="336" data-end="366"&gt;Why your feedback matters:&lt;/strong&gt;&lt;br data-start="366" data-end="369" /&gt; Your thoughts, opinions, and experiences are crucial in helping us understand what we&amp;rsquo;re doing well and where we can improve. This survey will help us gather insights about your work experience, the tools and resources we provide, and the overall work culture at &lt;strong data-start="632" data-end="658"&gt;Company X - Practice A&lt;/strong&gt;.&lt;/p&gt;
&lt;p data-start="663" data-end="960"&gt;&lt;strong data-start="663" data-end="682"&gt;What to expect:&lt;/strong&gt;&lt;br data-start="682" data-end="685" /&gt; The survey will take just a few minutes to complete, and it consists of a mix of multiple-choice and open-ended questions. We&amp;rsquo;re especially interested in hearing your suggestions for improvement, whether it&amp;rsquo;s about our intranet, communication, or overall employee experience.&lt;/p&gt;
&lt;p data-start="962" data-end="1152"&gt;&lt;strong data-start="962" data-end="982"&gt;Confidentiality:&lt;/strong&gt;&lt;br data-start="982" data-end="985" /&gt; Please rest assured that all responses will remain confidential. Your feedback will be used to enhance the work environment for everyone at &lt;strong data-start="1125" data-end="1151"&gt;Company X - Practice A&lt;/strong&gt;.&lt;/p&gt;
&lt;p data-start="962" data-end="1152"&gt;
    &lt;div&gt;
        This embeddable may not be viewed in the current render target.
    &lt;/div&gt;

&lt;div class="credspark-label"&gt;
    Powered by &lt;a href="https://www.credspark.com/" target=”_blank”&gt;&lt;img id="credspark-label-logo" src="$credspark_v1_utilities.GetPngUrl('logo')"/&gt;&lt;/a&gt;
&lt;/div&gt;

&lt;style&gt;
    .credspark-label {
        text-align: right;
        font-style: italic;
        color: #f15d21;
        font-weight: 600;
        display: flex;
        justify-content: end;
        align-items: center;
    }
    .credspark-label a {
        text-decoration: none !important;
        color: #f15d21 !important;
    }
    #credspark-label-logo {
        margin-left: 5px;
        height: 1rem;
        display: block;
    }
    
&lt;/style&gt;            &lt;script type="text/javascript"&gt;
(function() {
  var Embed = function(options) {
    var me = this;
    me.cachedUrlParams = null;

    me.listeners = {
      updateHeight: function(evt) {
        if (!evt.data.resizeIframe) return;

        var iframe = me._listenerGetIframe(evt.data.appUUID, evt.data.resizeIframe);
        if (iframe === null) return;

        var newHeight = evt.data.height;
        iframe.style.height = newHeight + 'px';
      },
      scrollToStart: function(evt) {
        if (!evt.data.scrollToStart) return;

        var iframe = me._listenerGetIframe(evt.data.appUUID, evt.data.scrollToStart);
        if (iframe === null) return;

        var scrollTop  = window.pageYOffset || document.documentElement.scrollTop;

        var bodyRect = document.body.getBoundingClientRect(),
            elemRect = iframe.getBoundingClientRect(),
            offsetTop = elemRect.top - bodyRect.top,
            offsetLeft = elemRect.left - bodyRect.left;

        if (offsetTop &gt;= scrollTop &amp;&amp; window.innerHeight &gt; elemRect.bottom) return;

        var offsetTopFromMiddle = (elemRect.height / 2) - (window.innerHeight / 2);
        var offsetLeftFromCenter = (elemRect.width / 2) - (window.innerWidth / 2);
        window.scrollTo(offsetLeft + Math.min(0, offsetLeftFromCenter), offsetTop + Math.min(0, offsetTopFromMiddle));
      }
    };

    me._generateUUIDv4 = function() {
      return 'xxxxxxxx-xxxx-4xxx-yxxx-xxxxxxxxxxxx'.replace(/[xy]/g, function(c) {
        var r = Math.random() * 16 | 0, v = c == 'x' ? r : (r &amp; 0x3 | 0x8);
        return v.toString(16);
      });
    }

    me._urlParams = function() {
      if (me.cachedUrlParams === null) {
        me.cachedUrlParams = {};
        window.location.search.substring(1).split('&amp;').forEach(function(item) {
          var pair = item.split('=').map(decodeURIComponent);
          me.cachedUrlParams[pair[0]] = pair[1];
        });
      }

      return me.cachedUrlParams;
    }

    me._getOmedaEncryptedCustomerId = function() {
      var parentParams = me._urlParams();
      if (parentParams.oly_enc_id) {
        return parentParams.oly_enc_id;
      }

      if (parentParams.r) {
        return parentParams.r;
      }

      if (window.document.cookie.indexOf('oly_enc_id') !== -1) {
        var extractCookie = window.document.cookie.match('(^|;)\\s*oly_enc_id\\s*=\\s*([^;]+)');
        if (extractCookie) {
          var cookieVal = extractCookie.pop();
          if (cookieVal) {
            if (cookieVal.substring(0, 3) === '%22' || cookieVal === 'null') {
              try {
                return window.JSON.parse(window.decodeURIComponent(cookieVal));
              } catch(e) {
                console.error('oly_enc_id cookie in invalid format:', cookieVal);
              }
            } else {
              return cookieVal;
            }
          }
        }
      }

      return null;
    }

    me._getHubspotUserToken = function() {
      if (window.document.cookie.indexOf('hubspotutk') !== -1) {
        var extractCookie = window.document.cookie.match('(^|;)\\s*hubspotutk\\s*=\\s*([^;]+)');
        if (extractCookie) {
          var cookieVal = extractCookie.pop();
          if (cookieVal) {
            return cookieVal;
          }
        }
      }

      return null;
    }

    me._getIframeParams = function() {
      var o = me.options;
      var parentParams = me._urlParams();

      var returnValues = {
        app_uuid: o.appUuid,
        cred_ar_id: parentParams.cred_ar_id,
        cred_quest_id: parentParams.cred_quest_id,
        cred_answ_id: parentParams.cred_answ_id,
        user_uuid: o.uuid,
        user_email: o.userEmail || parentParams.cred_user_email,
        user_first_name: o.userFirstName || parentParams.cred_user_first_name,
        user_last_name: o.userLastName || parentParams.cred_user_last_name,
        user_anonymous: o.userAnonymous,
        aggregator: o.aggregator,// check aggregator for backward compatibility with Degreed
        preview: o.preview,
        tags: o.tags || parentParams.cred_tags,
        collection_uuid: o.collectionUuid,
        embed_number: o.embedNumber,
        origin_url: window.location.href.split('?')[0],
        mail_ref: parentParams.mail_ref
      };

      var omedaIntegrationEnabled = false;
      if (omedaIntegrationEnabled) {
        var omedaEncryptedCustomerId = me._getOmedaEncryptedCustomerId();

        if (omedaEncryptedCustomerId !== null &amp;&amp; omedaEncryptedCustomerId !== '') {
          returnValues.oly_enc_id = omedaEncryptedCustomerId;
        }
      }

      var hubspotIntegrationEnabled = false;
      if (hubspotIntegrationEnabled) {
        var hubspotUserToken = me._getHubspotUserToken();

        if (hubspotUserToken !== null &amp;&amp; hubspotUserToken !== '') {
          returnValues.hubspot_utk = hubspotUserToken;
        }
      }

      return returnValues;
    }

    me.render = function() {
      var params = me._getIframeParams();

      var assessmentId = (me.options.quizId || 'undefined').trim();
      var url = "https://app.credspark.com/assessments/ASSESSMENT_ID/assessment_responses/new".replace('ASSESSMENT_ID', assessmentId);

      if (me.options.q1 == '1') {
        url += '_q1';
      }

      url = url + '?' + Object.keys(params).filter(function(k) {
        return params[k] !== undefined &amp;&amp; params[k] !== null;
      }).map(function(k) {
        return encodeURIComponent(k) + '=' + encodeURIComponent(params[k]);
      }).join('&amp;');

      var iframeId = assessmentId + '-iframe' + (params.embed_number ? '-' + params.embed_number : '');
      var ifrm = document.createElement('iframe');
      ifrm.setAttribute('id', iframeId);
      ifrm.setAttribute('src', url);
      ifrm.setAttribute('width', '100%');
      ifrm.setAttribute('height', '100%');
      ifrm.setAttribute('scrolling', 'no');
      ifrm.setAttribute('allowtransparency', 'true');
      ifrm.setAttribute('title', 'Interaction questions');
      ifrm.style.border = 'none';
      me.iframe = ifrm;

      me.element.appendChild(ifrm);
      me.element.dataset.autoload = 0;
    };

    me._listenerGetIframe = function(uuid, id) {
      if (uuid) {
        return (me.options.appUuid === uuid ? me.iframe : null);
      }
      return window.document.getElementById(id);
    }

    me._setElement = function() {
      if (typeof me.options.renderTo === 'string') {
        me.element = window.document.querySelector(options.renderTo) || null;
      } else {
        me.element = me.options.renderTo || null;
      }
    }

    me._loadDataAttributes = function() {
      var divData = me.element.dataset;
      Object.keys(divData).forEach(function(key) {
        if (typeof me.options[key] === 'undefined') {
          me.options[key] = divData[key];
        }
      });

      if (typeof me.options.appUuid === 'undefined') {
        me.options.appUuid = me._generateUUIDv4();
      }
    }

    me._addListeners = function() {
      Object.keys(me.listeners).forEach(function(key) {
        window.addEventListener('message', me.listeners[key]);
      });
    }

    me.init = function() {
      me._setElement();
      if (me.element === null) {
        console.error('renderTo DOM element missing');
        return;
      }

      me._loadDataAttributes();
      me._addListeners();
      me.render();
    };

    me.options = options || {};

    Object.keys(me.customizations).forEach(function(key) {
      me.customizations[key].call(me);
    });
    
    return me;
  };

  if (typeof Embed.prototype.customizations === 'undefined') {
    Embed.prototype.customizations = {};
  }

  var scriptFirstLoad = (typeof window.credsparkAssessmentEmbed === 'undefined');
  window.credsparkAssessmentEmbed = Embed;

  var discoverEmbeds = function() {
    var els = document.getElementsByClassName('credsparkQuiz');

    for(var i = 0; i &lt; els.length; i++) {
      var el = els[i];
      var o = el.dataset;
      //UPDATE QUIZ ID
      if (o.quizId === "employee-feedback-survey-21852dec3cc0a" &amp;&amp; (scriptFirstLoad || o.autoload != 0)) {
        el.innerHTML = '';
        new Embed({renderTo: el, userFirstName: "Anonymous", uuid: 2101, tags: "location=https://verint14-pre-02.socialedgeconsulting.io/practice-a/f/q-a/rss?Threadless=1"}).init();
      }
    }
  }

  if (document.readyState !== 'loading') {
    window.setTimeout(discoverEmbeds, 50);
  } else {
    document.addEventListener('DOMContentLoaded', discoverEmbeds);
  }

  if (typeof window.credsparkAssessmentEmbedAsyncInit === 'function') {
    window.credsparkAssessmentEmbedAsyncInit();
  }
}());
&lt;/script&gt;
    &lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item><item><title>RE: Looking for Your Feedback!</title><link>https://verint14-pre-02.socialedgeconsulting.io/thread/1532?ContentTypeID=1</link><pubDate>Wed, 27 May 2026 19:50:47 GMT</pubDate><guid isPermaLink="false">cd15712e-395a-4eea-aa70-7063863a81ba</guid><dc:creator>Sara Collins</dc:creator><slash:comments>0</slash:comments><comments>https://verint14-pre-02.socialedgeconsulting.io/thread/1532?ContentTypeID=1</comments><wfw:commentRss>https://verint14-pre-02.socialedgeconsulting.io/practice-a/f/q-a/76/looking-for-your-feedback/rss?ContentTypeId=0</wfw:commentRss><description>&lt;p&gt;This is another reply&amp;nbsp;&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item><item><title>RE: Looking for Your Feedback!</title><link>https://verint14-pre-02.socialedgeconsulting.io/thread/1531?ContentTypeID=1</link><pubDate>Wed, 27 May 2026 19:50:35 GMT</pubDate><guid isPermaLink="false">07ef751c-615a-4b7f-992f-8651eb4637e7</guid><dc:creator>Sara Collins</dc:creator><slash:comments>0</slash:comments><comments>https://verint14-pre-02.socialedgeconsulting.io/thread/1531?ContentTypeID=1</comments><wfw:commentRss>https://verint14-pre-02.socialedgeconsulting.io/practice-a/f/q-a/76/looking-for-your-feedback/rss?ContentTypeId=0</wfw:commentRss><description>&lt;p&gt;This is another reply&amp;nbsp;&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item><item><title>RE: Looking for Your Feedback!</title><link>https://verint14-pre-02.socialedgeconsulting.io/thread/1530?ContentTypeID=1</link><pubDate>Wed, 27 May 2026 19:50:02 GMT</pubDate><guid isPermaLink="false">6ff09928-4a6f-45e7-88b7-8d6e2fcb2639</guid><dc:creator>Sara Collins</dc:creator><slash:comments>0</slash:comments><comments>https://verint14-pre-02.socialedgeconsulting.io/thread/1530?ContentTypeID=1</comments><wfw:commentRss>https://verint14-pre-02.socialedgeconsulting.io/practice-a/f/q-a/76/looking-for-your-feedback/rss?ContentTypeId=0</wfw:commentRss><description>&lt;p&gt;This is a reply&amp;nbsp;&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item><item><title>RE: "What Makes Our Product Stand Out From the Competition?"</title><link>https://verint14-pre-02.socialedgeconsulting.io/thread/199?ContentTypeID=1</link><pubDate>Wed, 13 Mar 2024 15:04:48 GMT</pubDate><guid isPermaLink="false">1aaf8bfc-50a0-4ec4-8571-b44137f9bb77</guid><dc:creator>John Smith</dc:creator><slash:comments>0</slash:comments><comments>https://verint14-pre-02.socialedgeconsulting.io/thread/199?ContentTypeID=1</comments><wfw:commentRss>https://verint14-pre-02.socialedgeconsulting.io/practice-a/f/q-a/60/what-makes-our-product-stand-out-from-the-competition/rss?ContentTypeId=0</wfw:commentRss><description>&lt;p&gt;Test Reply&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item><item><title>"What Makes Our Product Stand Out From the Competition?"</title><link>https://verint14-pre-02.socialedgeconsulting.io/thread/60?ContentTypeID=1</link><pubDate>Tue, 23 May 2023 18:54:12 GMT</pubDate><guid isPermaLink="false">8b112338-a94d-4d13-bf91-5c11cb640c2d</guid><dc:creator>Jane Kratz</dc:creator><slash:comments>1</slash:comments><comments>https://verint14-pre-02.socialedgeconsulting.io/thread/60?ContentTypeID=1</comments><wfw:commentRss>https://verint14-pre-02.socialedgeconsulting.io/practice-a/f/q-a/60/what-makes-our-product-stand-out-from-the-competition/rss?ContentTypeId=0</wfw:commentRss><description>&lt;p&gt;Lorem ipsum dolor sit amet, consectetur adipiscing elit. Proin vulputate diam ut lorem imperdiet sagittis. Pellentesque vehicula est non dictum porta. Mauris commodo convallis facilisis. Morbi elementum commodo tincidunt. Sed porttitor iaculis sem et ullamcorper. In in elit a mi euismod porta ut eget nisl. Duis varius metus non dignissim ullamcorper. Quisque eu tempus mi, eu tincidunt nunc. Aliquam tincidunt dolor ex, vel porta purus molestie vitae.&lt;/p&gt;
&lt;p&gt;Aenean vel purus vel sem porttitor dapibus. Aenean pretium venenatis turpis sed finibus. Donec dictum lorem vel efficitur rhoncus. Fusce eu porttitor dolor. Sed ultrices ultrices tincidunt. Aliquam vel semper tortor. Quisque egestas blandit purus sit amet interdum. Quisque dui sapien, maximus non porta sed, tincidunt ut arcu. Donec ultrices lacus orci. Nunc dignissim aliquet nulla, porta dictum risus interdum in.&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item><item><title>Exporting and Filtering Site Analytics data from the Platform Analytics Consul</title><link>https://verint14-pre-02.socialedgeconsulting.io/thread/16?ContentTypeID=1</link><pubDate>Wed, 11 May 2022 17:28:58 GMT</pubDate><guid isPermaLink="false">4d48b2a5-7163-44fe-87e6-d576bd2a883e</guid><dc:creator>Sara Collins</dc:creator><slash:comments>2</slash:comments><comments>https://verint14-pre-02.socialedgeconsulting.io/thread/16?ContentTypeID=1</comments><wfw:commentRss>https://verint14-pre-02.socialedgeconsulting.io/practice-a/f/q-a/16/exporting-and-filtering-site-analytics-data-from-the-platform-analytics-consul/rss?ContentTypeId=0</wfw:commentRss><description>&lt;p&gt;&lt;span&gt;Hello everyone,&lt;/span&gt;&lt;/p&gt;
&lt;p&gt;&lt;span&gt;As of today, when doing a CSV export in Platform Analytics, or browsing through the Platform Analytics dashboard, we are not able to filter data more granularly by site, which would be a big value add to do from the Platform Analytics level for KPI measurements by site and BUs.&lt;/span&gt;&lt;/p&gt;
&lt;p&gt;&lt;span&gt;Was this done intentionally, and will this be improved in any upcoming releases?&lt;/span&gt;&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item><item><title>RE: Exporting and Filtering Site Analytics data from the Platform Analytics Consul</title><link>https://verint14-pre-02.socialedgeconsulting.io/thread/155?ContentTypeID=1</link><pubDate>Wed, 20 Jul 2022 13:24:08 GMT</pubDate><guid isPermaLink="false">be0c82f9-58d3-44f5-8fdb-62ef8f185071</guid><dc:creator>Sara Collins</dc:creator><slash:comments>0</slash:comments><comments>https://verint14-pre-02.socialedgeconsulting.io/thread/155?ContentTypeID=1</comments><wfw:commentRss>https://verint14-pre-02.socialedgeconsulting.io/practice-a/f/q-a/16/exporting-and-filtering-site-analytics-data-from-the-platform-analytics-consul/rss?ContentTypeId=0</wfw:commentRss><description>&lt;p&gt;Thank you &lt;a href="https://verint14-pre-02.socialedgeconsulting.io/members/Jane-Kratz"&gt;Jane Kratz&lt;/a&gt;&amp;nbsp;appreciate it and looking forward to your updates&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item><item><title>RE: Unsubscribe an email notification from Magnolia</title><link>https://verint14-pre-02.socialedgeconsulting.io/thread/99?ContentTypeID=1</link><pubDate>Wed, 25 May 2022 15:57:32 GMT</pubDate><guid isPermaLink="false">7df5efaf-0b74-4764-a8bf-4008af6740b2</guid><dc:creator>Sara Collins</dc:creator><slash:comments>0</slash:comments><comments>https://verint14-pre-02.socialedgeconsulting.io/thread/99?ContentTypeID=1</comments><wfw:commentRss>https://verint14-pre-02.socialedgeconsulting.io/practice-a/f/q-a/18/unsubscribe-an-email-notification-from-magnolia/rss?ContentTypeId=0</wfw:commentRss><description>&lt;p&gt;We would have to resubscribe them. Who is the user and I can help with this process?&amp;nbsp;&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item><item><title>Unsubscribe an email notification from Magnolia</title><link>https://verint14-pre-02.socialedgeconsulting.io/thread/18?ContentTypeID=1</link><pubDate>Wed, 11 May 2022 17:31:54 GMT</pubDate><guid isPermaLink="false">5c8617c4-fd50-4d98-bab5-fd56d68caae8</guid><dc:creator>Kathy Manix</dc:creator><slash:comments>1</slash:comments><comments>https://verint14-pre-02.socialedgeconsulting.io/thread/18?ContentTypeID=1</comments><wfw:commentRss>https://verint14-pre-02.socialedgeconsulting.io/practice-a/f/q-a/18/unsubscribe-an-email-notification-from-magnolia/rss?ContentTypeId=0</wfw:commentRss><description>&lt;div&gt;
&lt;p&gt;&lt;span&gt;A question from a customer: if an employee clicks &amp;quot;Unsubscribe&amp;quot; on the&amp;nbsp;&lt;/span&gt;&lt;span&gt;&lt;strong&gt;email notifications from Magnolia&lt;/strong&gt;&lt;/span&gt;&lt;span&gt;, can they resubscribe or can we resubscribe them? We have somebody who accidentally clicked Unsubscribe.&lt;/span&gt;&lt;/p&gt;
&lt;div&gt;&lt;/div&gt;
&lt;/div&gt;
&lt;div&gt;
&lt;div data-minlinks="4" data-direction="horizontal" data-maxlinks="4" data-reflow-wait-check-count="0" data-reflow-wait-timeout="null" data-finalized="true"&gt;
&lt;div&gt;&lt;/div&gt;
&lt;/div&gt;
&lt;/div&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item><item><title>RE: Exporting and Filtering Site Analytics data from the Platform Analytics Consul</title><link>https://verint14-pre-02.socialedgeconsulting.io/thread/86?ContentTypeID=1</link><pubDate>Wed, 25 May 2022 15:28:12 GMT</pubDate><guid isPermaLink="false">1f00acb7-93b5-402e-a9e9-e4875c48e1f0</guid><dc:creator>Jane Kratz</dc:creator><slash:comments>1</slash:comments><comments>https://verint14-pre-02.socialedgeconsulting.io/thread/86?ContentTypeID=1</comments><wfw:commentRss>https://verint14-pre-02.socialedgeconsulting.io/practice-a/f/q-a/16/exporting-and-filtering-site-analytics-data-from-the-platform-analytics-consul/rss?ContentTypeId=0</wfw:commentRss><description>&lt;div data-replyid="26" data-userid="2112" data-permalink="~/product-a/f/q-a/20/exporting-and-filtering-site-analytics-data-from-the-platform-analytics-consul/26"&gt;
&lt;div&gt;
&lt;p&gt;It was not done intentionally, have to confirm who headed that process. We are hoping to have it fixed soon as we have reached out to the tech team for support&amp;nbsp;&lt;/p&gt;
&lt;/div&gt;
&lt;/div&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item><item><title>Viewing Page Analytics role?</title><link>https://verint14-pre-02.socialedgeconsulting.io/thread/17?ContentTypeID=1</link><pubDate>Wed, 11 May 2022 17:30:54 GMT</pubDate><guid isPermaLink="false">cff920e3-437b-40dc-8b5f-6989e55c6f6b</guid><dc:creator>James Jordan</dc:creator><slash:comments>0</slash:comments><comments>https://verint14-pre-02.socialedgeconsulting.io/thread/17?ContentTypeID=1</comments><wfw:commentRss>https://verint14-pre-02.socialedgeconsulting.io/practice-a/f/q-a/17/viewing-page-analytics-role/rss?ContentTypeId=0</wfw:commentRss><description>&lt;p&gt;&lt;span&gt;Hello team,&lt;/span&gt;&lt;/p&gt;
&lt;p&gt;&lt;span&gt;I know that as someone with the role to Create and Edit you can also View your own&amp;nbsp;Magnolia page analytics. What about if i don&amp;#39;t want the person to create and edit content, is there a way for them to view page analytics? I&amp;#39;m always hesitant about using the &amp;quot;Read&amp;quot; role due to all the &amp;quot;unusual&amp;quot; behaviors it might cause, so wanted to get some thoughts on this type of usage&amp;nbsp;and recommendations?&lt;/span&gt;&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item></channel></rss>