Okay
  Public Ticket #3562498
Menu not showing up
Closed

Comments

  •  6
    studiobaum started the conversation

    Hi there,

    I've used Kalium a number of times and have never had this problem. However now, when I create a new page the navigation doesn't appear.

    If you see this page you will see what I mean: https://mirazamiras.com/about/ 

    Is there something I am doing wrong?

    Thanks 

    Sam

  • [deleted] replied

    Hi Sam,

    Please share your website login credentials with me so I can test this. To safely include your credentials click the Insert Credentials button in the editor toolbar (see how)

    Thanks!

  •   studiobaum replied privately
  • [deleted] replied

    Hi Sam,

    Sorry for the late reply, I wasn't in the office yesterday.

    I can see that your menu is showing as it should now on your About page. I also tried to create a new page and Menu was showing without problems.

    See video: https://d.pr/v/u2Ndfo

    Thanks! 

  •  6
    studiobaum replied

    Ah yes, thanks Ylli! 

    Another question, is it possible to change the Portfolio in the CMS (on the left hand side) to Publications? Or is that too difficult to implement?

  • [deleted] replied

    Hi Sam,

    Happy to hear thatsmile.png

    As for the last question: Are you talking about the Portfolio area in the WordPress backend dashboard? If not, can you send me a screenshot of that exact area?

  •  6
    studiobaum replied

    Hi Ylli,

    My client is an author, and so on the left I'd prefer it to say 'Publications' and not 'Portfolio' but I don understand that is quite tricky. See Screenshot.

    Also, I have 2 more question if that is ok.

    1. On the homepage, the top image banner is slightly wider than the grid of images below. Is there a custom CSS that will fix this? Please see the 2nd screen grab.

    2. The homepage on mobile currently shows only 1 column portfolio items. Is it possible to make it show 2 or even 3? My client is inspired by https://www.salmanrushdie.com/ – if you look at my 4th screen grab you will see what I mean.

    Attached files:  Screenshot 2024-01-23 at 09.09.35.png
      Screenshot 2024-01-23 at 09.10.47.png
      Screenshot 2024-01-23 at 09.13.56.png
      Screenshot 2024-01-23 at 09.15.01.png

  • [deleted] replied

    Hi Sam,

    That is not possible natively for the moment but I will try to help you this time.

    You can add this code to the functions.php area of your Kalium (child theme).

    add_filter( 'portfolioposttype_args', function( $args ) {
        $args['labels'] = [
            'name'                  => 'Portfolio',
            'singular_name'         => 'Portfolio Item',
            'menu_name'             => 'Portfolio',
            'name_admin_bar'        => 'Portfolio Item',
            'add_new'               => 'Add New Item',
            'add_new_item'          => 'Add New Portfolio Item',
            'new_item'              => 'Add New Portfolio Item',
            'edit_item'             => 'Edit Portfolio Item',
            'view_item'             => 'View Item',
            'all_items'             => 'All Portfolio Items',
            'search_items'          => 'Search Portfolio',
            'parent_item_colon'     => 'Parent Portfolio Item:',
            'not_found'             => 'No portfolio items found',
            'not_found_in_trash'    => 'No portfolio items found in trash',
            'filter_items_list'     => 'Filter portfolio items list',
            'items_list_navigation' => 'Portfolio items list navigation',
            'items_list'            => 'Portfolio items list',
        ];
        
        return $args;
    } );

    And then rename those areas as you want.

    medium
    (view large image)

    If you want to change just that portfolio area, you can add this code:

    add_filter( 'portfolioposttype_args', function( $args ) {
        $args['labels'] = [
            'name'                  => 'Publications',
        ];
        
        return $args;
    } );

    As for your other questions, kindly open a new ticket and post your request so it will be helpful for the other users to take advantage of searching them in support area. We’re glad to help you in your new thread.

    Have a nice day!

  •  6
    studiobaum replied

    Oh wow, thank you so much Ylli for your explanation! I will give this a go now
    :)

  • [deleted] replied

    Happy to hear that Samsmile.png

    Have a great day!