Home › Forums › WoodMart support forum › Edit Shop Page
Edit Shop Page
- This topic has 8 replies, 3 voices, and was last updated 12 hours, 48 minutes ago by
Luke Nielsen.
-
AuthorPosts
-
March 19, 2025 at 6:28 pm #647308
emancilla0410ParticipantHi, when I tried to edit the shop page in my website from the “pages” section is shown as empty (picture: page2). Also when in the actual page, it does not give me the option at the top of the page to edit, as the home page does (picture: page). Can you please help me to solve this issue? I would like to be able to edit the current content, not create from scratch.
Attachments:
You must be logged in to view attached files.March 20, 2025 at 11:54 am #647522
Aizaz Imtiaz AwanKeymasterHello,
Sorry for the inconvenience but as you know the default layout of the Shop or Category page comes from the WooCommerce end and isn’t directly editable with the Page Builder plugins because WooCommerce doesn’t allow it to do so.
But under the WoodMart Theme, using the Theme’s Layout Builder you can create Custom Layouts for WooCommerce pages like Shop, Category, Single Product page, Cart and Checkouts. So, you can use that to create your own custom layouts for these pages.
Further, you can read more about the Layout Builder here: https://xtemos.com/docs-topic/woodmart-woocommerce-layout-builder/
Best Regards,
March 28, 2025 at 6:42 pm #649990
emancilla0410ParticipantHi, thanks for the previous answer. Now I need help with a new issue. I need to set a custom link for the shop page when using pagination, applying a filter, etc. If you take a look in my shop page there are two secctions ‘Bienvenido Mayorista’ and ‘Nuestra Tienda’. Every time I apply a filter or use pagination, it takes me all the way to ‘Bienvenido Mayorista’ section, I need it to start at ‘Nuestra Tienda’ section
March 29, 2025 at 10:25 am #650055
Aizaz Imtiaz AwanKeymasterHello,
You have missed the admin login URL. Can you please share the WP admin login URL in the private area so I can check and give you a possible solution?
Could you please clarify what exactly you’d like to achieve?
Are you looking to:
- Automatically scroll the page to the “Nuestra Tienda” section after applying filters or using pagination?
- Or are you trying to change the default URL behavior when filters or pagination are used?
Best Regards,
March 30, 2025 at 12:47 am #650160
emancilla0410ParticipantI would like to use the less expensive option, but I’d like to know how to do both, please. Also in regard to the jump to a specific part of the page, when using the “Nuestra Tienda” link or the store icon sometimes the sticky header is shown and sometimes not, how can I ensure that the sticky header always is shown (for references check page.png in the first question)?
Now a question related to the archive product element. How can I set a random order to display the products in my shop page?
March 30, 2025 at 1:44 am #650163
emancilla0410ParticipantPlease help me set the Shop sidebar widgets’ default state to ‘block’ instead of ‘none’ so that they are expanded by default rather than collapsed
March 31, 2025 at 3:01 pm #650472
Luke NielsenKeymasterHello,
1. In order to disable the scroll to the top after clicking on the filter, use the code below in the fucntions.php file in your child theme.
add_filter( 'woodmart_ajax_scroll_class', function ( $class ) { if ( woodmart_is_shop_archive() ) { return '.wd-products[data-source="main_loop"]'; } return $class; }); add_filter( 'woodmart_ajax_scroll_offset', function ( $offset ) { if ( woodmart_is_shop_archive() ) { return 350; } return $offset; });
2. To make the page scroll to the products, you need to use the Page Anchor (for One-Page Menu) (to the layout itself you need to add Navigation Anchor and assign them via ID):
https://monosnap.com/direct/XIPtMy93qSTiguCkrSwcXphnW3Dhnp
https://monosnap.com/file/qRWMpYescLNySbYmMwdsPDTHd0KL0O
https://monosnap.com/file/2jnxkfOG6g4cQDu7ISF7xOpZUg79Ac
3. In order to show all widgets, you should set the “Disable” value here – https://monosnap.com/file/BeBwCtLrQtjd9ilQsesB1izxdZDPeg
Kind Regards
April 2, 2025 at 3:07 am #650968
emancilla0410ParticipantThanks for the help!
One more question. I need to set all the url’s that start with /tienda be redirected.April 2, 2025 at 3:15 pm #651152
Luke NielsenKeymasterHello,
Login to dashboard > Go to Settings > Permalinks.
Read the below documentation on how to customize permalinks:
https://wordpress.org/documentation/article/customize-permalinks/Kind Regards.
-
AuthorPosts
- You must be logged in to create new topics. Login / Register