Okay
  Public Ticket #1746055
copyright and social network links
Closed

Comments

  •  5
    Rijk-Willem Schmelter started the conversation

    hello Uxbarn,

    Thanxs fot the beautifull Kathy theme! 

    My question has already been answered in a private conversion a few days ago. So I can't see the solution. It is about the copyright and social network links which should be displayd at the bottom of the site instead of the top on mobile views. Now it is still at the top. Can you help me with that?

  •  291
    Paul replied

    Hello!

    I am sorry for the slow response on the weekend. I will release an official update to fix that problem and some others  within today (should be about 5-6 hours or less from now). In the meantime, make sure that you have already set up the automatic update so when it is available, you can see a notification on your WP dashboard. For the detailed steps, please check out this article: https://uxbarn.ticksy.com/article/8610/

    Regards,
    Paul

  •  291
    Paul replied

    Just to let you know that the official update has been published. You should see an update notification on your WP admin dashboard soon.

    Kindly let me know if you still see the problem after updating.

  •  5
    Rijk-Willem Schmelter replied

    hello Paul,

    Slow respons is no problem. Hope you enjoyed the weekend. My question is solved because of the update. So thanxs a lot!

    One last question. Is it possible to change the horizontal mobile slider menu in a vertical one?

  •  291
    Paul replied

    Sorry, but I am not sure I understand it correctly about the "horizontal mobile slider menu" you mentioned. Did you mean the portfolio category menu that is displayed horizontally on mobile, and you wanted to make them display vertically instead?

  •  5
    Rijk-Willem Schmelter replied

    hello Paul,

    It's just the menu list in the white screen. It moves from right to left. I would like it slide from the top.

  •  291
    Paul replied

    Hmm. Could you please capture and send me a screenshot of the menu?

  •  5
    Rijk-Willem Schmelter replied

    Here it is

  •  291
    Paul replied

    Thanks for the screenshot. It is possible, but you would need to use a child theme to override and customize the "kathy.js" file of the parent theme.

    To do that:

    1. Create a new child theme for this customization. For the how-to steps, please check out this article: https://uxbarn.ticksy.com/article/8649/

    2. Copy the "/js/kathy.js" file from the parent theme, and put it into the child theme folder.

    3. Add the following code into the "functions.php" of the child theme. This code will tell WordPress to load the "kathy.js" file of the child theme instead of the parent's.

    function child_theme_load_js() {
        
        // Disable the parent's kathy.js file first
        wp_dequeue_script( 'kathy-theme' );
        
        // Then load the customizable version of the child theme
        wp_enqueue_script( 'kathy-child-theme-js', get_stylesheet_directory_uri() . '/kathy.js', array( 'jquery' ), kathy_get_theme_version(), true );
        
        // Theme's parameters to be used in the JS file
        $params = array(
                        'clear_text'                        => esc_html__( 'Clear', 'kathy' ),
                        'justified_images_row_height'        => intval( get_theme_mod( 'kathy_ctmzr_portfolio_grid_max_row_height', 350 ) ),
                        'modal_search_input_text'            => get_theme_mod( 'kathy_ctmzr_search_placeholder_text', esc_html__( 'Type and hit enter', 'kathy' ) ),
                        'show_search_button'                => get_theme_mod( 'kathy_ctmzr_general_options_show_search_button', false ),
                        'enable_lightbox_wp_gallery'         => get_theme_mod( 'kathy_ctmzr_general_options_enable_lightbox_wp_images', true ),
                        'lightbox_error_text'                 => esc_attr__( 'The requested content cannot be loaded. Please try again later.', 'kathy' ),
                        'lightbox_next_text'                 => esc_attr__( 'Next', 'kathy' ),
                        'lightbox_prev_text'                 => esc_attr__( 'Previous', 'kathy' ),
                        'lightbox_close_text'                 => esc_attr__( 'Close', 'kathy' ),
                        'lightbox_start_slide_text'         => esc_attr__( 'Start slideshow', 'kathy' ),
                        'lightbox_pause_slide_text'         => esc_attr__( 'Pause slideshow', 'kathy' ),
                        'lightbox_toggle_size_text'         => esc_attr__( 'Toggle size', 'kathy' ),
                    );
            
            wp_localize_script( 'kathy-child-theme-js', 'ThemeOptions', $params );
        
    }
    add_action( 'wp_enqueue_scripts', 'child_theme_load_js', 99 );
    

    4. Now in the "kathy.js" file, find this code:

    offCanvas : {
        position : 'right',
    },
    

    then change it to:

    offCanvas : {
        position : 'top',
    },
    

    5. That's it. The mobile menu will now slide from the top instead.

    I hope this helps.

  •  5
    Rijk-Willem Schmelter replied

    Great!! Thnxs a lot!

  •  291
    Paul replied

    You're welcome!