<?xml version="1.0" encoding="UTF-8"?><rss version="2.0" xmlns:atom="http://www.w3.org/2005/Atom"><channel><title>Posts of Hodor Hodor RSS</title><link><![CDATA[https://unacms.com/m/posts/rss/author/1492]]></link><atom:link href="https://unacms.com/m/posts/rss/author/1492" rel="self" type="application/rss+xml" /><description>Posts of Hodor Hodor RSS</description><lastBuildDate>Mon, 22 Jun 2020 22:16:12 GMT</lastBuildDate><item><title><![CDATA[How to change Facebook profile image on Facebook connect app]]></title><link><![CDATA[https://unacms.com/p/how-to-change-facebook-profile-image-on]]></link><guid><![CDATA[https://unacms.com/p/how-to-change-facebook-profile-image-on]]></guid><description><![CDATA[<p>Module-&gt;Facebook_connect-&gt;class-&gt;bxFaceBookConnecMoudle.phpfind thisif ($oFacebookProfileImageResponse = $this -&gt; oFacebook -&gt; get('/me/picture?type=large&amp;redirect=false')) {replace with thisif ($oFacebookProfileImageResponse = $this -&gt; oFacebook -&gt; get('/me/picture?width=9999&amp;redirect=false')) {</p>]]></description><pubDate>Mon, 22 Jun 2020 22:16:12 GMT</pubDate></item><item><title><![CDATA[Modal to post's photos]]></title><link><![CDATA[https://unacms.com/p/modal-to-post-s-photos]]></link><guid><![CDATA[https://unacms.com/p/modal-to-post-s-photos]]></guid><description><![CDATA[<p>Go StudioPages -&gt; PostsSelect "View Post" pageAdd new "raw block"Add the code below and name it "JS Modal"Set Block Layout to "Content" Save&lt;style&gt;
.ImgThumbnail {
border-radius: 5px;
cursor: pointer;
transition: 0.3s;
}
.ImgThumbnail:nth-of-type(1) {
margin-left: 20%;
}
.modal {
display: none;
position: fixed;
z-index: 1;
padding-top: 100px;
left: 0;
top: 0;
width: 100%;
height: 100%;
overflow: auto;
background-color: rgb(0, 0, 0);
background-color: rgba(0, 0, 0, 0.9);
}
.modalImage {
margin: auto;
display: block;
width: 50%;
height: 60%;
max-width: 700px;
}
#caption {
margin: auto;
display: block;
width: 80%;
max-width: 700px;
text-align: center;
color: #ccc;
padding: 10px 0;
height: 150px;
}
.close {
position: absolute;
top: 15px;
right: 35px;
color: #f1f1f1;
font-size: 40px;
font-weight: bold;
transition: 0.3s;
}
.close:hover,
.close:focus {
color: rgb(255, 0, 0);
cursor: pointer;
}
@media only screen and (max-width: 700px) {
.modalImage {
width: 100%;
}

}

.fr-fic.fr-dib{cursor:pointer;}
&lt;/style&gt;
&lt;!-- The Modal --&gt;
&lt;div class="modal"&gt;
&lt;span class="close"&gt;×&lt;/span&gt;
&lt;img class="modalImage" id="img01" /&gt;
&lt;/div&gt;
&lt;script&gt;
$(document).ready(function () {
var modalEle = document.querySelector(".modal");
var modalImage = document.querySelector(".modalImage");
Array.from(document.querySelectorAll(".fr-fic")).forEach(item =&gt; {
item.addEventListener("click", event =&gt; {
modalEle.style.display = "block";
modalImage.src = event.target.src;
});
});
document.querySelector(".close").addEventListener("click", () =&gt; {
modalEle.style.display = "none";
});
});
&lt;/script&gt;That's it</p>]]></description><pubDate>Sat, 13 Jun 2020 11:57:44 GMT</pubDate></item><item><title><![CDATA[test ]]></title><link><![CDATA[https://unacms.com/p/test-9806]]></link><guid><![CDATA[https://unacms.com/p/test-9806]]></guid><description><![CDATA[<p>gggg</p>]]></description><pubDate>Sat, 04 Apr 2020 08:03:39 GMT</pubDate></item><item><title><![CDATA[Make Social button horizonal]]></title><link><![CDATA[https://unacms.com/p/make-social-button-horizonal]]></link><guid><![CDATA[https://unacms.com/p/make-social-button-horizonal]]></guid><description><![CDATA[<p>Go to template-&gt;auth.cssand do like this (comment):.sys-auth-block .sys-auth:not(.sys-auth-compact) {  /*width: 48%;*/}.sys-auth-block {  /*display: flex;    flex-wrap: wrap;*/  justify-content: space-between;  align-content: space-between;}</p>]]></description><pubDate>Mon, 09 Sep 2019 18:25:15 GMT</pubDate></item><item><title><![CDATA[Add share to whatsapp]]></title><link><![CDATA[https://unacms.com/p/add-share-to-whatsapp]]></link><guid><![CDATA[https://unacms.com/p/add-share-to-whatsapp]]></guid><description><![CDATA[<p>just follow screen shot</p>]]></description><pubDate>Mon, 26 Aug 2019 22:18:43 GMT</pubDate></item><item><title><![CDATA[How to scroll after paginate ]]></title><link><![CDATA[https://unacms.com/p/how-to-scroll-after-paginate]]></link><guid><![CDATA[https://unacms.com/p/how-to-scroll-after-paginate]]></guid><description><![CDATA[<p>go to /inc/classes/BxDolPaginate.phpchange this:   protected function _getPageChangeOnClick($aReplacement)
    {
        return !empty($this-&gt;_sOnChangePage) ? 'onclick="javascript:' . $this-&gt;_oTemplate-&gt;parseHtmlByContent($this-&gt;_sOnChangePage, $aReplacement, array('{', '}')) . '; return false;"' : '';
    }to this:protected function _getPageChangeOnClick($aReplacement)
    {
        return !empty($this-&gt;_sOnChangePage) ? 'onclick="javascript:scorlly();' . $this-&gt;_oTemplate-&gt;parseHtmlByContent($this-&gt;_sOnChangePage, $aReplacement, array('{', '}')) . '; return false;"' : '';
    }go to studio-&gt;designer&gt;injection and add this to the head: *add script tag surround (cant do it here) function scorlly(){
  $("html, body").animate({ scrollTop: 300 }, "slow");
  return false;
  }</p>]]></description><pubDate>Mon, 05 Aug 2019 02:52:36 GMT</pubDate></item><item><title><![CDATA[סס]]></title><link><![CDATA[https://unacms.com/p/סס]]></link><guid><![CDATA[https://unacms.com/p/סס]]></guid><description><![CDATA[<p>סס</p>]]></description><pubDate>Fri, 26 Jul 2019 20:13:21 GMT</pubDate></item><item><title><![CDATA[Dating module ]]></title><link><![CDATA[https://unacms.com/p/dating-module]]></link><guid><![CDATA[https://unacms.com/p/dating-module]]></guid><description><![CDATA[<p>Una team or una developers please add dating module, its essential and as i remember it was a key feature back in dolphin days....The person who register (or in edit profile) will have an option to check if he single or other relevant status and want to use dating module, if so he will be enlisted with others like himthe module will have option of privacy like to hide the module to non registered (point 1) hide from profile person block etc.the module should have a dedicated search engine and its own people blockI let u use your imagination for the rest</p>]]></description><pubDate>Thu, 18 Jul 2019 00:59:34 GMT</pubDate></item></channel></rss>