Question:
Hi, I want a simple button which takes the user to the back page. Is that possible?
I am so new at this. Can anyone kindly help me?
Product:
Velo, Developer Mode
What are you trying to achieve:
I just want the users to land to their previous page.
What have you already tried:
I tried adding this to my masterPage.js as in the Docs:
import wixWindowFrontend from 'wix-window-frontend';
// ...
let referrer = wixWindowFrontend.referrer; // "http://somesite.com"
$w.onReady(function () {
// Write your code here
});
// In Site tab
import {session} from 'wix-storage-frontend';
import wixLocationFrontend from 'wix-location-frontend';
let previousPageURL;
$w.onReady(function () {
previousPageURL = session.getItem("page");
session.setItem("page", wixLocationFrontend.url);
});
And this to the button:
import {session} from 'wix-storage-frontend';
import wixLocationFrontend from 'wix-location-frontend';
import wixWindowFrontend from 'wix-window-frontend';
export function button12_click(event) {
// This function was added from the Properties & Events panel. To learn more, visit http://wix.to/UcBnC-4
// Add your code for this event here:
// ...
let referrer = wixWindowFrontend.referrer; // "http://somesite.com"
}
Additional information:
I will be grateful for any help or advice given. Thanks so much.
What does mean a → BACK-BUTON ?
And which functionality should it have?
For sure it is a BUTTON , which should be able to memorize the last url-state of website.
That means → when navigating from PAGE-A to PAGE-B, the button should memorize at least the last state → “URL of PAGE-A”.
To be able to get this information on all pages you can use → wix-Storage (this is what you are already doing).
Now there are two questions.
a) When to memorize the last state of the page?
b) At which moment to load last state of the page to get the BACK-function working?
a) Everytime when you switch the page → storing the last-state of the page (URL)
b) Everytime when you click the BACK-BUTTON → loading the last state to navigate back to the last visited state.
import {session} from 'wix-storage-frontend';
import wixLocationFrontend from 'wix-location-frontend';
let previousPageURL;
$w.onReady(function () {
previousPageURL = session.getItem("page");
session.setItem("page", wixLocationFrontend.url);
})
You found this example here…
But i would suggest even a much better version of it.
import {session} from 'wix-storage-frontend';
import wixLocationFrontend from 'wix-location-frontend';
let navData = {};
$w.onReady(function () {
navData.previousPageURL = JSON.parse(session.getItem(navData)).previousPageURL;
navData.currentPageURL = wixLocationFrontend.url;
console.log('Navigation-Data: ', navData);
session.setItem("navData", JSON.stringify(navData));
})
Something like this. Because now you always have the current page-URL and the previous one always ready to be used inside your object. All you have to do now is only to choose which one you need and when exactly you need it → in your case on a BUTTON-CLICK ???
The way i showed → you even could generate a HISTORY. DEEP-MEMORY OF VISITED-PAGES.
For example the last 3 or 5 page-URLS.
An even more advanced MEMORIZER-FUNCTION could look like…
// A function to update the navigation data in the session storage
function updateNavigationData(newPageURL) {
const maxPagesToTrack = 5; // Number of previous pages to track
// Get existing navigation data from session storage
let navData = JSON.parse(sessionStorage.getItem("navData")) || {
previousPageURLs: []
};
// Append the current page URL to the list of previous URLs
navData.previousPageURLs.push(newPageURL);
// Keep only the last 5 URLs
if (navData.previousPageURLs.length > maxPagesToTrack) {
navData.previousPageURLs.shift(); // Remove the oldest URL
}
// Update the session storage with the modified data
sessionStorage.setItem("navData", JSON.stringify(navData));
// Return the updated data for debugging
return navData;
}
// When the page is ready
$w.onReady(function() {
const currentPageURL = wixLocationFrontend.url; // Get the current page URL
const updatedNavData = updateNavigationData(currentPageURL); // Update the navigation data
// Log the updated navigation data
console.log("Navigation Data: ", updatedNavData);
});
Wow. Thanks so much for your in depth answer. So to understand it all better, (pardon the questions of a newbie here ), I should use this code in masterPage.js?
import {session} from 'wix-storage-frontend';
import wixLocationFrontend from 'wix-location-frontend';
let navData = {};
$w.onReady(function () {
navData.previousPageURL = JSON.parse(session.getItem(navData)).previousPageURL;
navData.currentPageURL = wixLocationFrontend.url;
console.log('Navigation-Data: ', navData);
session.setItem("navData", JSON.stringify(navData));
})
And I should use the second code in my
export function button12_click(event) {
// Second code goes here?
}
Where you have placed some buttons.
2-Buttons were added to the HEADER.
1-Button was added to the BODY.
Now you want to reply to your own question by yourself, how to do that?
Well you just test it out and see the results…placing the following code for example to the MASTER-PAGE → which will control which elements? You do not know?
So let’s find out…by adding a simple code including some logs for the buttons we putted onto our sections (HEADER+BODY).
What exactly are we going to find out now? You have some assumtion ?
Yes, of course → we want to find out if we can CONTROLL the buttons on both of sections on our → MASTER-PAGE. Let’s do it…
So immediatelly we can see a red-underlined code-part, like…
Let’s check what the error wants to tell us…
It tells us the elements does not exist!!! Wow, really? So that means i can not controll it from the master-page, because i know exactly that “btn1” is an existing BUTTON…
…, but yes it is placed on the → BODY <— not inside the → HEADER <—, this is true, but is it really not controllable from the HEADER ?
Let’s make a check…are we able to hide the ‘btn1’ - BUTTON throughout out MASTER-PAGE, although the button is on the body? Is the MASTER-PAGE capable to control elements on BODY and HEADER-SECTION?
With a simple expanding of our CODE, we will see the result immediately …
By the way → DOES IT MEAN THAT THE → RED indicated UNDERLINE is throwing us a wrong message? That means the AUTO-COMPLETION of the Wix-Studio-Editor has a BUG ? → Questions over questions
This is the way you have to go, if you really want to generate something what will work at the end like you expect it.
This code-part makes sure, that your memory-object will be created/updated, each time when you switch the page. Because, everytime you switch the page → it will trigger the onReady()-part of the code, accordingly updating the current and the previous URL-state.
The second part is just for navigation if your buttons are inside the header.
Paste the following code onto the page, where your BACK-BUTTON is located on…
import wixLocation from 'wix-location';
import {session} from 'wix-storage-frontend';
$w.onReady(()=>{let memoryData = JSON.parse(session.getItem('memoryData'));
$w('#btn2Back').onClick(()=>{wixLocation.to(memoryData.prevPageURL)});
});
Do also not forget to change the ID of the button → $w(‘#btn2Back’)
Each button you want to turn into a BACK-BUTTON, you will need to add this code to the corresponding page, where the button is located on.
Hi! This is what I get in the console. The button does not take me back. Does it mean anything, please?
Running the code for the site. To debug this code in your browser's dev tools, open masterPage.js.
Mem-Data:
{...}
Running the code for the site. To debug this code in your browser's dev tools, open masterPage.js.
Running the code for the Post page. To debug this code in your browser's dev tools, open virgp.js.
Mem-Data:
{...}jsonTableCopy JSON
curPageURL: "https://www.*********.com//post/doing-all-leaving-nothing?configName=fullFunctionality&dsOrigin=Editor1.4&editorSessionId=bbd46d10-739e-4f19-bbd4-fac2a6888f38&enableScopes=true&esi=bbd46d10-739e-4f19-bbd4-fac2a6888f38&experience=editor2&isEdited=true&isEditor=true&isSantaEditor=true&lang=en&languages=&metaSiteId=f83124d8-b34f-4a23-bfce-6fe0a3e07794"
prevPageURL: "https://www.******.com//blog?configName=fullFunctionality&dsOrigin=Editor1.4&editorSessionId=bbd46d10-739e-4f19-bbd4-fac2a6888f38&enableScopes=true&esi=bbd46d10-739e-4f19-bbd4-fac2a6888f38&experience=editor2&isEdited=true&isEditor=true&isSantaEditor=true&lang=en&languages=&metaSiteId=f83124d8-b34f-4a23-bfce-6fe0a3e07794"
I changed the ID of the button to $w(‘#button12’) though.
And testing by hiding it did work though.
It seems to work sometimes, but other times, it does not. I used it for the “Post” page… but I can go back for some posts, but not for others. I am not sure if I am doing something wrong…
You are talking about blog-posts?
You installed the Wix-Blogs-App?
Working with APPs needs some more attention.
APPS have their own live-cycle. To be able to connect CUSTOM CODE to APPs you have to be tricky in many usecases.
And most of APPs have boundaries or are not flexible enough.
Maybe you want to provide some more informations about your setup ?