Base url - https://mediamarkt.pt/collections/televisores?tab=products&page=1&rb_snize_facet37=Televisores
I'm trying to scrape all pages, the process works in so much as it clicks on each product element and scrapes the data for that product and then repeats it for every product.
But, for some reason it always starts at page 9.
I have tried to use a range as per the docs, so set the start url as https://mediamarkt.pt/collections/televisores?tab=products&page=[1-9]&rb_snize_facet37=Televisores
But it always starts at page 9 not 1.
What am I doing wrong here?
I've tried configuring a manual step to actually click on the paginator to go to the next page as well, but then it skips the steps to click on a product element and all it does is click the paginator until it gets to the last page, so that doesn't work either.
Related
I have a shop page which I’m accessing over link.
https://www.notAvailableShopLink.com/shop/
Now I’ve added one more page - with short code to show only Suspension items (with shortcode)
https://www.notAvailableShopLink.com/suspensions
How can i enable that if i go /suspensions/?filter_fitment=2023 , i will get same results.
This works
https://www.notAvailableShopLink.com/shop/?filter_fitment=2023
This don't
https://www.notAvailableShopLink.com/suspensions/?filter_fitment=2023
Basically filter not works.
I would like to show posts of certain categories on my page only by showing 10 posts at a time with next page button. I would like this to update automatically so I don't have to manually add them each time. I would also like to have next page and previous page where it will update and show me the next 10 or previous 10.
Everything I have found on the web shows me how to do it by manually creating a page and adding 10. I would like it to just update the state every time I click next or previous instead of manually creating a page for 10 posts and then updating them. I have a lot of posts now and it's a lot of work.
The mechanism that solves your problem is called pagination. Wordpress has example of how to implement one showned here.
No, I just couldn't find this anywhere else. (everything but)
Does anyone know how to (without using an iFrame) insert a full woocommerce single product page within another page (so it appears in it's entirety).
What I'm looking for is a way to create a new page, type some content (for example, a headline) implement some code (shortcode etc) and have the full woocommerce simple product page of my choice appear in its entirety at that point, allowing me to continue to add content thereafter.
I use WordPress and make test page on which I want to add a Deezer Musik albums (many different albums) on this page. But when there will be many (for example 50-100 alboms) page will be loaded for a long time.
How to make so you can open page and page show not all (50-100) alboms same times? Page show first, for example, 5 or 10 albums and then you pushed button (or scrolling) and page show next 5 to 10 albums, and next... Not all at the same time. Step by step.
I have a question, but the problem is, I can't show the page right now, because it's only on my local server. I will try to explain it as good as possible.
I've got a view that makes my frontpage have the full content of my nodes. So you see a node(in this case an embeded youtube link). You can then go to the next node via "next" or to the previous one via "previous", etc. The problem I have and I don't know how to fix is:
I got a gallery below(another view), of all my nodes, so you can either click through the prev and next buttons, or click on one of the pictures in the "gallery". But when i click on the galery, it goes to the node links so lets say "site.com/node/44".
Is there a way I can go to the node/44 page and still be able to click prev and next? And moreover, can I use the Slideshow plugin by views with changing links? Because it's just says "#" in the url... Like it does with the main content when i click "prev" and "next"?
I hope you can understand what this is about :-). If not, please feel free to ask for further information.
So your explanation is a little "garbly" so here's my somewhat 'not-so-garbly' response:
Sounds like your understanding of views is a little low. Make sure you're Displaying fields in your view and not just full nodes or teasers.
Next, if your desire is to show the gallery on all the nodes of the same type, you can so by creating a block display in views and configuring that block to show up ONLY on the node type you desire.
It gets complicated when you (which appears to be your desire) want the view to start from the last point you were viewing. This will require rewriting the field (this is available via the field configure form) which contains the image. You'll have to add a parameter (probably the current nid) which can be added, hidden, then accessed as a token via the Views Fields interface as well.
I don't remember exactly how to get the view to display the current (or next) slide by default once it's clicked.. but this is probably how I'd do it:
pick up that parameter in JS / JQ and use it to find the slide you want to display... then fire the JS function needed to display the desired slide.