Home Forums WordPress Plugins Hide My WP Some questions

This topic is: not resolved
Viewing 2 posts - 1 through 2 (of 2 total)
  • Author
    Posts
  • #402
    comitzuu
    Post count: 16

    Hey,

    opens a tread on 19. October, no answer still now! Is there a special reason that I´m the only one who become no reply? Try it for a last time, then I erase the plugin… I´ve set the other tread to resolved, so that there is no open doublecontent.
    This moment it isn´t active, because there comes no answer, but this happens:

    1. If I activate your PlugIn, the follow sentence is still in my Sourcecode:
    // Google Analytics for WordPress by Yoast v4.3.3 | http://yoast.com/wordpress/google-analytics/
    I want it to change just to Google Analytics. How can I do this please?

    2. If I use on General Settings Page the Replace Mode on Quick, all works fine. If I use it on Fullpage mode, it breaks my Logo. The Logo is linked with http://…

    3. Is there any chance to change this in my Header without issues?
    <script type="text/javascript"> var woocommerce_remove_updated_totals = "0"; </script>
    You can see it exactly in the way it is shown here in the header.

    4 If I turn on your PlugIn the internal links to images seems to be broken, like this one:

    div a.remove {
    background: url(images/remove.png) #CCC;
    }

    Other images are reachable…

    5. If I put the follow code into my htaccess, my site breaks and shows me a database error. Without your PlugIn it works fine… Why?

    # www just to http (SEO)
    RewriteEngine on
    RewriteCond %{HTTP_HOST} ^www\.(.+)$ [NC]
    RewriteRule ^ http://%1%{REQUEST_URI} [R=301,L]
    DirectoryIndex index.htm index.php
    
    ################################## Own Caching
    
    ## Turn Gzip Compression On
    <ifModule mod_deflate.c>
    <FilesMatch ".(js|css)$">
    SetOutputFilter DEFLATE
    </FilesMatch>
    </ifModule>
    
    ## EXPIRES CACHING ##
    # Turn on Expires and set default to 0
    ExpiresActive On
    ExpiresDefault A0
     
    # Set up caching on media files for 1 year (forever?)
    <FilesMatch "\.(flv|ico|pdf|avi|mov|ppt|doc|mp3|wmv|wav)$">
    ExpiresDefault A29030400
    Header append Cache-Control "public"
    </FilesMatch>
     
    # Set up caching on media files for 1 week
    <FilesMatch "\.(gif|jpg|jpeg|png|swf)$">
    ExpiresDefault A604800
    Header append Cache-Control "public"
    </FilesMatch>
     
    # Set up 2 Hour caching on commonly updated files
    <FilesMatch "\.(xml|txt|html|js|css)$">
    ExpiresDefault A7200
    Header append Cache-Control "proxy-revalidate"
    </FilesMatch>
     
    # Force no caching for dynamic files
    <FilesMatch "\.(php|cgi|pl|htm)$">
    ExpiresActive Off
    Header set Cache-Control "private, no-cache, no-store, proxy-revalidate, no-transform"
    Header set Pragma "no-cache"
    </FilesMatch>
    ## EXPIRES CACHING ##
    
    ################################## Own Caching

    Cheers!

    #403
    Hassan
    Post count: 955

    1. You can change all or a part of it with replace in HTML. Something like below (see the last =):
    Google Analytics for WordPress by Yoast v4.3.3 | http://yoast.com/wordpress/google-analytics/=

    2. It shouldn’t break your logo. If other new URLs works it should work, too. Change replace mode and compare the logo source code. Post both code here so I can help.

    3. The easiest way is deleting it using Replace in HTML and next add it to a separate script file. You may also add it to a current script file (for example in your theme.)

    4. You should not enter a path for stylesheet. For example (template/css/main.css) is incorrect you only need to enter a new name not a path (main.css). If this is not your problem please let me know more (you can post URL with a private reply).

    5. I think the problem is first 5 lines. It changes www URLs to non-www but you don’t need it because new versions of WP do it by default. Just make sure you didn’t disable canonical URLs (Go to end of Permalink tab in HMWP settings page)

Viewing 2 posts - 1 through 2 (of 2 total)

You must be logged in to reply to this topic.