• Resolved blackflamingo

    (@blackflamingo)


    Hi,
    I would need to know how to link the entire post carousel widget to an anchor link. I did eliminate the box shadow with

    .so-widget-lsow-posts-carousel-default-3dd089290af6 .lsow-posts-carousel .lsow-posts-carousel-item {
        pointer-events: none !important;
    }

    to get rid of the hover effects.
    Is there any code I could add to redirect to an anchor link?
    Better directions on how to use the attributes section in the widget itself, not in custom css, my theme is generate press.
    and sorry, I can’t publish the URL here in public.
    Thanks for an answer…

    I bought the Pro Version 9 days ago and sent the above support request and received a message that my support request will be replied within 24 hrs, but no answer within one week.

    Only then I tried to log into the forum with my dashboard user and password with the result that the password didn’t work and I couldn’t reset the password.

    The day after I recognized that you need to seperately open a support account, which I did 2 days ago. I resent my request, still no reply.

    • This topic was modified 4 years, 9 months ago by blackflamingo.
Viewing 5 replies - 1 through 5 (of 5 total)
  • Hi, just on the question of directions on how to use the Attributes section, please see https://siteorigin.com/custom-css-guide-page-builder-row-cell-widget-attributes/.

    Plugin Author livemesh

    (@livemesh)

    We are sorry for the delay in attending to your support requests which for some reason has been lying there for a while perhaps because the support person did not understand the requirement fully.

    To clarify – are you saying you need ALL post links to be changed to a SINGLE custom link that redirects to a custom page? Such a thing is achievable with the help of WP hooks/filters provided by the plugin but I want to understand the requirement right before I go ahead and post a solution. Thanks

    Thread Starter blackflamingo

    (@blackflamingo)

    that’s right, each post in the carousel should link to the same custom link (anchor) and the posts should come without overlay on hover, and I would like to change the post titles below each post to “text-transform: none”.
    The carousel is showing the emloyees in the company, the client wants to redirect the whole widget (all posts) to another page with a list of the team members in a grid.
    Thanks ahead.

    Plugin Author livemesh

    (@livemesh)

    Ok I got the entire information from one of your support requests and understand the situation better. We will post a solution soon involving PHP hooks/filters that should take care of this. Pls stay tuned.

    Plugin Author livemesh

    (@livemesh)

    This is more of a customization request than support. Anyway, you can insert the following code into the child theme functions.php file after changing the custom link below to your domain link –

    function mytheme_modify_posts_carousel_title($entry_title, $post_id, $settings) {
    
        $entry_title = '<h3 class="entry-title">';
    
        $link = 'https://mydomain.com/custom-link';
    
        $entry_title .= '<a href="' . $link
            . '" title="' . get_the_title()
            . '" target="' . $settings["link_target"]
            . '" rel="bookmark">' . get_the_title()
            . '</a>';
    
        $entry_title .= '</h3>';
    
        return $entry_title;
    
    }
    
    add_filter('lsow_posts_carousel_entry_title', 'mytheme_modify_posts_carousel_title', 10, 3);
    
    function mytheme_modify_posts_carousel_thumbnail_html($thumbnail_html, $post_id, $settings) {
    
        $link = 'https://mydomain.com/custom-link';
    
        $thumbnail_html = '<a href="' . $link
            . '" target="' . $settings['link_target']
            . '">' . get_the_post_thumbnail($post_id, $settings['image_size'])
            . '</a>';
    
        return $thumbnail_html;
    
    }
    
    add_filter('lsow_posts_carousel_thumbnail_html', 'mytheme_modify_posts_carousel_thumbnail_html', 10, 3);
Viewing 5 replies - 1 through 5 (of 5 total)
  • The topic ‘post carousel (pro version support)’ is closed to new replies.