Home › Forums › Arnold WordPress Theme › my account page & cart page & date
- This topic has 6 replies, 2 voices, and was last updated 4 years ago by
HCC.
-
AuthorPosts
-
May 30, 2022 at 7:00 am #27592
Hi Sea,
MY ACCOUNT PAGE
I want to get rid of 3 bullet points in the my account section of the shop. If I access the page “my account” on my dashboard, I won’t have any options at all however.
How do I delete the following tabs : 1) Dashboard 2) Store Credits 3) Downloads
For the rest of the side tabs, I would like to decrease the font size. Make them smaller than the other font in the middle.
See screenshot here:
https://www.dropbox.com/s/umwakx9rvbte8a4/Bildschirmfoto%202022-05-29%20um%2022.00.12.png?dl=0CART PAGE
On my cart page the font sizes and spacing is still off. I contacted you already regarding font sizes, but it did not solve the problem properly. The font size “send to a different address” is too big still.
“Rechnungsdetails” + “Zahlungsart auswählen” + “Deine Bestellung” +
“Lieferung an eine andere Adresse senden?” should all have the same font size as “Zahlungsart auswählen”.
And they should all be aligned to the left – “Deine Bestellung aligned to the right”
Also, how do I get rid off the line “Wohnung, Suite, Zimmer”? – we don’t really use that in Germany.
screenshots here:
https://www.dropbox.com/s/owqnsduuy3jc4q8/Bildschirmfoto%202022-05-30%20um%2008.46.55.png?dl=0
https://www.dropbox.com/s/8r46njes4ijjeo5/Bildschirmfoto%202022-05-30%20um%2008.47.02.png?dl=0I hope you can help me here. I want to launch my shop by tonight. It’s essential to look nicely designed and trustworthy, which includes proper spacing and aligning. I really like your theme and would like to launch my shop on Arnold. But if this doesn’t display properly, I will change to “Shopify” in the long run.
Let me know if you need access to the site. I could throw it online for a short period today.
Thank you and best
May 31, 2022 at 2:09 am #27597Hi there,
Welcome to SeaTheme forum.Please install a child theme, paste the codes into the function.php:
add_filter( 'woocommerce_account_menu_items', 'sea_remove_my_account_dashboard' ); function sea_remove_my_account_dashboard( $menu_links ){ unset( $menu_links['dashboard'] ); unset( $menu_links['downloads'] ); unset( $menu_links['store-credits'] ); return $menu_links; } add_action('template_redirect', 'sea_redirect_to_orders_from_dashboard' ); function sea_redirect_to_orders_from_dashboard(){ if( is_account_page() && empty( WC()->query->get_current_endpoint() ) ){ wp_safe_redirect( wc_get_account_endpoint_url( 'orders' ) ); exit; } }ps: I am not sure if the Store Credits comes from another plugin, if it still display. I need to login your WordPress to check.
If you don’t know how to add the PHP codes, please leave your wp-admin access (URL / username/password) by picking up “Set as private reply”? I will help you add it.
To decrease the font size, please paste the custom CSS code to “Appearance > Customize: Additional CSS”
.entry .woocommerce-MyAccount-navigation ul li { font-size: 0.8em; }2. For the cart page font issues, yes, I need access of your website.
Regards!
SeaTheme – FAQs – WordPress Customization – FacebookMay 31, 2022 at 6:02 am #27598This reply has been marked as private.May 31, 2022 at 6:37 am #27599Welcome, please add the CSS(“Appearance > Customize: Additional CSS”) to fix font issues on the Cart page:
h3#order_payment_heading, .entry #ship-to-different-address > label { font-size: 24px; } @media (min-width: 768px) { #order_review_heading { float: left; width: 100%; } }If there still are issues, plz leave your wp-admin access username and password also by picking up “Set as private reply” .
Regards!
SeaTheme – FAQs – WordPress Customization – FacebookMay 31, 2022 at 11:22 am #27601This reply has been marked as private.May 31, 2022 at 1:59 pm #27602This reply has been marked as private.May 31, 2022 at 5:54 pm #27603This reply has been marked as private. -
AuthorPosts
- You must be logged in to reply to this topic.
