• Under each single ad there is a short overwiew with related materials, this posts are showing other ads from WPAdverts, but without the Image, there is place an ugly grey placeholder. I need to hide the thumbnails of this related ads block of this post type. Please help me to do it!

    The page I need help with: [log in to see the link]

Viewing 10 replies - 1 through 10 (of 10 total)
  • Plugin Author Greg Winiarski

    (@gwin)

    You can hide the 3 images with placeholders by adding the code below in the wp-admin / Appearance / Customize / Additional CSS panel

    .single-advert .related-thumb {
      display: none !important;
    }
    Thread Starter Triptikon

    (@triptikon)

    Thank you, Greg! Your help is as always prompt and priceless! There is one more problem: in the general list of vacancies, the right sidebar is in its place. And if you go to categories, then for some reason this sidebar automatically goes down. How to fix it?

    Plugin Author Greg Winiarski

    (@gwin)

    It would be best to ask the theme support about it, the question would be: why the custom taxonomy (in this case advert_category) pages are pushing the sidebar to the bottom and how to fix it?

    One workaround would be to add the below code in your theme functions.php file

    add_action( "wp_footer", function() {
      if( ! is_tax( "advert_category" ) ) {
        return;
      }
      echo '<style type="text/css">';
      echo '.penci-wide-content {';
      echo 'width: 74%; float: left;';
      echo '}';
      echo '</style>';
    } );
    Thread Starter Triptikon

    (@triptikon)

    Thank you very much! The code helped!

    Thread Starter Triptikon

    (@triptikon)

    Do you know what could be the reason that exactly the posts from the ad taxonomy do not want to be reposted on the social network automatically? I’ve already used two different plugins for this.

    Plugin Author Greg Winiarski

    (@gwin)

    Wat do you mean by “posts from the ad taxonomy”? Which page is it exactly and how are you reposting it?

    Thread Starter Triptikon

    (@triptikon)

    I mean advert post type. I try to autopost the ads to different social media using SNAP and FS Poster plugins, but nothing happends.

    Plugin Author Greg Winiarski

    (@gwin)

    Hi,

    i am not familiar with these plugins so i cannot tell, when i will find some free time i will try looking into it.

    Thread Starter Triptikon

    (@triptikon)

    I would be very grateful. I also discovered that for some reason the ads in the general list are shown scattered, although the block settings indicate that the newest ones should be at the top.

    Plugin Author Greg Winiarski

    (@gwin)

    Can’t seem to replicate this on any of my dev sites, maybe you have some plugin installed that modifies the wp_posts DB queries (ie something that modifies the WP_Query object)?

Viewing 10 replies - 1 through 10 (of 10 total)
  • The topic ‘How to hide featured images of the related ads?’ is closed to new replies.