Viewing 30 posts - 1 through 30 (of 35 total)
  • Author
    Posts
  • #1013089

    I made changes to the home page, after pressing update, the page is hanging. What must I do since I cannot go back or forward?

    #1013099

    Hey ejearob,
    Do you mean that the page will not load now on the frontend or on the backend, or both?
    Can you please include a admin login in the private content area so we can take a closer look. Where you adding any custom code into the page when this occurred?

    Best regards,
    Mike

    #1013101

    Hi Mike
    The page will not load on the backend, I can see the changes on the frontend. I did not add any custom code.

    #1013114

    Hi,
    I see that you have added a login, but could you please also include the url to your site.

    Best regards,
    Mike

    #1013116

    Hi Mike, sorry for the delay. It is the home page.
    Admin URL : https://edgeaccountants.co.za/wp-admin/

    Kind regards
    Jeanne

    #1013123

    Hi,
    Thank you, I was able to login, I first found that your “Google Analytics Tracking Code” script was in your “Google Maps API Key” field, I moved it to the correct place.
    I then found this error when I tried to edit your homepage:

    Failed to load resource: the server responded with a status of 404 (Not Found) /wp-admin/admin-ajax.php

    This means that your WordPress is missing this file. So you could try to reinstall your WordPress though your webhost options or via FTP.

    Best regards,
    Mike

    #1013124

    Hi Mike

    Thank you. If I reinstall WordPress, will I lose the work I have done in the Enfold theme?

    Kind regards
    Jeanne

    #1013144

    Hi,

    No, you can use ftp to overwrite the existing wordpress files – this won’t affect the plugin or theme data. You can follow the step-by-step guide here: https://codex.wordpress.org/Upgrading_WordPress#Step_1:_Replace_WordPress_files

    Best regards,
    Peter

    #1013330

    Hi

    I have reloaded wordpress and the enfold theme. I have started to made changes to the Home page and again the backend is hanging. It can not be a problem with wordpress. This is the third time I had this issue with the Home page. Can you please have a look at this Enfold theme?

    Kind regards
    Jeanne

    #1013333

    Hi
    I’ve noticed that when I make changes to the Home page the permalink changes from : https://edgeaccountants.co.za/home/ to https://edgeaccountants.co.za. How can we fix this?

    Regards
    Jeanne

    #1013346

    Hi,
    I have taken another look at the editing of the homepage and you are still getting this error

    Failed to load resource: the server responded with a status of 404 (Not Found) /wp-admin/admin-ajax.php

    are you using a security plugin, or some other security setting?
    Something is blocking access to your “/wp-admin/admin-ajax.php” for the homepage.

    The page /home/ is set as your frontpage in Enfold Theme Options > Frontpage Settings this is why the permalinks behave this way.

    Best regards,
    Mike

    #1013349

    Hi Mike

    I am not using any security settings that I am aware of. I’ve loaded the theme and it has no additional plugins. How will I find out and where do I look? Is it possible for you to check?

    Kind regards
    Jeanne

    #1013353

    Hi,
    This is odd issue, perhaps there is a conflict in your .htaccess file or in a webhost setting?
    What webhost are you using? We could take a look if you provide a login in the Private Content area.

    Best regards,
    Mike

    #1013357

    Hi,

    I am using Register Domain SA. Do you need access to my control panel?

    Regards
    Jeanne

    #1013378

    Hi,
    If you don’t mind, because I don’t see anything in the WordPress that could be causing this.

    Best regards,
    Mike

    #1013379

    Hi Mike

    Please refer to Private Content.

    Regards
    Jeanne

    #1013399

    Hi,
    Thanks for the login, I’m going to ask the rest of the team to also take a look why you are getting a 404 when editing your homepage.

    Failed to load resource: the server responded with a status of 404 (Not Found) /wp-admin/admin-ajax.php

    Best regards,
    Mike

    #1013403

    Hi,
    One suggestion is to ask your webhost to whitelist the “admin-ajax.php” file from the mod security rule.

    Best regards,
    Mike

    #1017422

    Hi
    My webhost made the changes as suggested by you and the Home page is loading. But, the Blog page does not display the image and mason gallery that I have at the backend. Why could this be?

    Regards
    Jeanne

    #1017476

    Hi Jeanne,

    Please try to unset the blog page under Appearance->Customize->Home Page settings. If the blog page is set there it won’t use the theme template.

    Best regards,
    Rikard

    #1025941

    Hi,

    How can I stop image with black overlay to turn light with mouse hover?

    Kind regards
    Jeanne

    #1026190

    Hi,
    You could use the “pointer-events: none” css, for example, try this css on your site and try to hover the two coffee cups with the dark overlay on your site:

    .post-entry-431 {
      pointer-events: none !important;
      }

    Best regards,
    Mike

    #1026306

    Hi Mike

    It works, thank you.

    Regards
    Jeanne

    #1026327

    Hi

    I want to have these images stretched over the page which I can do with a grid row. However I can not enable an overlay on images in a grid row. Is there a solution to this?

    Regards
    Jeanne

    #1026448

    Hi,
    There are a few different filters that you can apply to your images, here are some examples they can all be applied with the “:hover” rule.
    So for your stretched image with the coffee cup try this css:

    .flex_cell.avia-builder-el-6:hover { 
        -webkit-filter: brightness(.5);
        filter: brightness(.5);
    }
    

    Best regards,
    Mike

    #1026658

    Hi Mike

    Actually I want to have stretch images in a grid row with theme colour overlay (#4ecac2) or other colours, no highlights or brightness with hover. Is this possible?

    Kind regards
    Jeanne

    #1026979

    Hi,
    If it’s full width then it could be achieved with this css:

    .avia-builder-el-6:before {
        content:"";
        display: block;
        height: 100%;
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        background-color: rgba(78, 202, 194,.5)
    }

    if it’s not full width then it will be tricky to do so for mobile screens.

    Best regards,
    Mike

    #1029159

    Hi Mike

    This doesn’t work for me as it affects all the grid rows on the site. Could I have a darker overlay over the text on the images in the grid row on my home page? It is under heading “who our clients are”.

    Kind regards
    Jeanne

    #1029400

    Hi,
    Ok, the best option I can offer is to use a css filter on hover:

    .flex_cell.av_one_half:hover {
          filter: grayscale(100%) brightness(60%) sepia(100%) hue-rotate(128deg) saturate(1000%) contrast(0.6);
    -webkit-filter: grayscale(100%) brightness(60%) sepia(100%) hue-rotate(128deg) saturate(1000%) contrast(0.6);
    }

    It is very close:
    2018-11-02-222020
    I’ll tell you how to adjust it if you would like to get closer, you will notice there are two filters here “-webkit-filter” & “filter” they are both the same, -webkit-filter is for some browsers like Safari, and filter is for other browsers like Chrome, all of the settings are the same afterwards.
    These are the settings:
    grayscale – do not change
    brightness – choose a number up to 100%
    sepia – do not change
    hue-rotate – choose a number to match the color wheel below: 0 to 330
    saturate – do not change
    contrast – choose a fraction up to 1
    hue-color-wheel
    there is a little guessing involved, so just make small changes each time, and then test.

    Best regards,
    Mike

    #1029489

    Hi Mike

    I am not explaining clearly what I have in mind. I don’t want any hover effect. On the images, there is text i.e. Technology, Professional Services, etc. What I want is a light grey behind the text so that it is easier to read the text. In one of Ferdy Korpershoek tutorials, he used a code
    #top .av_header_transparency {
    background: reba(0,0,0,0.6);
    }
    I am not sure if I got the code right. I want something similar in that grid row, to read the text better, but not affecting the headers on the other pages.

    Kind regards
    Jeanne

Viewing 30 posts - 1 through 30 (of 35 total)
  • The topic ‘Updating page is hanging’ is closed to new replies.