Forum Replies Created

Viewing 30 posts - 1 through 30 (of 90 total)
  • Author
    Posts
  • in reply to: shop page do not visible #1339746

    every day in the morning at 8 if I connect in incognito mode to the page https://ramesushi.it/asporto/ takeout I never have the products … I always have to re-save the page and then everything works …. to see an error you can see it in the morning because then I have to make the site work web for orders

    in reply to: shop page do not visible #1339283
    This reply has been marked as private.
    in reply to: shop page do not visible #1338971

    https://we.tl/t-M9avaPZi2B

    The shop page is not visible
    … but after saving ..
    the shop page is visible again

    in reply to: shop page do not visible #1338695

    sorry..you have now seen it visible because I have re-saved the page ….. and the problem has been corrected … unfortunately I had to do it because the site is online and must be usable for orders

    every time I connect in the morning, even privately / incognito, the shop page is not visible ..
    I don’t know why ….. what could be the cause of the error?

    in reply to: shop page do not visible #1338662

    now the shop not work..
    can you check it?

    in reply to: shop page do not visible #1338424

    now I have to re-save the page to be able to use the website
    because it’s almost time for lunch

    in reply to: shop page do not visible #1338409

    Does the issue happen when you use Advanced Layout Builder to create your shop page?
    no
    only after the last theme update

    in reply to: shop page do not visible #1338402

    hi, now the page do not works

    in reply to: shop page do not visible #1338253

    i don’t know how to reproduce it.

    in reply to: shop page do not visible #1338219

    yes i try also whit private browser

    in reply to: shop page do not visible #1338192

    the problem keeps repeating itself …
    it is not the first time that I save the page in order to resolve the error.

    Can you tell me what it can depend on?
    thank you

    in reply to: shop page do not visible #1338180

    I have now resaved the page and it works again

    in reply to: shop page do not visible #1338178

    Ismael the shop page do not visible now
    can you check plese?

    in reply to: Items mobile menu … are not showing #1266581

    ok thank you
    now it’s perfect

    in reply to: The url link of header menu #1199555
    This reply has been marked as private.
    in reply to: The url link of header menu #1199531

    hi have the same problem.

    how can remove tag #top ?

    in reply to: Inline small JavaScript #1180012

    ok thank you

    in reply to: last update #1180003

    thank you

    in reply to: Inline small JavaScript #1179428
    in reply to: last update #1179389

    now in my function.php

    <?php

    /*
    * Add your own functions here. You can also copy some of the theme functions into this file.
    * WordPress will use those functions instead of the original functions then.
    */
    // Hide editor info

    add_filter(‘display_post_states’,’remove_ALB_post_state’,999,2);
    function remove_ALB_post_state( $post_states, $post ) {
    if(“! has_blocks( $post->ID )”) {
    unset($post_states[‘wp_editor’]);
    }
    if(“!= Avia_Builder()->get_alb_builder_status($post->ID)”) {
    unset($post_states[‘avia_alb’]);
    }
    return $post_states;
    }

    function avia_remove_feeds() {
    remove_theme_support(‘automatic-feed-links’);
    remove_action( ‘wp_head’, ‘feed_links_extra’, 3 );
    remove_action( ‘wp_head’, ‘feed_links’, 2 );
    remove_action( ‘wp_head’, ‘feed_links_extra’, 3 ); // Display the links to the extra feeds such as category feeds
    remove_action( ‘wp_head’, ‘feed_links’, 2 ); // Display the links to the general feeds: Post and Comment Feed
    remove_action( ‘wp_head’, ‘rsd_link’ ); // Display the link to the Really Simple Discovery service endpoint, EditURI link
    remove_action( ‘wp_head’, ‘wlwmanifest_link’ ); // Display the link to the Windows Live Writer manifest file.
    remove_action( ‘wp_head’, ‘index_rel_link’ ); // index link
    remove_action( ‘wp_head’, ‘parent_post_rel_link’, 10, 0 ); // prev link
    remove_action( ‘wp_head’, ‘start_post_rel_link’, 10, 0 ); // start link
    remove_action( ‘wp_head’, ‘adjacent_posts_rel_link’, 10, 0 ); // Display relational links for the posts adjacent to the current post.
    remove_action( ‘wp_head’, ‘wp_generator’ ); // Display the XHTML generator that is generated on the wp_head hook, WP version
    }
    add_action( ‘init’, ‘avia_remove_feeds’);

    function itsme_disable_feed() {
    wp_die( __( ‘No feed available, please visit the homepage!’ ) );
    }

    add_action(‘do_feed’, ‘itsme_disable_feed’, 1);
    add_action(‘do_feed_rdf’, ‘itsme_disable_feed’, 1);
    add_action(‘do_feed_rss’, ‘itsme_disable_feed’, 1);
    add_action(‘do_feed_rss2’, ‘itsme_disable_feed’, 1);
    add_action(‘do_feed_atom’, ‘itsme_disable_feed’, 1);
    add_action(‘do_feed_rss2_comments’, ‘itsme_disable_feed’, 1);
    add_action(‘do_feed_atom_comments’, ‘itsme_disable_feed’, 1);

    ?>

    in reply to: last update #1179381

    Hi, i try to move to move the remove_action/s inside the avia_remove_feeds callback function
    but i have the same isuue

    function avia_remove_feeds() {
    remove_theme_support(‘automatic-feed-links’);
    remove_action( ‘wp_head’, ‘feed_links_extra’, 3 );
    remove_action( ‘wp_head’, ‘feed_links’, 2 );
    remove_action( ‘wp_head’, ‘feed_links_extra’, 3 ); // Display the links to the extra feeds such as category feeds
    remove_action( ‘wp_head’, ‘feed_links’, 2 ); // Display the links to the general feeds: Post and Comment Feed
    remove_action( ‘wp_head’, ‘rsd_link’ ); // Display the link to the Really Simple Discovery service endpoint, EditURI link
    remove_action( ‘wp_head’, ‘wlwmanifest_link’ ); // Display the link to the Windows Live Writer manifest file.
    remove_action( ‘wp_head’, ‘index_rel_link’ ); // index link
    remove_action( ‘wp_head’, ‘parent_post_rel_link’, 10, 0 ); // prev link
    remove_action( ‘wp_head’, ‘start_post_rel_link’, 10, 0 ); // start link
    remove_action( ‘wp_head’, ‘adjacent_posts_rel_link’, 10, 0 ); // Display relational links for the posts adjacent to the current post.
    remove_action( ‘wp_head’, ‘wp_generator’ ); // Display the XHTML generator that is generated on the wp_head hook, WP version
    }
    add_action( ‘init’, ‘avia_remove_feeds’);

    • This reply was modified 4 years, 10 months ago by margiela.
    in reply to: last update #1179321

    hi
    Ismael
    i have again this code
    https://ibb.co/cDt5m3v

    • This reply was modified 4 years, 10 months ago by margiela.
    in reply to: last update #1178642

    function avia_remove_feeds() {
    remove_theme_support(‘automatic-feed-links’);
    }
    add_action( ‘init’, ‘avia_remove_feeds’);

    remove_action( ‘wp_head’, ‘feed_links_extra’, 3 ); // Display the links to the extra feeds such as category feeds
    remove_action( ‘wp_head’, ‘feed_links’, 2 ); // Display the links to the general feeds: Post and Comment Feed
    remove_action( ‘wp_head’, ‘rsd_link’ ); // Display the link to the Really Simple Discovery service endpoint, EditURI link
    remove_action( ‘wp_head’, ‘wlwmanifest_link’ ); // Display the link to the Windows Live Writer manifest file.
    remove_action( ‘wp_head’, ‘index_rel_link’ ); // index link
    remove_action( ‘wp_head’, ‘parent_post_rel_link’, 10, 0 ); // prev link
    remove_action( ‘wp_head’, ‘start_post_rel_link’, 10, 0 ); // start link
    remove_action( ‘wp_head’, ‘adjacent_posts_rel_link’, 10, 0 ); // Display relational links for the posts adjacent to the current post.
    remove_action( ‘wp_head’, ‘wp_generator’ ); // Display the XHTML generator that is generated on the wp_head hook, WP version
    ?>

    • This reply was modified 4 years, 10 months ago by margiela.
    in reply to: last update #1178628

    i’m sorry
    in all the pages of the site there is still a link tag with an attribute valued at https://www.fostersrl.it/feed/
    https://ibb.co/0QgMfdj

    in reply to: last update #1178528

    perfect !!! thank you

    in reply to: last update #1177729

    i have this again in post blog

    <link rel=”alternate” type=”application/rss+xml” title=”Foster srl » Pellicole a controllo solare Feed dei commenti” href=”https://www.fostersrl.it/pellicola-xtrm-silver-20-35x/feed/&#8221; />

    in reply to: last update #1177687

    for example,

    <link rel=”alternate” type=”application/rss+xml” title=”Foster srl » Feed” href=”https://www.fostersrl.it/feed/&#8221; />
    <link rel=”alternate” type=”application/rss+xml” title=”Foster srl » Feed dei commenti” href=”https://www.fostersrl.it/comments/feed/&#8221; />

    in reply to: last update #1177682

    super thank you

    Yigit
    i have another question…

    for delete all automatic feed
    in chill theme …. it’s correct this ?

    remove_theme_support(‘automatic-feed-links’);

    in reply to: last update #1177675

    now in .htaccess i have delete all redirect
    can you re-check please ?

    in reply to: /feed ? #1177665

    in child theme this is ok ?
    remove_theme_support(‘automatic-feed-links’)

    • This reply was modified 4 years, 10 months ago by margiela.
Viewing 30 posts - 1 through 30 (of 90 total)