• Resolved secureaspects

    (@secureaspects)


    I have two issues that I am unable to tell if they are theme or plugin related?

    Right above the “R” in the blue breadcrumb field you will see a small dark blue rectangle. That’s where the category should appear.

    If you move down the page no Jet
    pack sharing Icons are visible?

    Thank you for your help.

    Frank

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

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

    (@gwin)

    Hi,
    1. from the page HTML it looks like the category will be displayed there only if a post has the default WP “category” assigned, the WPAdverts do not have them as WPAdverts uses custom categories (custom taxonomy).

    In this case i think it would be best to just hide the rectangle, you can do that by adding the code below in wp-admin / Appearance / Customize / Additional CSS panel

    
    .single-advert .header-title.header-title-single-post {
        padding-top: 4%;
    }
    .single-advert span.single-post-category {
        display: none;
    }
    

    2. do you have the sharing buttons enabled for Adverts as explained here https://jetpack.com/support/sharing/?

    If you do and they still do not show then please try adding the code below in your theme functions.php file and see if it helps

    
    add_action( "init", function() {
      remove_filter('the_content', 'adverts_the_content', 9999 );
      add_filter('the_content', 'adverts_the_content', 10 );
    }, 100 );
    
    Thread Starter secureaspects

    (@secureaspects)

    Hiding the rectangle worked but the jetpack sharing buttons are still not appearing on the adverts listing. Thank you for taking the time to help with this.

    Frank

    Plugin Author Greg Winiarski

    (@gwin)

    Hmm i testing the JetPack right now and the sharing buttons on Ad details pages seem to be working fine after adding the code.

    Can you paste here a screenshot from /wp-admin/options-general.php?page=sharing so i can see how you have the sharing options configured?

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

The topic ‘Categories / Jetpack Sharing’ is closed to new replies.