Viewing 12 posts - 1 through 12 (of 12 total)
  • Author
    Posts
  • #587808

    Hallo,

    I am using the WP Job Manger Plugin for my enfold theme.

    1) I am using it as widget in the footer, my website is: http://jobhero.eu/ . Everything is ok, but the hover is white and I would like to change this to a other hover color. Where I can do it?

    2) I am wondering why uses enfold for my blog layout and for the WP Manager job listings the same layout (Blog). Where I can change this so that I can use one layout for my real Blog and the other layout for my Joblistings? Please see on my website for each unter (example):
    blog: http://jobhero.eu/praca-dla-wykwalifikowanych-pielegniarek-w-niemczech/
    joblisting: http://jobhero.eu/job/pielegniarka/
    On my page I would like so that every job listing appear fullwidth. How I can make it and seperate blog and joblising layout?

    Please login on my site and help.
    Thanks and Regards
    Lukas

    #587861

    Hello,

    1 Question:

    Answer: Try to use this code on enfold theme Quick Css or on a custom css plugin.

    .widget ul.job_listings li.job_listing a:hover {
        background: #2B5A0D !important;
    }
    #587960

    Hi
    Thanks, first issue works.. Have you a solution for the second question?

    Thanks and regards

    #587987

    Hi!

    You can use a different layout, by creating a New Page and using the Advanced Layout Builder of enfold and the Blog element.
    Let me know if that helps you, in the direction you do need.

    Regards,
    Basilis

    #588334

    Hi,

    to my first point aigain: The change the color with the css shortcode chnage all widgets I have inserted on my page. I would like only change the color of the widget in my footer and not verywhere. How I can only change for the one widget in footer?

    Regards
    LUkas

    #588362

    Hello,

    to your first point try that.

    #footer .widget ul.job_listings li.job_listing a:hover {
        background: #2B5A0D !important;
    }
    #588381

    Great, Thanks!
    And how is about the second point? Have you a solution?

    #588396

    About second point followed the instructions of Basilis Moderator.

    ‘You can use a different layout, by creating a New Page and using the Advanced Layout Builder of enfold and the Blog element.’

    #589713

    @Isakos-Soft
    thank you for help us out!


    @lzanoza

    Let us know if you still need help with this issue. Otherwise feel free to open a new ticket for a new issue/question.

    Cheers!
    Andy

    #1162526

    Hello Kriesi Team,

    is there any chance i get the avia page builder activated for job entries, i know php, html and css so any solution (even technical ist apreciated), or in general is there a psooibility to activate the avia page builder for custom post types?

    By the way you do a great job!

    regards

    Bastian

    #1162532

    Hello again,

    i found the solution in the documentation:

    For those who need ALB on wp-job-manager single listings, heres the code that goes into functions.php at the end:

    function avf_alb_supported_post_types_mod( array $supported_post_types )
    {
      $supported_post_types[] = 'job_listing';
      return $supported_post_types;
    }
    add_filter('avf_alb_supported_post_types', 'avf_alb_supported_post_types_mod', 10, 1);
    
    function avf_metabox_layout_post_types_mod( array $supported_post_types )
    {
     $supported_post_types[] = 'job_listing';
     return $supported_post_types;
    }
    add_filter('avf_metabox_layout_post_types', 'avf_metabox_layout_post_types_mod', 10, 1);

    The cutom post type name is “job_listing”

    This only works for the classic wordpress editor, not the block editor, i suggest to use classic editor plugin by wordpress contributors.

    Have a nice Day,
    Bastian

    #1162791

    Hi Bastian,

    Great, I’m glad that you found the solution and thanks for sharing :-)

    Best regards,
    Rikard

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