Forum Replies Created

Viewing 15 replies - 61 through 75 (of 82 total)
  • Thread Starter 4090

    (@4090-1)

    Will do once we get it working.

    It is still not working.

    I am still using the <i tags because the <span tag does not work with the CSS. This means that it is still not semantically correct.

    There is still something that needs to be done with the CSS.

    Thread Starter 4090

    (@4090-1)

    Travel Ideology

    I have left the css in as suggested but have set it back to <i instead of <span

    Thanks

    Thread Starter 4090

    (@4090-1)

    Thank you very much for this.

    I tried what you suggested. Unfortunately, the icon is greyed instead of white.

    Am I missing something?

    Thread Starter 4090

    (@4090-1)

    site is accessible.

    Thread Starter 4090

    (@4090-1)

    My .htaccess file is as follows.
    I thought that it was a propagation issue. I have taken the site off cloudflare.
    It appears to be OK in gtmetrix.com and googlepage speedtest but not in the browsers. Any ideas?

    Sorry, I am not an apache expert.

    Header unset ETag
    FileETag None
    Options +FollowSymlinks
    RewriteEngine on
    RewriteRule ^login\$ https://www.%{HTTP_HOST}/login [R=301,L]
    RewriteCond %{HTTP_HOST} ^travelideology\.com [OR]
    RewriteCond %{HTTP_HOST} ^103\.225\.160\.52 [OR]
    RewriteCond %{HTTP_HOST} ^104\.27\.146\.43
    RewriteCond %{HTTP_USER_AGENT} libwww-perl.* 
    RewriteRule .* ? [F,L]
    RewriteCond %{REQUEST_FILENAME} !-f
    RewriteRule ^(.*[^/])$ /$1/ [L,R=301]
    RewriteCond %{REQUEST_FILENAME} !-f
    RewriteRule https://www.travelideology.com/logout/ https://www.travelideology.com/ [R=301,L]
    RewriteRule https://www.travelideology.com/account/ https://www.travelideology.com/account/ [R=301,L]
    
    ## EXPIRES CACHING ##
    # ------------------------------------------------------------------------------
    # | CORS-enabled images |
    # ------------------------------------------------------------------------------
            <FilesMatch "\.(cur|gif|ico|jpe?g|png|svgz?|webp)$">
                SetEnvIf Origin ":" IS_CORS
                Header set Access-Control-Allow-Origin "https://www.travelideology.com" env=IS_CORS
            </FilesMatch>    
    # ------------------------------------------------------------------------------
    # | Web fonts access |
    # ------------------------------------------------------------------------------
    
    # Allow access from all domains for web fonts
    
        <FilesMatch "\.(eot|otf|ttc|ttf|woff)$">
            Header set Access-Control-Allow-Origin "https://www.travelideology.com"
        </FilesMatch>
    <IfModule mod_headers.c>
    # Set XSS Protection header
    Header set X-XSS-Protection "1; mode=block"
    </IfModule>
    <IfModule mod_expires.c>
    # Enable expirations
    ExpiresActive On
    # HTML
    ExpiresByType text/html "access plus 2 days"
    </IfModule>
    
     # Disable server signature
     ServerSignature Off
    
    # BEGIN DEFLATE COMPRESSION
    <IfModule mod_deflate.c>
    # Compress HTML, CSS, JavaScript, Text, XML and fonts
    AddOutputFilterByType DEFLATE application/javascript
    AddOutputFilterByType DEFLATE application/rss+xml
    AddOutputFilterByType DEFLATE application/vnd.ms-fontobject
    AddOutputFilterByType DEFLATE application/x-font
    AddOutputFilterByType DEFLATE application/x-font-opentype
    AddOutputFilterByType DEFLATE application/x-font-otf
    AddOutputFilterByType DEFLATE application/x-font-truetype
    AddOutputFilterByType DEFLATE application/x-font-ttf
    AddOutputFilterByType DEFLATE application/x-javascript
    AddOutputFilterByType DEFLATE application/xhtml+xml
    AddOutputFilterByType DEFLATE application/xml
    AddOutputFilterByType DEFLATE font/opentype
    AddOutputFilterByType DEFLATE font/otf
    AddOutputFilterByType DEFLATE font/ttf
    AddOutputFilterByType DEFLATE image/svg+xml
    AddOutputFilterByType DEFLATE image/x-icon
    AddOutputFilterByType DEFLATE text/css
    AddOutputFilterByType DEFLATE text/html
    AddOutputFilterByType DEFLATE text/javascript
    AddOutputFilterByType DEFLATE text/plain
    AddOutputFilterByType DEFLATE text/xml
    </IfModule>
    # END DEFLATE COMPRESSION
    
    # BEGIN GZIP COMPRESSION
    <IfModule mod_gzip.c>
    mod_gzip_on Yes
    mod_gzip_dechunk Yes
    mod_gzip_item_include file \.(html?|txt|css|js|php|pl)$
    mod_gzip_item_include handler ^cgi-script$
    mod_gzip_item_include mime ^text/.*
    mod_gzip_item_include mime ^application/x-javascript.*
    mod_gzip_item_exclude mime ^image/.*
    mod_gzip_item_exclude rspheader ^Content-Encoding:.*gzip.*
    </IfModule>
    # END GZIP COMPRESSION
    
    #BEGIN EXPIRES HEADERS
    <IfModule mod_expires.c>
    # Enable expirations
    ExpiresActive On
    # Default expiration: 1 hour after request
    ExpiresDefault "now plus 1 hour"
    # CSS and JS expiration: 1 month after request
    ExpiresByType text/css "now plus 1 month"
    ExpiresByType application/javascript "now plus 1 month"
    ExpiresByType application/x-javascript "now plus 1 month"
    # Image files expiration: 1 month after request
    ExpiresByType image/bmp "now plus 1 month"
    ExpiresByType image/gif "now plus 1 month"
    ExpiresByType image/jpeg "now plus 1 month"
    ExpiresByType image/jp2 "now plus 1 month"
    ExpiresByType image/pipeg "now plus 1 month"
    ExpiresByType image/png "now plus 1 month"
    ExpiresByType image/svg+xml "now plus 1 month"
    ExpiresByType image/tiff "now plus 1 month"
    ExpiresByType image/vnd.microsoft.icon "now plus 1 month"
    ExpiresByType image/x-icon "now plus 1 month"
    ExpiresByType image/ico "now plus 1 month"
    ExpiresByType image/icon "now plus 1 month"
    ExpiresByType text/ico "now plus 1 month"
    ExpiresByType application/ico "now plus 1 month"
    # Webfonts
    ExpiresByType font/truetype "access plus 1 month"
    ExpiresByType font/opentype "access plus 1 month"
    ExpiresByType image/svg+xml "access plus 1 month"
    ExpiresByType application/vnd.ms-fontobject "access plus 1 month"
    ExpiresByType application/vnd.ms-fontobject "access plus 1 month"
    ExpiresDefault "access plus 1 year"
    </IfModule>
    #END EXPIRES HEADERS
    
    # BEGIN Cache-Control Headers
    <ifModule mod_headers.c>
    <filesMatch "\.(ico|jpe?g|png|gif|swf)$">
    Header set Cache-Control "public"
    </filesMatch>
    <filesMatch "\.(css)$">
    Header set Cache-Control "public"
    </filesMatch>
    <filesMatch "\.(js)$">
    Header set Cache-Control "private"
    </filesMatch>
    <filesMatch "\.(x?html?|php)$">
    Header set Cache-Control "private, must-revalidate"
    </filesMatch>
      <FilesMatch "\.(js|css|xml|gz)$">
        Header append Vary: Accept-Encoding
    </FilesMatch>
    </ifModule>
    # END Cache-Control Headers
    
    # BEGIN KeepAlive
    <IfModule mod_headers.c>
    Header set Connection keep-alive
    </IfModule>
    # END KeepAlive
    
    # BEGIN WordPress
    <IfModule mod_rewrite.c>
    RewriteEngine On
    RewriteBase /
    RewriteRule ^index\.php$ - [L]
    RewriteCond %{REQUEST_FILENAME} !-f
    RewriteCond %{REQUEST_FILENAME} !-d
    RewriteRule . /index.php [L]
    </IfModule>
    # END WordPress
    Thread Starter 4090

    (@4090-1)

    Please see Google Page Speed Test

    It complains about Size tap targets appropriately for Terms and Conditions.

    I need to do something to fix it.

    Is there a simple CSS fix? or some other way of fixing it>

    Travel Ideology uses enigma free edition.

    Not sure how to setup read only access to the website.

    Thread Starter 4090

    (@4090-1)

    Thread Starter 4090

    (@4090-1)

    <a href="//shop/%product_cat%/">

    Thread Starter 4090

    (@4090-1)

    I notice that the stock all have numbers in the field “edit locks”.

    Is this normal?
    Is it possible that when the update of woocommerce failed it did not set these back after setting a number in them to stop updating data whilst updating metadata? If so, how do I fix them?

    Thread Starter 4090

    (@4090-1)

    Thank you for the suggestion.

    Unfortunately, it is still not working.

    Thread Starter 4090

    (@4090-1)

    Thank you.

    I have tried Chrome, IE and Safari and all the same problem.

    I have managed to update the data using SQL. However, I would be keen to find out what the cause is so I can fix it.

    I had a failed update due to out of memory when trying to upgrade to latest version of woocommerce and then had to copy all the files across manually. Could this have caused it? The out of memory cause is now fixed.

    Can I delete the plugin and then reinstall it without losing any data? Will this possibly fix it?

    Thread Starter 4090

    (@4090-1)

    Thank you.

    I have tried disabling all plugins except woocommerce and changed theme to Twenty Sixteen.

    Unfortunately, no change. It still does not work. I update stock quantity from 0 to 1. It resets to 0 upon saving, ie. it does not save as 1.

    Please remember that I am in dashboard -> Products.

    Any other suggestions?

    Alternatively, can you tell me which table the stock quantity is stored in so that I can fix in phpmyadmin.

    Thread Starter 4090

    (@4090-1)

    Can anyone tell me how to fix?

    Thread Starter 4090

    (@4090-1)

    Can I load fonts.php async defer ? I think this may assist.

    Thread Starter 4090

    (@4090-1)

    Thanks. However, I am already using that plugin.

    Possibly I have not understood the instructions.

Viewing 15 replies - 61 through 75 (of 82 total)