Forum Replies Created

Viewing 30 posts - 1 through 30 (of 51 total)
  • Avatar: chihao.weng
    howard
    Participant
    September 1, 2022 at 09:00

    When I disable “Ultimate Dashboard” plugin, it works again.

    Avatar: chihao.weng
    howard
    Participant
    August 20, 2022 at 02:50

    Thanks, problem solved

    Avatar: chihao.weng
    howard
    Participant
    August 19, 2022 at 12:04

    Please see the private content area

    Please contact administrator
    for this information.
    Avatar: chihao.weng
    howard
    Participant
    March 20, 2022 at 16:15

    The page is front page.
    https://celect.com.tw/

    I can’t open ftp , my host provider is not allowed to do that.

    Avatar: chihao.weng
    howard
    Participant
    March 20, 2022 at 12:05

    Please see the private content.

    Please contact administrator
    for this information.
    Avatar: chihao.weng
    howard
    Participant
    December 21, 2021 at 10:47

    HI,
    After you change the z-index in footer , it looks okay in browser simulator.

    However , when I actually use mobile device , the problem still exists.

    Avatar: chihao.weng
    howard
    Participant
    December 21, 2021 at 05:36

    I can’t open the image url.
    https://prnt.sc/23qfrbt

    Can you post it somewhere else ?

    Avatar: chihao.weng
    howard
    Participant
    December 20, 2021 at 04:12

    HI ,

    Please check the private message

    Please contact administrator
    for this information.
    Avatar: chihao.weng
    howard
    Participant
    December 17, 2021 at 16:31

    Hi Rose,

    Please check on the page on mobile again.
    https://moonlight-shop.com.tw/shop/

    When you click on the cart , the et-mini-content is blocked by footer

    Avatar: chihao.weng
    howard
    Participant
    November 3, 2021 at 16:33

    I see. I’ll try to use static block and try to align sub-menu to its parent menu.

    Another question is the mega menu disappears when mouse leave parent menu so I can’t click on sub-menu.

    Please see the video
    https://streamable.com/erfdvj

    Avatar: chihao.weng
    howard
    Participant
    November 3, 2021 at 16:00

    Yes , when I change the menu design to mega menu , it becomes 100% width.
    However , it require me to set at least 2 column which is not what I need.

    I’d like to set 100% width and sub-menu is right bellow menu.

    Avatar: chihao.weng
    howard
    Participant
    November 3, 2021 at 15:34

    Hi,

    I just turn on the option but it does not work

    Avatar: chihao.weng
    howard
    Participant
    June 30, 2021 at 04:39

    Yes , I saw the problem is fixed. What did you do to fix that ?

    Avatar: chihao.weng
    howard
    Participant
    June 28, 2021 at 16:42

    This is login credential.

    Please contact administrator
    for this information.
    Avatar: chihao.weng
    howard
    Participant
    February 18, 2021 at 04:22

    HI,

    I changed the path of wp-content so my clients browser get new code and it’s working now.

    Thanks

    Avatar: chihao.weng
    howard
    Participant
    February 18, 2021 at 04:21

    What are codes related to the mobile menu ?
    Do you use Jquery to append css active on element to open the mobile menu panel ?

    Maybe I can replicate those code to other place not original JS or CSS files , so clients’ browser can get new script ?

    Avatar: chihao.weng
    howard
    Participant
    February 17, 2021 at 16:50

    I updated theme to 7.2.5 and test clicking on mobile menu on my iphone safari but it didn’t work.

    Then I updated XStore core to the 3.2.5 , still does not work

    Avatar: chihao.weng
    howard
    Participant
    February 17, 2021 at 16:16

    My previous version was very old
    XStore theme : 6.3.7
    XStore core : 2.3.7.1

    I can’t clear my client’s browser cache…..
    She insisted not to clear browser cache and ask me how long the cache will expire and get fresh code.

    I updated to current version on 2/14 but my iphone safari still does not work.

    Avatar: chihao.weng
    howard
    Participant
    February 16, 2021 at 14:31

    This is the video recoding that can’t open mobile menu on my iphone safari.
    https://streamable.com/ad8l73
    I keep tapping mobile menu at the left top corner but menu does not appear.

    When I change to incognito mode , the menu is working now.

    However , I can’t all my client to change their browser to incognito mode….

    What can I do so my client’s old safari can open mobile menu ?

    Avatar: chihao.weng
    howard
    Participant
    February 4, 2021 at 19:55

    I end up adding a redirect code in /et-core-plugin/app/controllers/authoroize.php

    Line 151 :

    if ( WC()->cart->get_cart_contents_count() !== 0 || !WC()->cart->is_empty() ) {
    				$checkout_page = wc_get_checkout_url();
    				wp_redirect( $checkout_page );
    				exit;
    			}
    Avatar: chihao.weng
    howard
    Participant
    February 3, 2021 at 18:03

    I also have the 403 error and I found a solution in the following url :
    https://wordpress.org/support/topic/wc-ajaxupdate_order_review-403-error/

    When I add this code in wp-config.php , the ?wc-ajax=update_order_review (403) error is gone and the spinner disappear in the checkout page.

    define( ‘ADMIN_COOKIE_PATH’, ‘/’ );
    define( ‘COOKIE_DOMAIN’, ” );
    define( ‘COOKIEPATH’, ” );
    define( ‘SITECOOKIEPATH’, ” );

    I don’t understand how it works but it solved my problem.

    Avatar: chihao.weng
    howard
    Participant
    February 3, 2021 at 14:31

    May I know what custom code you added to functions.php?

    I’d like to redirect user to checkout page if they use facebook login

    Avatar: chihao.weng
    howard
    Participant
    February 3, 2021 at 11:04

    I tried to use another way to avoid facebook login in checkout page.

    I redirect user to my-account page to login if they not logged in and wanna access cart or checkout page.

    When user login using username and password , the filter wp_login is trigger then redirect them to checkout page.

    However when user use facebook login , the filter wp_login is not trigger so they enter my_account page which is wrong. I want them to redirect to checkout page.
    What filter or action can I use to check if their cart is not empty then redirect them to checkout page after facebook login successfully ?

    function wpse_131562_redirect() {
    if (
    ! is_user_logged_in()
    && (is_cart() || is_checkout())
    ) {
    // feel free to customize the following line to suit your needs
    wp_redirect(‘/my-account’);
    exit;
    }
    }
    add_action(‘template_redirect’, ‘wpse_131562_redirect’);

    function woocommerce_custom_redirects() {
    ob_start();
    if ( WC()->cart->get_cart_contents_count() !== 0 || !WC()->cart->is_empty() ) {
    wp_redirect( “/checkout” );
    exit;
    }

    }
    add_action(‘wp_login’, ‘woocommerce_custom_redirects’);

    Avatar: chihao.weng
    howard
    Participant
    February 3, 2021 at 06:12

    I also have this issue.

    My customer ask me to place a facebook login button in checkout page like in my-account page. Please help on this! It is impossible not to do this for them.

    If it can’t login to checkout page directly for any reason , please redirect to cart page for temporarily.

    Avatar: chihao.weng
    howard
    Participant
    January 8, 2021 at 19:22

    After I enable registration on my account page, I can see the register tab

    But when I go to the my account page , it become empty.
    https://www.souvenirphoto.com.tw/my-account/

    Before I enable the registration, at least I can see the login form.

    Avatar: chihao.weng
    howard
    Participant
    December 22, 2020 at 13:02

    HI ,

    Please check the private message

    Please contact administrator
    for this information.
    Avatar: chihao.weng
    howard
    Participant
    December 15, 2020 at 02:47

    It still be hidden on mobile phone.

    Please see the video

    https://streamable.com/ibqzor

    Avatar: chihao.weng
    howard
    Participant
    December 14, 2020 at 17:57

    I’ve added your code but it does not work….
    The message only appear 20 seconds then it goes away so I wanna it to be shown at the top.

    Avatar: chihao.weng
    howard
    Participant
    December 7, 2020 at 16:04

    The width of bottom border is 100%. It does not look like a parent menu.

    How to make the border 80%

    Avatar: chihao.weng
    howard
    Participant
    September 25, 2020 at 08:45

    In the bike demo page , when you click on “shop” and “blog” menu , you will see the bug…

  • 1 2
    Viewing 30 results - 1 through 30 (of 51 total)
Viewing 30 posts - 1 through 30 (of 51 total)
We're using our own and third-party cookies to improve your experience and our website. Keep on browsing to accept our cookie policy.