Join the Soledad Facebook Users Group here
for Share, assistance, discussion, and Updates related to Soledad WordPress Theme.

If you can't create a new ticket - you can send us an email via our contact form and we will get back to you.

Okay
  Public Ticket #2869609
Featured Slider
Closed

Comments

  • mswmsw started the conversation

    You helped me with the exact same question in 2018 and you changed some files to make it work, unfortunately I dont remember what you did:

    I want to use the featured slider, but display a selected number of specific categories there. I now can give each post a tag or select one category, but I want to select let‘s say 5 out of 7 categories. Really appreciate your help.

    Best,
    Matthias

  •  2,492
    PenciDesign replied

    Hi,

    Please send me your site login credential in a PRIVATE reply. I'll log in and help you.

    Regards,
    PenciDesign.


  •   mswmsw replied privately
  •  2,492
    PenciDesign replied

    Hi,

    I can't access your site, so please go to Appearance → Theme Editor:

    Select theme to edit: Soledad,

    Navigate to functions.php (Theme Functions), find: (line 4274)

    $featured_args['tax_query'] = array(
                    array(
                        'taxonomy' => 'post_tag',
                        'field'    => 'slug',
                        'terms'    => $list_tags
                    ),
                );
    Replace with:

    $featured_args['tax_query'] = array(
                    array(
                        'taxonomy' => 'category',
                        'field'    => 'slug',
                        'terms'    => $list_tags
                    ),
                );
    image.png

    Repeat this step when you update to the new version.

    Regards,
    PenciDesign.