Viewing 6 posts - 1 through 6 (of 6 total)
  • Author
    Posts
  • #987460

    The feature request page is broken for me (can’t load the form to fill in) so I’ll post it here.

    Allow us the create custom “styling zones” – like currently with Header, Main Content, Alternate Content etc, but allow us to add custom fields here too for example: zone 1, zone 2.

    This allows for more granular and easy styling of specific zones, especially when combined with the “styling extra” option.

    #987478

    Hi Xioros,

    Thanks for your feedback and request. I will forward it to Kriesi and our dev team :)

    Best regards,
    Yigit

    #987576

    All right. I’m currently rebuilding my site with WooCommerce and this would come in very handy.

    #987729

    Hi,

    I have forwarded your message. In the meantime, you can check out this post – https://github.com/KriesiMedia/enfold-library/blob/master/actions%20and%20filters/avf_register_custom_backend_styles and add custom pre-defined color schemes to your theme :)

    Regards,
    Yigit

    #1016361

    hi Yigit : in register-admin-options.php is still the wrong Sequence

    this is the right order:

    //required for the general styling color schemes
    include('register-backend-styles.php');
    
    //required for the advanced styling wizard
    include('register-backend-advanced-styles.php');
    
    // Allow to include a user defined file to add or alter backend styles
    $custom_path = apply_filters( 'avf_register_custom_backend_styles', '' );
    if( ! empty( $custom_path ) && file_exists( $custom_path ) ){
    	include_once $custom_path;
    }

    the new filter is on new Enfold 4.4.1 again over :

    //required for the general styling color schemes
    include('register-backend-styles.php');
    
    //required for the advanced styling wizard
    include('register-backend-advanced-styles.php');

    And with this sequence it will not work !
    Check it out for yourself – i told it again – but it is always forgotten till now

    #1016363

    by the way : for custom color schemes i would take this to child-theme functions.php:

    https://kriesi.at/support/topic/change-color-palette/#post-1016286

Viewing 6 posts - 1 through 6 (of 6 total)
  • You must be logged in to reply to this topic.