Title: post carousel (pro version support)
Last modified: March 3, 2020

---

# post carousel (pro version support)

 *  Resolved [blackflamingo](https://wordpress.org/support/users/blackflamingo/)
 * (@blackflamingo)
 * [6 years, 2 months ago](https://wordpress.org/support/topic/post-carousel-pro-version-support/)
 * 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 6 years, 2 months ago by [blackflamingo](https://wordpress.org/support/users/blackflamingo/).

Viewing 5 replies - 1 through 5 (of 5 total)

 *  [Andrew Misplon](https://wordpress.org/support/users/misplon/)
 * (@misplon)
 * [6 years, 2 months ago](https://wordpress.org/support/topic/post-carousel-pro-version-support/#post-12502438)
 * 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/](https://siteorigin.com/custom-css-guide-page-builder-row-cell-widget-attributes/).
 *  Plugin Author [livemesh](https://wordpress.org/support/users/livemesh/)
 * (@livemesh)
 * [6 years, 2 months ago](https://wordpress.org/support/topic/post-carousel-pro-version-support/#post-12503705)
 * 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](https://wordpress.org/support/users/blackflamingo/)
 * (@blackflamingo)
 * [6 years, 2 months ago](https://wordpress.org/support/topic/post-carousel-pro-version-support/#post-12503750)
 * 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](https://wordpress.org/support/users/livemesh/)
 * (@livemesh)
 * [6 years, 2 months ago](https://wordpress.org/support/topic/post-carousel-pro-version-support/#post-12503771)
 * 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](https://wordpress.org/support/users/livemesh/)
 * (@livemesh)
 * [6 years, 2 months ago](https://wordpress.org/support/topic/post-carousel-pro-version-support/#post-12511883)
 * 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.

 * ![](https://s.w.org/plugins/geopattern-icon/livemesh-siteorigin-widgets_f5f5f5.
   svg)
 * [Livemesh SiteOrigin Widgets](https://wordpress.org/plugins/livemesh-siteorigin-widgets/)
 * [Frequently Asked Questions](https://wordpress.org/plugins/livemesh-siteorigin-widgets/#faq)
 * [Support Threads](https://wordpress.org/support/plugin/livemesh-siteorigin-widgets/)
 * [Active Topics](https://wordpress.org/support/plugin/livemesh-siteorigin-widgets/active/)
 * [Unresolved Topics](https://wordpress.org/support/plugin/livemesh-siteorigin-widgets/unresolved/)
 * [Reviews](https://wordpress.org/support/plugin/livemesh-siteorigin-widgets/reviews/)

 * 5 replies
 * 3 participants
 * Last reply from: [livemesh](https://wordpress.org/support/users/livemesh/)
 * Last activity: [6 years, 2 months ago](https://wordpress.org/support/topic/post-carousel-pro-version-support/#post-12511883)
 * Status: resolved