Viewing 7 replies - 1 through 7 (of 7 total)
  • Hi @alexodiy
    Thanks for reaching out to us.

    Enhancement – Account page post type list new design

    We introduce the new Account > Design (with CSS Flexbox) to make it more flexible/UI-friendly for responsive devices. So it makes sense the previous layout will override and display quite differently for the new version (3.5.18) (like this). Previously users have to scroll right-left to use Edit/Delete options on the responsive device to improve the accessibility of the elements.

    Several users raised this enhancement request, so we implement the UI like this.
    We always give users feedback top priority. Now, you know we can’t make everyone happy but believe me, this is for all. ??

    Regarding using the custom filter to support custom post type on the account page. I don’t think you still need to use custom filtering to show custom post types on the Account page cause we introduce another user-requested *enhancement* → You can select your custom post to show on the Account page – https://prnt.sc/19jom07. So no need to use custom filtering on the theme functions.php.

    However, the previous filtering for the account section also improved due to technical consequences (refer to this PR for more details). So if you need it badly, let me consult with the developers. I will share how to use that for the newest version properly. I assume (after going through the PR) you will understand the circumstance why it’s implemented alternatively despite the backward compatibility.

    I hope everything is clear now & it will help you to accept the new UI change.
    Kind Regards.

    Thread Starter Dan Zakirov

    (@alexodiy)

    Hello @aurangajeb

    https://prnt.sc/19jom07 – now that’s fire, finally!

    Your answer completely satisfied me, the updates are good, I will redo and remove the filter

    Thread Starter Dan Zakirov

    (@alexodiy)

    Hello @aurangajeb

    In any case, I decided not to update the plugin because there is too much work to be done. You should always think about backward compatibility.

    1. I ended up creating my tabs through filters – now the filters don’t work.

    2. I created tabs in my profile and added the wp-content/themes/astra-child/wpuf files to the theme – now that doesn’t work either.

    Your update is good, of course, but you didn’t think about backward compatibility, which is extremely detrimental to site performance.

    Among other things, I use the PRO version. I have several sites running this way and a lot of custom features. It turns out that I have to redo several sites. This is not the way to do it!

    Hi @alexodiy

    Please have a look at the below snippet to know how to deal with adding new tab/section on the WPUF (V3.4.18) Account Page.

    // filter/hook to modify WPUF Account page's tab/section
    add_filter('wpuf_account_sections',function ($sections){
        //$sections['post'] = 'Lists'; //rename Post Tab to Post to Lists
        //$sections['subscription'] = 'Membership'; //rename Subscription Tab to Membership
        //unset( $sections['post'] ); //remove a tab (Post) from Account page
        $sections['product'] = 'Products'; // add new Tab (Products) on the Account page
        return $sections;
    },999);
    
    // add custom tab/cpt on the WPUF Account page's tab/section
    add_action( 'wpuf_account_content_product', 'wpuf_my_product_section', 10, 3 ); //wpuf_account_content_(your new $sections slug name)
    function wpuf_my_product_section( $sections, $current_section ) {
        echo do_shortcode('[wpuf_dashboard post_type="product"]'); //insert your post type (product) here
    }

    I hope this will be helpful.
    Thanks.

    Thread Starter Dan Zakirov

    (@alexodiy)

    I’ll say it again. I have the premium version of this plugin, I have the plugin installed on 3 sites. After upgrading the plugin, I have everything broken. You didn’t think about backwards compatibility.

    I continue to use the old version of the plugin – v3.5.16.

    The issue has not been resolved. Please implement backward compatibility with v3.5.16 (08 May, 2021) so you can update the plugin, I guess I’m not the only one with this problem.

    Hi @alexodiy

    I have the premium version of this plugin, I have the plugin installed on 3 sites. After upgrading the plugin, I have everything broken.

    → Firstly for anything related to the plugin’s premium features/query kindly contact us through our contact page or support[at]wedevs.com.

    You didn’t think about backwards compatibility.

    → I already describe the backward compatibility situation and how you can overcome it with the latest update.

    I continue to use the old version of the plugin – v3.5.16.

    → We don’t recommend using an older version. However, that’s upon you.

    Regards.

    Hey there!
    This thread has been inactive for a while, so I’m going to mark it Resolved. Please feel free to open a new thread/topic if any other questions arise. For anything related to the plugin’s premium features/query, kindly contact us through our contact page or support[at]wedevs.com., and we’d be happy to help. ??

Viewing 7 replies - 1 through 7 (of 7 total)
  • The topic ‘The last update broke the personal account’ is closed to new replies.