Forum Replies Created

Viewing 30 posts - 121 through 150 (of 238 total)
  • Author
    Posts
  • in reply to: HTTPS for woocommerce checkout page breaks elements #825084

    It never rains….

    Has this sorted itself out?

    I get this on checkout

    in reply to: Chrome reports phishing with Enfold theme #825081

    Hi,

    Can you post a link to your website and/or the page that is causing the alert?

    It does sound like there could be some form of infection on site. This can happen if your server / hosting company aren’t doing their bit keeping security tight or due to an infected / old plugin / theme that has an exploit. Only using premium themes and up to date plugins is essential for security.
    Google can be wrong sometimes and throw out incorrect alerts but that rare. Is the alert showing in Webmaster Tools?

    I’d highly recommend installing WordFence and running a full scan. If you aren’t sure leave all setting on standard and it’ll be fine.

    Hope that helps

    TJ

    in reply to: HTTPS for woocommerce checkout page breaks elements #824631

    Ah nice one :)

    Many minds make light work.

    TJ

    in reply to: HTTPS for woocommerce checkout page breaks elements #824614

    Hmm.

    There are are a lot of mixed content warnings on most pages and not just from non https sources.
    For example on the home page there is a gif image that is being pulled from this url http://realpointmedia.kinsta.com/thelongevityedge/wp-content/uploads/sites/6/2017/01/longevityedgetransparent.gif
    When you open the page from your post the url is https://realpointmedia.kinsta.com/thelongevityedge/checkout/ which then redirects…
    Has the site been built somewhere them migrated?

    Few things spring to mind but without looking at back end it is just guess work

    Under settings>general have you set the site urls to https://www.yourwebdomain.com?

    There are few things you add add to the htaccess file to force things to load over https at server level.

    <IfModule mod_headers.c>
      <FilesMatch "\.(ttf|ttc|otf|eot|woff|font.css|css)$">
        Header set Access-Control-Allow-Origin "https://www.yourwebdomain.com"
      </FilesMatch>
    </IfModule>
    RewriteEngine On
    RewriteCond %{HTTPS} !on
    RewriteRule (.*) https://%{HTTP_HOST}%{REQUEST_URI}

    I’d only recommend those two as a last resort. They will work but if done incorrectly it will break your website and unless you have ftp access you wont be able to change the htaccess again.

    It may need a moderator to have a look at the backend and see if everything is set correctly. I’m just a humble user ;)

    TJ

    in reply to: HTTPS for woocommerce checkout page breaks elements #824540

    Hi

    Without looking at the page and talking from past experience have you manually typed urls in css or code blocks anywhere?
    If you have you need to go through and change them all to https://www.bla-bla-bla.com.
    I moved a site to https but my custom css was littered with background-image urls that still had http.
    You could do a database search to change if you have access.

    Could you post a link to the page in question? Can do some inspecting then and see where issues are

    Thanks

    TJ

    in reply to: Chrome reports phishing with Enfold theme #824533

    Hi,

    Are you running any security plugins like WordFence or Sucuri?
    If not I would install them and see what they find.
    I’ve used Enfold for years and never had an issue regarding the theme and any security holes, these guys are good.
    As wp-content is a standard WordPress folder at theme specific. it is more likely to be an infection from a plugin or a “hack” than a theme related issue .
    Can you check your ftp and see if any suspect plugins / files are there?
    If you aren’t using a pay-pal plugin then delete those files from uploads and run some checks.

    Hope that helps

    TJ

    in reply to: Unable to remove category from my blog post #824518

    Hi,

    You can hide the category title using some css

    .html_modern-blog #top .post-entry .blog-categories {
      display:none;}

    Paste that into your custom css and the category title shall be vanished!
    It will be removed from every blog post though.

    Hope that helps

    TJ

    in reply to: Multi-Colored Sticky Line Under Main Header #824510

    Hi,

    You can use a pseudo class to create the effect without the use of the grid row.

    .html_header_top.html_header_sticky #header::after {
        height: 5px;
        background: red; /* For browsers that do not support gradients */    
        background: -webkit-linear-gradient(to right,#ad0701,#ad0701 20%,#f25c2e 20%,#f25c2e 40%,#92c743 40%,#92c743 60%,#9078b2 60%,#9078b2 80%,#f25c2e 80%); /* For Safari 5.1 to 6.0 */
        background: -o-linear-gradient(to right,#ad0701,#ad0701 20%,#f25c2e 20%,#f25c2e 40%,#92c743 40%,#92c743 60%,#9078b2 60%,#9078b2 80%,#f25c2e 80%); /* For Opera 11.1 to 12.0 */
        background: -moz-linear-gradient(to right,#ad0701,#ad0701 20%,#f25c2e 20%,#f25c2e 40%,#92c743 40%,#92c743 60%,#9078b2 60%,#9078b2 80%,#f25c2e 80%); /* For Firefox 3.6 to 15 */
        background: linear-gradient(to right,#ad0701,#ad0701 20%,#f25c2e 20%,#f25c2e 40%,#92c743 40%,#92c743 60%,#9078b2 60%,#9078b2 80%,#f25c2e 80%); /* Standard syntax (must be last) */
    }

    Only issue is there is a bit of blur between the colors, which sucks :(

    But it’s a starting point :)

    You could also use ::before on the footer to do the same thing down below

    TJ

    in reply to: How to edit 401 page #823329

    Hi,

    You would need to edit includes>loop-search.php

    Code starts at line 121.

    Hope that helps

    TJ

    in reply to: Ajax search and changing text #822555

    Hi Basilis,

    Correct. The entire function that controls the ajax search is over 300 lines. I didn’t want to copy / change all of that in the child theme so tried to target only the array that controlled the part i wanted to change. The code in the first post targets just that.
    Rather than changing the text however, it removed all text.

    The question id how do I target just the array and not the entire function? Or is it not possible?

    Thanks

    TJ

    in reply to: Media elements in theme builder not adhering to SSL #821347

    Hmm this is very strange. I’d say it’s not a theme issue as I run ssl on my site and everything works fine.
    All .js and .css files are https and all images are loaded over https without any issues at all.
    No plug in needed either.

    There are ways to force all pages and resources to load over https.

    It’d be interesting to “inspect” your pages to see what erros are thrown up

    TJ

    in reply to: Website looks iFramed #821335

    Hi,

    There appears to be some css doing some funky stuff. Not sure if it is due to the update or something else, I’m sure a mod will know.

    html.responsive, .responsive body {
      overflow-x:visible!important;
    }

    Will get rid of the scroll bar if your site is live (it should sort the anchors out too) until the route of the problem can be found

    hope that helps

    TJ

    • This reply was modified 7 years, 4 months ago by tjswarbs78. Reason: we may need to whack an !important in there too
    in reply to: Ajax search and changing text #821243

    Hi,

    The issue isn’t fixed. To be fair it isn’t really an issue I’m just curious as to how I change something more permanently . The standard ajax search shows some generic text that I have changed to the following.

    image one

    The array that was changed is in functions-enfold.php. Now when an update is done that change will be lost and I’ll have to recreate it. Is there something child-theme level i can change / add to make the permanent?

    The original post I made shows a function i thought might work, but it doesn’t.

    Thanks

    TJ

    in reply to: Menu issues on 4.1 update #821107

    Morning,

    Same thing happened to me after the update to 4.1
    Clear your browser cache and it should sort the issue.
    Try that and if it doesn’t help please let us know.

    Thanks

    Tj

    Hopefully this won’t go against any rules but ok. email some login details to (Email address hidden if logged out)

    Thanks

    TJ

    Is the backend all in German?

    TJ

    Hey,

    I’ve stuck all your images desktop and mobile into a fiddle

    The code is working fine. All images cut off at the breakpoints. I’ve checked in my browser and too and the cutoffs work fine. You’re correct though that on mobile (I checked on my Galaxy Note 3) none off the mobile images show which is rather odd.
    Have you tried clearing all the custom css apart from the css controlling the mobile images?
    Just by looking at the code in chrome I’m stumped as to the casue.

    The next step would be asking for a temp login so someone can have a look at the backend but a moderator would have to do that.
    I’m just a helpful user and not a moderator :)

    Thanks

    TJ

    • This reply was modified 7 years, 4 months ago by tjswarbs78.

    Hi,

    There is no difference in the out-put between background and background-image.
    There are several background properties that can be targeted…

    background-color
    background-image
    background-position
    background-repeat
    background-attachment
    background-clip
    background-origin
    background-size

    Rather than writing a rule for each one you can use background as a shortcode ie background: red url(web-here) top center fixed ;
    It saves time coding and test show browser render it quicker.

    I’ll check on my mobile this morning and get back to you

    Thanks
    TJ

    in reply to: Ajax search and changing text #818612

    Hi,

    Well it doesn’t break it as such. the search function works fine just the text disappears when no searches are found.

    I haven’t actually implemented the change I’m just pondering how it’s done :)

    Thanks

    TJ

    in reply to: Button in Grid Not Showing In Mobile #817958

    Hi,

    If you’ve used a grid row you can stipulate how the cells behave on mobile. You can have them side by side or stacked.

    See image here

    Hope that helps

    TJ

    in reply to: Grey line appearing after color section #817922

    Hi,

    The class .container_wrap within the ID #coloursectionpadding has a bottom border of 1px
    Try…

    #coloursectionpadding .container_wrap {border:none!important;}
    and see if that clears it

    Let us know if it works
    TJ

    Hi,

    Is it just .svg that are not scaling correctly? Are .png and .jpg fine?
    IE9+ doesn’t scale svg files when they are added with <img /> tags

    You can get around this by using the following code in your custom css

    /* * Let's target horrid IE to respect aspect ratios for .svg * * [1] does IE9 * [2] does IE10+ */
    /* 1 */.ie9 img[src$=".svg"] {  width: 100%; }
    /* 2 */@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {  img[src$=".svg"] {    width: 100%;   }}

    I have used this on sites so I know it to work. Maybe it’ll work for you.

    Thanks

    TJ

    Hey,

    Does the issue only happen on the wasser ID?
    There doesn’t appear to be anything wrong with your css.

    I’ve played with the live code managed to get the image changing at 480px

    Image one – NO break at 480 so main image showing

    image two – break at 480 so mobile image shows

    this last image is a curve ball (does that expression translate into German?)
    It show the main image on mobile but uses cover to align image
    image – break at 480 with main image but using cover.

    Put your css back to how it was originally and see if it matches my css in the screen shots

    You may or may not know but if your are using Chrome you can right click a page the inspect. This allows you to change the live code and see what is / isn’t working.

    See how this helps and get back to us.

    TJ

    Morning Nik,

    It is a nice helpful environment here :)
    I help out as a way of giving back to the guys at Enfold, plus i get to learn a lot about the theme from helping others.

    I’m not sure why the preview panel shows the code working but not on a page.
    Could you post a link to the page that is causing issues? It would be easier to inspect the code on a live page.

    The only other I think of is that the media query value is too small. maybe try 990px??

    Thanks

    TJ

    in reply to: Grey line appearing after color section #817318

    haha,

    oh yeah i forgot to highlight the checkbox on the image! #fail

    TJ

    in reply to: bg image appears zoomed in and white border #817287

    Hi,

    From having a look a the code the background is set on
    .header_bg and on .header_color

    Try removing the code from these and adding it to…
    .html_header_top.html_bottom_nav_header #header_main {url("//hungry-cactus.flywheelsites.com/wp-content/uploads/2017/07/header-2.jpg") center top / contain no-repeat fixed #ffffff;}

    adding the condition “contain” removes the white edges and gets rid of the zoom – well it does on my end ;)

    Hope that helps

    TJ

    Hi,
    Ich spreche nicht Geramn so habe ich durch Google übersetzt.

    Von der Suche nach dem Code scheint es, dass ein Halbkolon fehlt.

    Versuchen

    @media only screen and (max-width: 480px) {
    #wasser {
    background: url("https://fritzhoffmann.de/wp-content/uploads/2017/06/wasser_mobile-1.jpg") !important;
    }}

    Ich hoffe, das hilft

    TJ

    in reply to: Grey line appearing after color section #817274

    Hi,

    Do you have the following checked… see image

    Hope that helps

    TJ

    in reply to: CUSTOMIZE BUTTON LOAD MORE MASONRY #817269

    Hi,

    #top .av-masonry-load-more {background-color:red!important;}

    Will change button color (obviously change red to whatever color you want.

    #top .av-masonry-load-more {color:red!important;}

    Will change the font color.

    Any issue just holla

    TJ

    in reply to: How to move a button in the menu to the right? #816337

    Hello,

    you could use

    #menu-item-3428 {float:right;}

    in custom css to push it to the right of the menu element

    Hope that helps

    TJ

Viewing 30 posts - 121 through 150 (of 238 total)