When I looked the site through my pc it is not showing the register and login button at all…
But when I see it in my mobile, is perfect…
@ajithkrr I saw them on PC.
I don’t know if it is mine problem
Because all other sites of mine works…
And I can’t even make a new site
When I click the new site it dosen’t show anything-> Just blank.
And This Community Discussion Page is also not working for me
I tried with other browsers also with no success.
Anyway I will try it on another pc.
Thanks for all your time and resource
Hi team. The speed improvements are really great! Can’t wait for it to be fully rolled out
3 quick problems:
-
repeater image rendering inconsistent - they display perfectly on ready, but if the repeater data is changed dynamically (using code only, no dataset involved) the images don’t always display. (image 1)
-
‘fixedWidth’ fit mode not working (image2)
-
local.getItem not always working
And a question:
Will these changes improve speed in all browsers?
Thanks again ![]()
Luke
image1
image2
@avirambe Sure here you go
https://www.psldn.com/
Hi Luke, Should be resolved now. Please let us know if the issue persists.
@avirambe yes all fixed, thanks! Although speed improvements seem to have reversed too for now!
@lhoarnold , Yes temporarily until the issue is fixed.
@avirambe Makes sense. Thanks again for all your work on this. Pretty exciting ![]()
@avirambe Hey, same problem here
@mikhail-spirin-wix Hi! I continue experiencing the following problems on the site https://www.crzlawyers.com/
-
Show/hide bugs on page load. I don’t understand the reason. Everything is OK in the editor. The Video
-
For some reason, the onClick event (expand/collapse) does not work in the footer. The Video
-
I use buttons as HotSpot (text reduced to “0”). On the mobile version, the text is still visible, although on the PC everything is OK. Everything was fine before.
Please exclude this site from testing. This is a commercial project that should work without errors.
Thank you.
@benny-glaser Please attach a link so we’ll be able to check it.
@shaharn Fixed, thanks😎
Hey, should be fixed now.
Let me know if the issue persist.
@benny-glaser Hey Benny,
It seems like your issues on this site are not related to the new improvements we are rolling out, as this site is not part of the rollout yet.
Another example. But this is not a critical bug.
The “slide” animation effect on the live site is different from the editor. I mean a behavior. The Video (lower left corner)
let textShow = {
"duration": 300,
"direction": "left"
};
$w("#textColor").show("slide", textShow);
Hi I have same problem. Code below works in preview mode from dev editor but not on live. If you click through site as follows you’ll see issue.
- got to www.recognex.co.uk
- select ‘Resource Centre’ from menu
- select Pink ‘Open Finance’ Box
- select ‘WHAT IS OPEN BANKING?’
5). select ‘Open Banking User Journeys’
6). select ‘What are the Payment Initiation (PISP) journeys as identified by the UK’s Open Banking Implementation Entity’ - ‘Show More Info’ pink button at bottom
- Click ‘Open Banking International Payments’ and you’ll get a blank screen
- Screen shot attached for what you get in Dev preview mode. All permissions are fine on collection data (I think!!!)
The else section in the code extract below doesn’t work on live (I believe) but it does work in preview
5WHAT IS OPEN BANKING?WHAT IS OPEN BANKING?’
$w( “#table1” ).onCellSelect ( async (event, $w) => {
//console.log(session.getItem(“ClickLimitReached”));
//await IncrementCounter();
console.log( "The value from cell select was " + event.cellData);
let varSelectedTitle = event.cellData;
let $item = $w.at(event.context);
let clickedItemData = $item( “#FAQParentDataset” ).getCurrentItem();
console.log( "InfoLink button hidden is " ,$item( “#InfoLinksButton” ).hidden)
if ($item( “#InfoLinksButton” ).hidden === true ){
setParentLevel(clickedItemData.title);
filter( "title" ,event.cellData);
$w( '#anchor1' ).scrollTo();
tableresetter();
}
else {
console.log( “InfoLinks click code was reached” );
queryInfoLinks(varSelectedTitle, “MoreDetail” ) /
.then( (items) => {
console.log( "DB Query Result - " + JSON.stringify(items));
if (items.length !== 0 ){
$item( “#table1” ).collapse();
$item( “#table1” ).hide();
console.log( “The infolinks query returned” + items.length + " records" );
$item( “#buttonShowLinkInfo” ).show();
$item( “#buttonShowLinkInfo” ).label = “-” ;
$item( “#textLinkDescription” ).text = items[ 0 ].title;
$item( “#textLinkDescription” ).expand();
$item( “#textLinkDescription” ).show();
$item( “#textLinkSample” ).text = items[ 0 ].linkSpecificText;
$item( “#textLinkSample” ).expand();
$item( “#textLinkSample” ).show();
console.log(items[ 0 ].link);
$item( “#textLinkURL” ).html = ‘
’ + items[ 0 ].link + ‘
’ ;$item( “#textLinkURL” ).expand();
$item( “#textLinkURL” ).show();
$item( "#InfoLinksButton" ).disable();
}
});
}
});
@shahr nahum



