Profiles

  • Member Since: October 6th, 2010
  • Find me on:
  • Posted a reply to Since update 5.9.2 my top page is not filling completely on twenty twenty theme, on the site WordPress.org Forums:
    Change inherit to 0

  • Posted a reply to List items jumping out of group block when width reduced, on the site WordPress.org Forums:
    @media (min-width: 700px) and (max-width: 1280px) { .entry-content ul { padding: 0; } } Check…

  • Posted a reply to Hide pages from menu (source code), on the site WordPress.org Forums:
    You always have search unless you disabled it functionally. https://yourdoman/search https://yourdomain/?s=socken There is also API…

  • Posted a reply to Since update 5.9.2 my top page is not filling completely on twenty twenty theme, on the site WordPress.org Forums:
    /confidentialite-et-deontologie EDIT style.css: 1. Search/replace .privacy-policy rules with above rules. Possible to just search/replace the…

  • Posted a reply to Center logo and menu, on the site WordPress.org Forums:
    @media (min-width: 1000px) .header-inner { flex-direction: column; } } You will need to adjust the…

  • Posted a reply to Hide pages from menu (source code), on the site WordPress.org Forums:
    Two steps Exclude Pages from Search Results (WP internal) https://developer.wordpress.org/reference/hooks/pre_get_posts/ function search_filter($query) { if (…

  • Posted a reply to Telegram icon color, on the site WordPress.org Forums:
    Simplest is to use a white outline telegram svg as a background image for the…

  • Posted a reply to Since update 5.9.2 my top page is not filling completely on twenty twenty theme, on the site WordPress.org Forums:
    Privacy Policy page includes body class="privacy-policy". .privacy-policy { margin: 1.2rem 0 0; //change to margin:…

  • Posted a reply to Creating the 2020 preview, on the site WordPress.org Forums:
    You can change the block editor from visual to code to see the structure of…

  • Posted a reply to CSS issue on the privacy page, on the site WordPress.org Forums:
    The page title is added as a body class. It's one of the ways you…

  • Posted a reply to Scroll to Anchors works first click, next click scrolls to previous anchor, on the site WordPress.org Forums:
    Self-resolved. Reinstalled 2020 v1.9 Removed Smooth Scroll from CSS Added JS function window.scroll with extra…

  • Posted a reply to How do you hide category link on just one post ?, on the site WordPress.org Forums:
    template-parts/entry-header.php find: if ( true === $show_categories && has_category() ) {' insert a post ID…

  • Posted a reply to Moving category link from above posts title to under post titles, on the site WordPress.org Forums:
    Class <div class="entry-categories"> From Parent Twenty Twenty, duplicate this directory and file template-parts/entry-header.php and paste…

  • Posted a reply to CSS Selectors, on the site WordPress.org Forums:
    /* style.css */ html { font-size: 62.5%; /* 1rem = 10px */} body { font-size:…

  • Created a topic, Scroll to Anchors works first click, next click scrolls to previous anchor, on the site WordPress.org Forums:
    WP Core: 5.9 Theme version: 1.9 Scroll to anchor corr…

  • Posted a reply to Help to Show Co-author plus on the frontend, on the site WordPress.org Forums:
    Byline output is usually located in the theme's inc/template-tags.php, and/or you might see these inside…

  • Posted a reply to Query all posts of author even if he/she is co-author, on the site WordPress.org Forums:
    @sikorat Co Authors Plus taxonomy 'author' is attached to the post_type 'guest-author'. The tax_query looks…

  • Posted a reply to Delete A Co-Author in MySQL, on the site WordPress.org Forums:
    @gregcrowe Why not create a new admin user and delete the one in question? @jeffsydor-bipc…

  • Posted a reply to Show all posts by the author, where he is the main author and co-author, on the site WordPress.org Forums:
    I can't edit or delete the previous reply. I made an error in the query…

  • Posted a reply to How to use function coauthors_get_avatar ?, on the site WordPress.org Forums:
    $coauthors = get_coauthors(); if ( ! $coauthors ) { return; } foreach( $coauthors as $coauthor…

  • Posted a reply to Show all posts by the author, where he is the main author and co-author, on the site WordPress.org Forums:
    <?php $posts = new WP_Query( array( 'author' => get_queried_object_id(), 'orderby' => 'date', 'order' => 'DESC',…

  • Posted a reply to Fatal PHP error with 5.1.2 (Might be PHP version specific), on the site WordPress.org Forums:
    I can confirm the error and fix.

  • Posted a reply to Detecting number of Authors, on the site WordPress.org Forums:
    // Check if guest authors enabled if ( is_guest_authors_enabled() ) { // Get author(s) of…

  • Posted a reply to Help with guest author descriptions, on the site WordPress.org Forums:
    This is old, but I thought I reply. Maybe the problem solving method might help…

  • Posted a reply to Co-author Plus’s Guest Authors with ACF, on the site WordPress.org Forums:
    Guest Author "ID" are $post->ID. Guest author is a custom post-type and saved as post…

  • Posted a reply to How to utilize the coauthors_guest_author_fields filter?, on the site WordPress.org Forums:
    You're missing the $group argument. https://gist.github.com/danielbachhuber/ece7e8bb1a97ac4a1977 add_filter( 'coauthors_guest_author_fields', 'edit_coauthors_guest_author_fields', 10, 2 ); function edit_coauthors_guest_author_fields( $fields_to_return,…

  • Posted a reply to Trouble with internal navigation on a single page site, on the site WordPress.org Forums:
    Great! It's an invaluable lesson; initially work within the theme construction ( markup, navigation, etc.)…

  • Posted a reply to Trouble with internal navigation on a single page site, on the site WordPress.org Forums:
    The front-page panel for the section is missing ID name. Are your using a third-party…