badget

Biggest Sale! Special Offer!

Get 30% discount on all of our single themes with this coupon code: #30%SALE

Hurry up! *Limited time offer*

Alberto

Forum Replies Created

Viewing 15 posts - 1 through 15 (of 25 total)
  • Author
    Posts
  • in reply to: Pseudo class :focus #77855
    Alberto
    Participant

    @Theme Horse, you do not answer me?

    In summary: when I open a menu page, the menu item must change color. Pseudo class: focus

    in reply to: Double images #77617
    Alberto
    Participant

    I solved, I didn’t understand exactly what happened.
    The word l’inseguimento was written in the article, I removed the single quote and the problem is gone. Then I put the single quote back on and the problem never came again.

    https://albertifoto.altervista.org/inseguimento/

    in reply to: layout has become small #77428
    Alberto
    Participant

    I fixed it, it was the Safari browser cache, I used the OnyX app.

    in reply to: layout has become small #77403
    Alberto
    Participant

    I see that this problem show only Safari browser

    in reply to: Problem with menu-link #74625
    Alberto
    Participant

    I solved it, it was a css problem.

    in reply to: Code with "zero" comments #68681
    Alberto
    Participant

    SOLVED!

    I made a small change to my code.

    in reply to: Put the number of comments in the preview #68631
    Alberto
    Participant

    SOLVED!

    Now there is also the link:

    <?php
       if (1 == get_comments_number()) { 
            printf(__('<a href="' . get_permalink() . '#comments"> 1 commento</a>', 'wp-portfolio') , number_format_i18n(get_comments_number()));
        }
        else { 
            printf(__('<a href="' . get_permalink() . '#comments"> %1$s commenti</a>', 'wp-portfolio') , number_format_i18n(get_comments_number()));
        }
     ?>
    in reply to: Put the number of comments in the preview #68479
    Alberto
    Participant

    I put this code in the file you told me, line 147, you can see here https://albertifoto.altervista.org
    I would have liked to add the link to the comments, but I failed.
    I tried the code in the child functions.php but it doesn’t work.

    <div class="commenti-anteprime">
       <?php
       if (1 == get_comments_number()) {
       printf(__('One thought on &ldquo;%2$s&rdquo;', 'wp-portfolio') , number_format_i18n(get_comments_number()) , '<span>' . get_the_title() . '</span>');
       }
       else {
       printf(__('%1$s thoughts on &ldquo;%2$s&rdquo;', 'wp-portfolio') , number_format_i18n(get_comments_number()) , '<span>' . get_the_title() . '</span>');
       }
       ?>
     </div>
    in reply to: Put the number of comments in the preview #68274
    Alberto
    Participant

    Okay, tell me the files to edit that I do it

    in reply to: Logo does not appear in posts #66472
    Alberto
    Participant

    SOLVED!

    in the file ./inc/structure/header/extensions.php #35

    Incomplete url:
    ...<img src="./wp-content/uploads/logo.png" alt="Portfolio">

    Correct:
    ...<img src="https://site.com/wp-content/uploads/logo.png" alt="Portfolio">

    in reply to: The logo does not appear #62961
    Alberto
    Participant

    I’ve resolved.
    In ./inc/structure/header-extensions.php I put url end image

    https://albertifoto.altervista.org

    in reply to: Pseudo class :focus #62762
    Alberto
    Participant

    Page links are in the left column at the top (under the blog title).

    https://albertifoto.altervista.org

    in reply to: Pseudo class :focus #62480
    Alberto
    Participant

    focus on menu items when the page is open

    in reply to: Preview does not show text #62319
    Alberto
    Participant

    Wp-Portfolio free. I solved, I imported the database.

    in reply to: Double title tag in the home page #60055
    Alberto
    Participant

    I solved but not completely. In the page source shows correct, but in google search it’s not good. You can see.

    https://albertifoto.it

    add_filter( 'pre_get_document_title', function( $title ) {
    
        if ( is_home() || is_front_page() ) {
    
            $title = get_bloginfo( 'description' ) .' - Portfolio | '. get_bloginfo( 'name' );
        }
         return $title;
    }
    );
Viewing 15 posts - 1 through 15 (of 25 total)