Viewing 30 results - 31 through 60 (of 7,443 total)
  • Author
    Search Results
  • #1482158

    In reply to: Search icon

    Hi,

    Thanks for that. Please try the following in Quick CSS under Enfold->General Styling:

    #top .menu-item-search-dropdown > a.avia-svg-icon svg:first-child {
      z-index: 0;
    }

    Best regards,
    Rikard

    #1481842

    Thanks, Mike. I searched more on your support and found this helpful. “Enfold 4.7.4 has an option to disable the unique timestamp generation for the css and JavaScript merged files and so there will not be as many entries it the wp_options table.”

    I have the same issue. On my marketing website where the search icon/nav menu is over a photo, I can see the icon. But on my real estate website the menu bar is black and there’s a spot for the search icon, but it is not visible. Both are using Enfold version 7.1. I have other sites with nav menu bars where you cannot see the search icon. Yes, under Enfold, Main Menu I HAVE checked the box to APEND Search Icon to Main Menu. On all my sites.

    #1481328
    manurimini
    Participant

    Sorry. I messed up with the custom CSS. The new search icon is working perfectly. You can close this thread.
    I am very sorry to have wasted your time
    Best Regards
    Manu

    • This topic was modified 3 months ago by manurimini.
    • This topic was modified 3 months ago by manurimini.
    #1481296

    Topic: SEO Mystery

    in forum Enfold
    Ad-Min747
    Participant

    HI,
    I know it’s not your core business but after several trial with Yoast, XML Sitemaps and finally Enfold SEO feature, the website I work on isn’t appearing on any Search engine… In WP settings, to box allowing search engine to index is OK.

    The website is : http://www.springen-conseil.fr.

    Do you have any ideas?

    It would help.

    Best

    #1480993

    Topic: Custom divider

    in forum Enfold
    Brugmedia
    Participant

    Hello,

    i want te make something like the picure in the link. I have tried te use the custom svg divider en other options in enfold en searched over the internet for a solution but haven’t found anything. I want half an background color under a layout element. See for my idea:
    https://brugmedia.nl/wp-content/uploads/2025/04/Screen.png

    Is something like this possible in enfold?

    Guenni007
    Participant

    on an older post there is no working solution for it.
    https://kriesi.at/support/topic/change-color-body-style-on-one-page/
    If I look at the differences in the DOM, I notice that it essentially depends on the html classes: html_stretched, html_boxed and html_av-framed-box. These classes are set in the header.php according to the settings of the Enfold options. ( html_stretched, html_boxed and html_av-framed-box ) on body they are set without html_ )
    There are some filters – but nothing could bring the solution. (see old topic).

    A child theme header.php, on the other hand, is quickly created because a file of that name in the child theme root directory is automatically used instead of the parent theme file.

    If you only want to use the framed layout for a specific page, it is easier to use the reverse method – set the framed layout setting globally and change it to boxed or stretched for all other pages.

    Long story short. Upload to your child-theme route directory a header.php copy and edit it.
    search for that line ( around line 26) :

    $style = $avia_config['box_class'];
    

    if you set the stretched layout – and want to have for a specifc page a boxed layout –
    or you have set the boxed layout and want only one page to be in stretched layout – replace it by:

    if (is_page(array(27))) { 
    	$style = 'boxed'; // or 'stretched'
    } else {
    	$style = $avia_config['box_class'];
    }

    now – as mentioned above it is not easy to get for only some pages a framed layout. So here we go the other way :
    Set on Enfold options page a framed layout as global setting – and change the layout to all others that are not that page:

    if (!is_page(array(27))) { 
    	$style = 'stretched';
    } else {
    	$style = $avia_config['box_class'];
    }
    

    now every page now is stretched except the page 27

    see here example page : https://clean.webers-testseite.de/impressum/ this page is framed – all others are stretched.

    #1480611

    In reply to: Sticky element

    Hi,

    Thank you for the update.

    Instead of placing the search widget inside a Color Section, try inserting it directly into the header using a widget or widget area. Please refer to this documentation for more info.

    https://kriesi.at/documentation/enfold/header/#adding-a-header-widget-area

    This is the html of the search element, which can be placed inside a Text widget: https://pastebin.com/K8x7qu9g

    Best regards,
    Ismael

    Marc Bijl
    Participant

    When I change the css file of my child theme, these changes do not show up at the website.

    After searching long, long time, it seems my website loads an old version of the css file. In the source code I see this one being loaded:
    /wp-content/themes/enfold-child/style.css?ver=7.1

    The content of this file, when viewed through the browser, is not the same as the file I’m editing through ftp and a code editor at:
    /wp-content/themes/enfold-child/style.css

    I’ve been trying hard to find out how to load the right css. For example I’ve deleled browser caches, turned off caching plugin, and also set Enfold Performance settings at:

    – Turn off css compression/merging
    – Turn on delete old css and js files

    Nothing seemed to help. Finally asked chatgpt which said:

    “It seems that the ?ver=7.1 in the URL of your style.css file is added to indicate the version of the file, which is usually done for caching purposes. If you want the CSS to load without the version parameter, there are several ways to do this, depending on how the version parameter is added. Here are a few possible solutions:”

    One of the solutions was adding this code:

    function custom_enqueue_styles() {
        wp_enqueue_style( 'enfold-child-style', get_stylesheet_directory_uri() . '/style.css', array(), false, 'all' );
    }
    add_action( 'wp_enqueue_scripts', 'custom_enqueue_styles' );

    That seems to do the trick!

    What is happening here?
    How can I get this fixed without adding the extra code?

    Using Google, I see quite some people having issues withc css changes not being visible due to Enfold settings.

    Please let me know how all his stuff works, and how I can turn it off or set it in such a way that it just works?

    #1480193
    comkapi
    Participant

    Hello,
    the MCE icon tool (in the shape of a magic wand) to insert a shortcode in text element no longer appears in my custom layout.
    i use it to display ACF custom fields data, like in documentation.

    With console i see a JS error in admin, I searched and it comes from the fact that the shortcode use the field label of ACF but it’s the field name which is given now, example for a company name :
    previously with field name : {acf_field_6745a0c4478f3:Nom_entreprise}
    today with field label instead : {acf_field_6745a0c4478f3:Nom de l’entreprise}
    And in French the apostrophe in the label value of the field brakes some Avia js array and prevents the display of the MCE icon tool …

    i fixed it by removing apostrophe in the ACF label field
    This appears to be due to a recent update, but is it an Enfold update or an ACF update? i don’t know

    Maybe it can help others

    Regards

    #1480107

    but you do not want to combine those things mentioned on the other post?

    see f.e.: https://enfold.webers-webdesign.de/impressum/
    see text logo above , when you switch to other posts/pages

    function use_text_logo_only($logo){
        $link = apply_filters( 'avf_logo_link', home_url( '/' ) );
        $logo_tag = "h1";
        $logo_heading = "Webers Webdesign";
        $alt = get_bloginfo( 'name' );    
        $title = get_bloginfo( 'name' );
        $page_title = get_the_title();
    
    if(is_search()){
    	$logo = '<a class="logo text-logo" href="'.$link.'" alt="'.$alt.'" title="'.$title.'"><'.$logo_tag.'>'  .$logo_heading.' - Suchergebnisse</'.$logo_tag.'></a>';
    }
    elseif(is_front_page()){
    	$logo = '<a class="logo text-logo" href="'.$link.'" alt="'.$alt.'" title="'.$title.'"><'.$logo_tag.'>'  .$logo_heading.'</'.$logo_tag.'></a>';
    }
    else{
    	$logo = '<a class="logo text-logo" href="'.$link.'" alt="'.$alt.'" title="'.$title.'"><'.$logo_tag.'>'  .$logo_heading.' - '.$page_title.'</'.$logo_tag.'></a>';
    }
    return $logo;
    }
    add_filter('avf_logo_final_output','use_text_logo_only');
    #top .logo.text-logo  {
      display: flex;
      justify-content: left;
      align-items: center;
      width: auto;
    }
    
    #top .logo.text-logo h1  {
      margin: 0 !important;
      font-size: 30px;
    }
    #1479994

    Hello Mike, Site isn’t live as it is in a staging environment. I use the Enfold DJ Demo as a foundation and the normal masonry gallery without any CSS tweaks. Excerpt text of masonry gallery is always inside the thumbnail, I’m just searching for a global Enfold-Solution to put it below the thumbnail.

    • This reply was modified 3 months, 3 weeks ago by tribaleye13.
    #1479986

    In reply to: Sticky element

    Hey sitadi,
    The login to the live site is not working, but for the test site the search is sticky but seems to be in the wrong position when the header when it shrinks,
    Try this CSS in your Enfold Theme Options ▸ General Styling ▸ Quick CSS field:

    #header.header-scrolled ~ #main #av_section_1 .avia_search_element {
    top: -64px;
    position: relative;
    }
    #header ~ #main #av_section_1 .avia_search_element {
    top: -30px;
    position: relative;
    }

    Please ensure to copy the code from the forum and not an email notification so the symbols are not converted.
    After applying the css, please clear your browser cache and check.

    Best regards,
    Mike

    #1479662
    CaptOM89
    Participant

    In the Avia Layout Builder, I’m using the Table Content Element on a page. On the Styling tab, I’ve selected Use the table as a Pricing Table + Default + Show empty cells. At this point, the table has a Heading Row at the top, followed by two Default Rows, with two columns.

    When viewed, the Heading Row has a red background with white letters.

    My question is, how are the colors (background, text) of the Heading Row controlled? Is there any way to adjust those colors, perhaps in the Enfold theme options? Or . . .?

    While I’m at it, I searched for documentation for how to use the Table Content Element in the Enfold documentation. Couldn’t find anything. Is there any such “how to” documentation?

    Thanks! Lance

    #1479637

    Hi Rikard,

    Strange that the Enfold 7.1 update changed the search icon from white to grey. Your fix worked. Can you please close the thread? Thank you!

    #1479482
    cgw3
    Participant

    I wondered if you might be able to help with a small issue following your switch to SVG for several of the elements in v7 and v7.1 please.

    I use my own custom to set the colours and have had no issues with the Search, Return to Top and Shop Cart until v7 updates to SVG, I found another post where you gave the css for the Search icon and I found the Return to Top CSS I needed but I am not having as much luck with the Shop Cart.
    Would it be possible for you to post the css you are using with the updated Shop Cart please.

    Also out of interest are there any other functions you have switched to SVG now that I might have missed?

    Thank you ever so much.

    mediaapps
    Participant

    Is there a noindex nofollow for a page setting in the Enfold theme?

    Sometimes I publish pages so my collaborators can see them but I do not want them to be indexed by search engines. Is there a setting within the Enfold theme itself for this or is it a WordPress setting?

    #1479366

    Hi Rikard,

    Did you have a chance to read my message above. Can you please help me to get my search icon back to the way it was before upgrading to Enfold 7.1, with a white search icon with grey text in the search box? I want to correct this issue without custom css. Thank you.

    #1479245

    Hey classywebsites,

    Thanks for the login details. The search icon gets its colour from Enfold->General Styling->Logo Area->Logo Area Secondary Font Color, you can change the colour there. If you want to set the colour using your own CSS, then please use this in Quick CSS:

    .header_color .main_menu ul:first-child > li > a svg:first-child {
      stroke: #fff;
      fill: #fff;
    }

    Best regards,
    Rikard

    #1479233
    classywebsites
    Participant

    After updating up to Enfold 7.1, the search icon on the main menu on desktop and mobile turned grey. It used to be white, like the white text on the main menu on desktop and the white menu icon on mobile.
    I tried resetting Performance in theme options, flushing cache, flushing browser cache and deactivating all plugins.
    Please see the staging site with the Enfold 7.1 problems and the live site with Enfold 6.0.9 without problems in the Private Content below.
    Can you please help? Thank you.

    #1479181
    Paolo
    Participant

    Hello, we’ve noticed an issue across multiple websites we’ve developed using the Enfold theme. Specifically, in Google search results, instead of showing the correct site name, Google often displays the domain name as the site title.

    This happens regardless of the SEO plugin used (Yoast SEO, SEOPress, Rank Math, etc.), which suggests the issue might be related to Enfold itself. We have already:
    • Set the correct SEO title in the homepage settings.
    • Implemented structured data with WebSite schema defining the correct site name.
    • Checked Google Search Console for any overriding settings.
    • Requested reindexing, but the issue persists.

    Could this behavior be caused by Enfold? Is there a specific setting or modification required in the theme to ensure Google picks up the correct site name?

    Thank you in advance for your help!

    GWS
    Participant

    We are having trouble with search icons displaying correctly since updating to the Enfold 7. I found the article on the SVG search icon, https://kriesi.at/support/topic/svg-search-icon-in-top-menu-after-update-enfold-7/ and that helped with the issue we were having with the icon ‘disappearing’ from the nav bar. However, we have a search widget area on the home page of the website that is no longer displaying correctly. The custom search icon (a .png) is no longer showing and has been automatically replaced by the SVG icon. That icon is now floating off to the right and is completely out of place in the widget area. I’ve attached a link to a screenshot of what it is supposed to look like and the website URL is in the private content as well. Your advice is appreciated. Thank you.

    #1478832

    Hey Katja,

    Thank you for the inquiry.

    Please add this css code to adjust the color of the active mobile menu items and the search icon:

    .html_av-overlay-side #top #wrap_all div .av-burger-overlay-scroll #av-burger-menu-ul a:hover {
        color: #000000;
    }
    
    .header_color .main_menu ul:first-child > #menu-item-search > a svg:first-child {
        stroke: #fff;
        fill: #fff;
    }
    

    You may need to toggle or temporarily disable the Enfold > Performance > File Compression settings.

    Best regards,
    Ismael

    #1478700

    Hey Olivier SIA09,
    We would need a admin login to examine, but I believe that if you examine this new filter for v7.0 and adjust it should work
    This filter changes the search icon:

    add_filter('avf_default_icons','avia_replace_standard_icon', 10, 1);
    function avia_replace_standard_icon($icons)
    {
    $icons['svg__search']	 = array( 'font' =>'svg_entypo-fontello', 'icon' => 'leaf');
    return $icons;
    }

    also note that the new built-in, svg icons are using “words” instead of the charter codes, if you hover over the icons in the icons element the title will show you the “words” if you have uploaded your own fontello icons use your charter codes
    You can see the list here: /enfold/includes/config-enfold/init-base-data.php
    Screen Shot 2025 03 05 at 4.06.41 PM
    these are the social icons:
    Screen Shot 2025 03 05 at 4.10.02 PM

    Best regards,
    Mike

    #1478663
    Olivier SIA09
    Participant

    Hello,
    Since update 7.0 SVG icons problem
    With previous versions of Enfold, I replaced the default icons of Enfold like the magnifying glass, the basket, the social icons, back to top and others according to the several different sites that I have under Enfold.
    Now that these icons are called in SVG automatically it does not work anymore.
    I used a solution found on your documentation or support.
    With the functions.php and the avf_default_icons filter.
    Example : $icons[‘search’] = array( ‘font’ =>’flaticon’, ‘icon’ => ‘uf163’);
    Would it be possible to disable SVG icons?
    Do you have another solution?
    Kind regards,

    #1478642

    In reply to: Theme update

    Hey Jean,

    Thank you for the inquiry.

    Did you generate a private token? Please try to generate the token again and make sure that the required permissions are enabled.

    — View and search Envato sites (checked by default) (Required)
    — View the user’s Envato Account username
    — View the user’s email address
    — View the user’s account profile details
    — Download the user’s purchased items (Required)
    — Verify purchases of the user’s items
    — List purchases the user has made (Required)

    Please review this doc for more info: https://kriesi.at/documentation/enfold/theme-registration/#toggle-id-5

    Best regards,
    Ismael

    #1478614

    Hey chrickel,

    Thank you for the inquiry.

    Please add this code in the Quick CSS field:

    #top .menu-item-search-dropdown > a.avia-svg-icon svg:first-child, #top .menu-item-search-dropdown > a.avia-svg-icon img[is-svg-img="true"] {
        width: auto;
        height: 1em;
        position: relative;
        z-index: 1;
        stroke: var(--enfold-header-color-color);
        fill: var(--enfold-header-color-color);
    }

    Best regards,
    Ismael

    #1478560
    chrickel
    Participant

    Since the update to Enfold 7 (i guess), the (fontello) svg-icon that displays the search in the top main menu (desktop view) is no longer visible (Enfold Theme Options ▸ Main Menu ▸ General ▸ Append search icon to main menu) The link works, only the magnifying glass icon is not displayed.
    Do you have an idea?
    Thanks!

    ceesenco
    Participant

    After updating to Enfold 7.0 the webserver is going down.
    If I check the full processlist of the database I see a hunderds of this queries causing a high load.

    SELECT post_id, meta_value FROM cc_postmeta WHERE meta_key = '_wp_attached_file' AND meta_value = '/home/domain.be/web/wp-content/themes/enfold/config-templatebuilder/avia-template-builder/assets/fonts/svg_entypo-fontello/svg/basket.svg'

    SELECT post_id, meta_value FROM cc_postmeta WHERE meta_key = '_wp_attached_file' AND meta_value = '/home/domain.be/web/wp-content/themes/enfold/config-templatebuilder/avia-template-builder/assets/fonts/svg_entypo-fontello/svg/search.svg'

    • This topic was modified 4 months, 2 weeks ago by ceesenco.
    • This topic was modified 4 months, 2 weeks ago by ceesenco.
    #1478545

    Hola Ismael

    1/ yep i relaunched google consol inspection after i removed the beehiive newsletter CCS link, i also unchecked few option in enfold them that were unnecessary according to the thread i have read (query, css etc ..) in the performance page. It seems the beehiive error eventually disappeared after new test.

    2/ errors are various , seems to concern an avia format (despite avia content is checked in yoast setting)

    my contact page is the only one to have soft 404 error and google can’t access it. It has 3 errors

    https://www.domain.ch/wp-content/themes/enfold/config-templatebuilder/avia-shortcodes/heading/heading.min.css?ver=6.0.9
    https://www.domain.ch/wp-content/themes/enfold/config-templatebuilder/avia-shortcodes/icon_circles/icon_circles.min.css?ver=6.0.9

    + the usual captcha icon robot text error i develop at the end of the message

    for the rest of the pages , errors are. :

    https://www.domain.ch/wp-content/themes/enfold/config-templatebuilder/avia-shortcodes/icon_circles/icon_circles.min.css?ver=6.0.9

    https://www.domain.ch/wp-content/themes/enfold/config-templatebuilder/avia-shortcodes/buttons/buttons.min.css?ver=6.0.9

    https://www.domain.ch/wp-content/themes/enfold/config-templatebuilder/avia-shortcodes/menu/menu.min.css?ver=6.0.9

    https://www.domain.chh/wp-content/themes/enfold/config-templatebuilder/avia-shortcodes/grid_row/grid_row.min.css?ver=6.0.9

    https://www.domain.ch/wp-content/themes/enfold/css/base.min.css?ver=6.0.9

    https://www.domain.ch/wp-content/themes/enfold/css/grid.min.css?ver=6.0.9

    https://www.domain.ch/wp-content/themes/enfold/config-templatebuilder/avia-shortcodes/hr/hr.min.css?ver=6.0.9

    https://www.domain.ch/wp-content/themes/enfold/config-templatebuilder/avia-shortcodes/iconbox/iconbox.min.css?ver=6.0.9

    https://www.domain.ch/wp-content/themes/enfold/config-templatebuilder/avia-shortcodes/magazine/magazine.min.css?ver=6.0.9

    https://www.domain.ch/wp-content/themes/enfold/config-templatebuilder/avia-shortcodes/buttons/buttons.min.css?ver=6.0.9

    ————-

    arecaptacha logo robot.txt :

    googlebot is blocked by robot.txt file : https://www.gstatic.com/recaptcha/api2/logo_48.png

    when you open robot text file you get this :

    User-agent: *
    Allow: /_/aihub_pod/
    Allow: /_/alkali-learn/
    Allow: /_/apps-viewer/
    Allow: /_/atari/
    Allow: /_/boq/
    Allow: /_/boq-play/
    Allow: /_/boutique/
    Allow: /_/buganizer/
    Allow: /_/compare-banking/
    Allow: /_/compare-insurance/
    Allow: /_/fi/
    Allow: /_/fonts/
    Allow: /_/mss/boq-bard-web/
    Allow: /_/mss/boq-chrome-cloudcast/
    Allow: /_/mss/boq-cloud-web3-portal/
    Allow: /_/mss/boq-discover-labs/
    Allow: /_/mss/boq-geo/
    Allow: /_/mss/boq-makersuite/
    Allow: /_/mss/boq-nbu-monetization/
    Allow: /_/mss/boq-search/
    Allow: /_/mss/boq-search-engagement-post/
    Allow: /_/mss/boq-travel/
    Allow: /_/mss/boq-identity/
    Allow: /_/pantheon/
    Allow: /_/pantheon-platform/
    Allow: /_/play/
    Allow: /_/pog/
    Allow: /_/cloudsourcetools/
    Allow: /_/devopsconsole/
    Allow: /_/tfhub/
    Allow: /_/transparencyreport/
    Allow: /_/gstore/
    Allow: /_/ain/_/js/
    Allow: /ac/
    Allow: /actions/news/rss/
    Allow: /ads/learn/
    Allow: /ads/local/
    Allow: /ads/gpa/vidgen/
    Allow: /ads/research/
    Allow: /ads/ubaq/
    Allow: /aihub/tfhub/
    Allow: /alkali/
    Allow: /amphtml/stamp/ucp/post-testing/
    Allow: /android/market/
    Allow: /android/market_images/
    Allow: /atari/images/public/
    Allow: /audio_news/
    Allow: /bfe/apps/website/
    Allow: /boutique/sitemaps/
    Allow: /compare/
    Allow: /chrome/crlset/
    Allow: /chrome/webstore/images/
    Allow: /cloud-launcher/sitemap/
    Allow: /cloudsourcetools/images/
    Allow: /commercesearch/images/
    Allow: /communities/sitemap/
    Allow: /copy-conductor/crawled/
    Allow: /covid19/mobility/
    Allow: /culturalinstitute/images/
    Allow: /culturalinstitute/sitemaps/
    Allow: /culturalinstitute/stella/
    Allow: /ct/log_list/
    Allow: /delight/
    Allow: /devopsconsole/images/
    Allow: /devrel-devsite/
    Allow: /docs/forms/social/
    Allow: /docs/socialmarkup/
    Allow: /dictionary/static/sitemaps/
    Allow: /droidguard/
    Allow: /earth/social/
    Allow: /enterprise-partner-search/sitemaps/
    Allow: /external_hosted/
    Allow: /flights/
    Allow: /flutter-canvaskit/
    Allow: /foodordering/
    Allow: /frommers/
    Allow: /gb/images/
    Allow: /glass/images/commerce/
    Allow: /gpay/social/
    Allow: /growth-ime/
    Allow: /gsx/
    Allow: /gtp/stir/
    Allow: /guidebooks/
    Allow: /GoogleInternetAuthority/
    Allow: /h5games_gamecenter/images/
    Allow: /healthricherkp/illustrations/
    Allow: /healthricherkp/cropped/
    Allow: /hex/
    Allow: /history/static/
    Allow: /identity/accountsettingsactivityweb/
    Allow: /identity/accountsettingssyaf/
    Allow: /images
    Allow: /inproduct_help/chatsupport/
    Allow: /lamda/images/
    Allow: /local/donut/
    Allow: /mapspro/
    Allow: /marketing-cms/
    Allow: /moderator/static/ux/
    Allow: /modern-formats-eng/ucp/framework_logging/
    Allow: /modern-formats-eng/ucp/*/client/
    Allow: /modern-formats-eng/ucp/*/csr/
    Allow: /modern-formats-eng/ucp/*/dev/
    Allow: /modern-formats-eng/ucp/static/framework_logging/
    Allow: /modern-formats-eng/ucp/static/*/client/
    Allow: /modern-formats-eng/ucp/static/*/csr/
    Allow: /modern-formats-eng/ucp/static/*/dev/
    Allow: /nbubumblebee/
    Allow: /og/
    Allow: /onebox/media/sports/logos/
    Allow: /onebox/media/sports/photos/soccer/wc2018/
    Allow: /onebox/sports/logos/
    Allow: /onebox/sports/logos/sports_types/png/
    Allow: /pagespeed/insights/ui/logo/
    Allow: /pantheon/
    Allow: /pantheon-platform/
    Allow: /patent-search/frontend/
    Allow: /pay/images/merchant_logos/
    Allow: /pay/images/program_logos/
    Allow: /paygo/
    Allow: /play/store/web/
    Allow: /play/surveys/serp/
    Allow: /podcasts/test-podcast/rss/
    Allow: /politics/e/sharing/
    Allow: /prettyearth/assets/
    Allow: /psb/udc/
    Allow: /s2/sitemaps/
    Allow: /search-ar-dev/
    Allow: /search-console/scfe/
    Allow: /shopping-content-api/product_images/
    Allow: /shopping/shoppingpage/casa/
    Allow: /shopstream/
    Allow: /sites/
    Allow: /sitemaps/
    Allow: /social/photosui/images/
    Allow: /social/photosui/sitemap/
    Allow: /stadia/gamers/
    Allow: /store/images/favicons/
    Allow: /subscriptions/
    Allow: /support/content/
    Allow: /system1/images/
    Allow: /travel-frontend/images/
    Allow: /finance/favicon/
    Allow: /travel-vacations/
    Allow: /touringbird/
    Allow: /trends/
    Allow: /trends_tpt/
    Allow: /trustedstores/images/
    Allow: /trustedstores/js/
    Allow: /tv/thumb/
    Allow: /ui/
    Allow: /vr/*
    Allow: /vsi/*.pdf$
    Allow: /wondermissive/interest/
    Allow: /youtube/fonts/
    Allow: /youtube/img/promos/
    Allow: /icons/
    Allow: /js/
    Allow: /ss/
    Allow: /*.js
    Allow: /*.css
    Allow: /*.svg
    Allow: /buyside-e2e-monitor/

    the strange thing is i dont find this in my yoast robot manager

    do you think Google captach might be a problem ?

Viewing 30 results - 31 through 60 (of 7,443 total)