Forum Replies Created

Viewing 15 posts - 1 through 15 (of 15 total)
  • in reply to: Quote Post Format Looks Horrible On Mobile #117427
    Joe Jerde
    Member
    Post count: 17

    Thanks Kyle and Mohamad. You guys are wizards of code. I hope the dev is paying you well. 🙂

    in reply to: Quote Post Format Looks Horrible On Mobile #117423
    Joe Jerde
    Member
    Post count: 17

    Thanks, quote post on mobile looks perfect now. 🙂
    But I do have one more issue with the mobile look. The article image is off size. See attached screenshot…

    Attachments:
    You must be logged in to view attached files.
    in reply to: Quote Post Format Looks Horrible On Mobile #117379
    Joe Jerde
    Member
    Post count: 17

    Thanks sir, looks much better. The comment icon and like this icon are still out of the container though on my iPhone 5S in portrait. Landscape they look fine. So something is still squeezing them out.

    in reply to: Quote Post Format Looks Horrible On Mobile #117234
    Joe Jerde
    Member
    Post count: 17

    Bump. No support? I see other threads are being answered.

    in reply to: Page speed www.ac-outbound.nl #103548
    Joe Jerde
    Member
    Post count: 17

    bump for anyone who has advice or tips. 🙂

    in reply to: Page speed www.ac-outbound.nl #103443
    Joe Jerde
    Member
    Post count: 17

    I’d also like to know if there is an update for Better WP Minify compatibility as it was breaking my site as well, so I had to stop using it.

    I’ve already tried this… http://support.swiftideas.net/knowledgebase/better-wordpress-minify/

    in reply to: Getting White Screen on and off #102994
    Joe Jerde
    Member
    Post count: 17

    Hi Ed, so I increased the mem limit to 128M as well as updated the theme and that seemed to take care of the white screen issue. I also just updated the rev slider plugin to the latest version. So far no more whitescreen, seems to have taken care of it.

    I’ll let you know if anything else changes. Otherwise, I’m going to chalk this one up to having the issues with the RevSlider plugin.

    Thanks for showing your support!

    in reply to: Getting White Screen on and off #102829
    Joe Jerde
    Member
    Post count: 17

    Called up Hosting support and removed the expires caching from htaccess since wp super cache is already suppose to do that.

    Also, was getting an error from the revslider plugin. Has anyone else experienced problems with this plugin?

    I have also updated to the latest version of the theme.

    So far no more white screen. We’ll see.

    in reply to: Getting White Screen on and off #102799
    Joe Jerde
    Member
    Post count: 17

    Also to mention, white screen is back again even though I made the changes. Maybe cache?

    in reply to: Getting White Screen on and off #102798
    Joe Jerde
    Member
    Post count: 17

    It’s back again. I think it may have to do with the tweeks I’ve been doing to the .htaccess file.

    Here is what I had added when I started to get the white screen again…

    AddOutputFilterByType DEFLATE text/text text/html text/plain text/xml text/css application/x-javascript application/javascript

    FileETag none

    # BEGIN EXPIRES CACHING

    <IfModule mod_expires.c>
    # Enable expirations
    ExpiresActive On
    # Default directive
    ExpiresDefault “access plus 1 week”
    # My favicon
    ExpiresByType image/x-icon “access plus 1 year”
    # Images
    ExpiresByType image/gif “access plus 1 month”
    ExpiresByType image/png “access plus 1 month”
    ExpiresByType image/jpg “access plus 1 month”
    ExpiresByType image/jpeg “access plus 1 month”
    # CSS
    ExpiresByType text/css “access 1 month”
    # Javascript
    ExpiresByType application/javascript “access plus 6 months”
    ExpiresByType text/javascript “access plus 6 months”
    ExpiresByType application/x-javascript “access plus 6 months”
    #ExpiresByType text/html “access plus 600 seconds”
    #ExpiresByType application/xhtml+xml “access plus 600 seconds”
    </IfModule>

    <ifmodule mod_mime.c>
    AddType application/x-javascript .js
    AddType text/css .css
    </ifmodule>

    <ifmodule mod_deflate.c>
    SetOutputFilter DEFLATE
    <ifmodule mod_setenvif.c=””>
    SetEnvIfNoCase Request_URI \.(?:rar|zip)$ no-gzip dont-vary
    SetEnvIfNoCase Request_URI \.(?:gif|jpg|png)$ no-gzip dont-vary
    SetEnvIfNoCase Request_URI \.(?:avi|mov|mp4)$ no-gzip dont-vary
    SetEnvIfNoCase Request_URI \.mp3$ no-gzip dont-vary
    </ifmodule>
    <ifmodule mod_headers.c>
    Header append Vary User-Agent env=!dont-vary
    </ifmodule>
    </ifmodule>

    # END EXPIRES CACHING

    # BEGIN WPSuperCache
    <IfModule mod_rewrite.c>
    RewriteEngine On
    RewriteBase /
    #If you serve pages from behind a proxy you may want to change ‘RewriteCond %{HTTPS} on’ to something more sensible
    AddDefaultCharset UTF-8
    RewriteCond %{REQUEST_URI} !^.*[^/]$
    RewriteCond %{REQUEST_URI} !^.*//.*$
    RewriteCond %{REQUEST_METHOD} !POST
    RewriteCond %{QUERY_STRING} !.*=.*
    RewriteCond %{HTTP:Cookie} !^.*(comment_author_|wordpress_logged_in|wp-postpass_).*$
    RewriteCond %{HTTP:X-Wap-Profile} !^[a-z0-9\”]+ [NC]
    RewriteCond %{HTTP:Profile} !^[a-z0-9\”]+ [NC]
    RewriteCond %{HTTP:Accept-Encoding} gzip
    RewriteCond %{HTTPS} on
    RewriteCond %{DOCUMENT_ROOT}/wp-content/cache/supercache/%{SERVER_NAME}/$1/index-https.html.gz -f
    RewriteRule ^(.*) “/wp-content/cache/supercache/%{SERVER_NAME}/$1/index-https.html.gz” [L]

    RewriteCond %{REQUEST_URI} !^.*[^/]$
    RewriteCond %{REQUEST_URI} !^.*//.*$
    RewriteCond %{REQUEST_METHOD} !POST
    RewriteCond %{QUERY_STRING} !.*=.*
    RewriteCond %{HTTP:Cookie} !^.*(comment_author_|wordpress_logged_in|wp-postpass_).*$
    RewriteCond %{HTTP:X-Wap-Profile} !^[a-z0-9\”]+ [NC]
    RewriteCond %{HTTP:Profile} !^[a-z0-9\”]+ [NC]
    RewriteCond %{HTTP:Accept-Encoding} gzip
    RewriteCond %{HTTPS} !on
    RewriteCond %{DOCUMENT_ROOT}/wp-content/cache/supercache/%{SERVER_NAME}/$1/index.html.gz -f
    RewriteRule ^(.*) “/wp-content/cache/supercache/%{SERVER_NAME}/$1/index.html.gz” [L]

    RewriteCond %{REQUEST_URI} !^.*[^/]$
    RewriteCond %{REQUEST_URI} !^.*//.*$
    RewriteCond %{REQUEST_METHOD} !POST
    RewriteCond %{QUERY_STRING} !.*=.*
    RewriteCond %{HTTP:Cookie} !^.*(comment_author_|wordpress_logged_in|wp-postpass_).*$
    RewriteCond %{HTTP:X-Wap-Profile} !^[a-z0-9\”]+ [NC]
    RewriteCond %{HTTP:Profile} !^[a-z0-9\”]+ [NC]
    RewriteCond %{HTTPS} on
    RewriteCond %{DOCUMENT_ROOT}/wp-content/cache/supercache/%{SERVER_NAME}/$1/index-https.html -f
    RewriteRule ^(.*) “/wp-content/cache/supercache/%{SERVER_NAME}/$1/index-https.html” [L]

    RewriteCond %{REQUEST_URI} !^.*[^/]$
    RewriteCond %{REQUEST_URI} !^.*//.*$
    RewriteCond %{REQUEST_METHOD} !POST
    RewriteCond %{QUERY_STRING} !.*=.*
    RewriteCond %{HTTP:Cookie} !^.*(comment_author_|wordpress_logged_in|wp-postpass_).*$
    RewriteCond %{HTTP:X-Wap-Profile} !^[a-z0-9\”]+ [NC]
    RewriteCond %{HTTP:Profile} !^[a-z0-9\”]+ [NC]
    RewriteCond %{HTTPS} !on
    RewriteCond %{DOCUMENT_ROOT}/wp-content/cache/supercache/%{SERVER_NAME}/$1/index.html -f
    RewriteRule ^(.*) “/wp-content/cache/supercache/%{SERVER_NAME}/$1/index.html” [L]
    </IfModule>

    # END WPSuperCache

    # BEGIN WordPress

    <IfModule mod_rewrite.c>
    RewriteRule ^index\.php$ – [L]
    RewriteCond %{REQUEST_FILENAME} !-f
    RewriteCond %{REQUEST_FILENAME} !-d
    RewriteRule . /index.php [L]
    </IfModule>

    # END WordPress

    I may have had too much going on. I have striped everything but the following and I’ll see what happens…

    FileETag none

    # BEGIN EXPIRES CACHING

    <IfModule mod_expires.c>
    # Enable expirations
    ExpiresActive On
    # Default directive
    ExpiresDefault “access plus 1 week”
    # My favicon
    ExpiresByType image/x-icon “access plus 1 year”
    # Images
    ExpiresByType image/gif “access plus 1 month”
    ExpiresByType image/png “access plus 1 month”
    ExpiresByType image/jpg “access plus 1 month”
    ExpiresByType image/jpeg “access plus 1 month”
    # CSS
    ExpiresByType text/css “access 1 month”
    # Javascript
    ExpiresByType application/javascript “access plus 6 months”
    ExpiresByType text/javascript “access plus 6 months”
    ExpiresByType application/x-javascript “access plus 6 months”
    #ExpiresByType text/html “access plus 600 seconds”
    #ExpiresByType application/xhtml+xml “access plus 600 seconds”
    </IfModule>

    # END EXPIRES CACHING

    # BEGIN WPSuperCache
    <IfModule mod_rewrite.c>
    RewriteEngine On
    RewriteBase /
    #If you serve pages from behind a proxy you may want to change ‘RewriteCond %{HTTPS} on’ to something more sensible
    AddDefaultCharset UTF-8
    RewriteCond %{REQUEST_URI} !^.*[^/]$
    RewriteCond %{REQUEST_URI} !^.*//.*$
    RewriteCond %{REQUEST_METHOD} !POST
    RewriteCond %{QUERY_STRING} !.*=.*
    RewriteCond %{HTTP:Cookie} !^.*(comment_author_|wordpress_logged_in|wp-postpass_).*$
    RewriteCond %{HTTP:X-Wap-Profile} !^[a-z0-9\”]+ [NC]
    RewriteCond %{HTTP:Profile} !^[a-z0-9\”]+ [NC]
    RewriteCond %{HTTP:Accept-Encoding} gzip
    RewriteCond %{HTTPS} on
    RewriteCond %{DOCUMENT_ROOT}/wp-content/cache/supercache/%{SERVER_NAME}/$1/index-https.html.gz -f
    RewriteRule ^(.*) “/wp-content/cache/supercache/%{SERVER_NAME}/$1/index-https.html.gz” [L]

    RewriteCond %{REQUEST_URI} !^.*[^/]$
    RewriteCond %{REQUEST_URI} !^.*//.*$
    RewriteCond %{REQUEST_METHOD} !POST
    RewriteCond %{QUERY_STRING} !.*=.*
    RewriteCond %{HTTP:Cookie} !^.*(comment_author_|wordpress_logged_in|wp-postpass_).*$
    RewriteCond %{HTTP:X-Wap-Profile} !^[a-z0-9\”]+ [NC]
    RewriteCond %{HTTP:Profile} !^[a-z0-9\”]+ [NC]
    RewriteCond %{HTTP:Accept-Encoding} gzip
    RewriteCond %{HTTPS} !on
    RewriteCond %{DOCUMENT_ROOT}/wp-content/cache/supercache/%{SERVER_NAME}/$1/index.html.gz -f
    RewriteRule ^(.*) “/wp-content/cache/supercache/%{SERVER_NAME}/$1/index.html.gz” [L]

    RewriteCond %{REQUEST_URI} !^.*[^/]$
    RewriteCond %{REQUEST_URI} !^.*//.*$
    RewriteCond %{REQUEST_METHOD} !POST
    RewriteCond %{QUERY_STRING} !.*=.*
    RewriteCond %{HTTP:Cookie} !^.*(comment_author_|wordpress_logged_in|wp-postpass_).*$
    RewriteCond %{HTTP:X-Wap-Profile} !^[a-z0-9\”]+ [NC]
    RewriteCond %{HTTP:Profile} !^[a-z0-9\”]+ [NC]
    RewriteCond %{HTTPS} on
    RewriteCond %{DOCUMENT_ROOT}/wp-content/cache/supercache/%{SERVER_NAME}/$1/index-https.html -f
    RewriteRule ^(.*) “/wp-content/cache/supercache/%{SERVER_NAME}/$1/index-https.html” [L]

    RewriteCond %{REQUEST_URI} !^.*[^/]$
    RewriteCond %{REQUEST_URI} !^.*//.*$
    RewriteCond %{REQUEST_METHOD} !POST
    RewriteCond %{QUERY_STRING} !.*=.*
    RewriteCond %{HTTP:Cookie} !^.*(comment_author_|wordpress_logged_in|wp-postpass_).*$
    RewriteCond %{HTTP:X-Wap-Profile} !^[a-z0-9\”]+ [NC]
    RewriteCond %{HTTP:Profile} !^[a-z0-9\”]+ [NC]
    RewriteCond %{HTTPS} !on
    RewriteCond %{DOCUMENT_ROOT}/wp-content/cache/supercache/%{SERVER_NAME}/$1/index.html -f
    RewriteRule ^(.*) “/wp-content/cache/supercache/%{SERVER_NAME}/$1/index.html” [L]
    </IfModule>

    # END WPSuperCache

    # BEGIN WordPress

    <IfModule mod_rewrite.c>
    RewriteRule ^index\.php$ – [L]
    RewriteCond %{REQUEST_FILENAME} !-f
    RewriteCond %{REQUEST_FILENAME} !-d
    RewriteRule . /index.php [L]
    </IfModule>

    # END WordPress

    Advice is appreciated.

    in reply to: Better WP minify breaks CSS #99244
    Joe Jerde
    Member
    Post count: 17

    Latest v1.3 didn’t work for me. Whenever I’d Command+R page it would render broken again. Had to disable.
    Any other solutions? Does Speed Booster Pack” by the author tiguan work?

    in reply to: Change author on FAQ's Post type #95830
    Joe Jerde
    Member
    Post count: 17

    This should be removed in the next update for all users. Having the author name looks bad and is not needed on a FAQ. Please submit to developer.

    in reply to: Update 2.62 having problems… #95829
    Joe Jerde
    Member
    Post count: 17

    Thanks.

    in reply to: Showcase your Dante website! #95453
    Joe Jerde
    Member
    Post count: 17

    This has been the perfect theme for my network marketing site about mynt. Check out MyntProducts.com.

    in reply to: Update 2.62 having problems… #95452
    Joe Jerde
    Member
    Post count: 17

    Updated the slider, thanks for that. It is working fine now.

    Other issues seem to have worked themselves out. I had to resize one of the youtube video boxes and save for it to show sized properly in the page.

    One thing i did notice is that youtube videos no longer scale within screen parameters when on mobile screen size.

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