Forum Replies Created

Viewing 15 replies - 31 through 45 (of 50 total)
  • I am able to access a banner image from your theme

    https://fortexeconsult.ph/wp-content/themes/fortech-consulting/assets/img/banner.jpg

    maybe you have copied your logo in wrong folder? I can take a look at it via team viewer or by directly accessing it.

    Still same, I am not sure what could be causing it. Just add some other image to img folder and try moving png file to different folder and see if it is accessible, otherwise it is hard for me to guess from here.

    No, logo size shouldn’t make it inaccessible.

    public_html/wp-content/themes/fortexe/assets/img

    That isn’t your theme folder, your theme folder is fortech-consulting. Be sure you are accessing right folder and images are present in it.

    Not sure, I tried to access your favicon images but they are inaccessible too.

     <link rel="apple-touch-icon" href="https://fortexeconsult.ph/wp-content/themes/fortech-consulting/assets/img/apple-touch-icon.png" sizes="152x152">
        <link rel="shortcut icon" href="https://fortexeconsult.ph/wp-content/themes/fortech-consulting/assets/img/favicon.png">

    Try saving images in different folder and see if you can access them by entering URL directly.

    Can you copy and paste file location from CPanel?

    Thread Starter user10522three

    (@zorrohere)

    I am using templates in WYSIWYG editor and it strips all the html except paragraph tags. From what I searched it’s not possible. So I worked around by separating excerpt into separate container. Though, if there is any solution I would like to know.

    PS: As I am typing this I think it was stupid of me to expect that opening tag will remain and rest of the excerpt will be removed.

    Thread Starter user10522three

    (@zorrohere)

    Hi again,

    Just to let you know, to change datepicker settings I didn’t have to override your entire script, I mean I tried to but I was getting errors such as

    ReferenceError: application_form is not defined[Learn More] simple-job-board-public.js:284:17

    So I just stopped overriding and set datepicker values in my default script.

        $('.sjb-datepicker').datepicker({
            dateFormat: 'dd-mm-yy',
            changeMonth: true,
            changeYear: true,
            minDate: "-60Y",
            maxDate: "-17Y",
        });
    Thread Starter user10522three

    (@zorrohere)

    EDIT: duplicate post.

    Thread Starter user10522three

    (@zorrohere)

    Thanks alot

    Thread Starter user10522three

    (@zorrohere)

    I will see what suits me best and will contact you if required. Thanks a lot.

    Thread Starter user10522three

    (@zorrohere)

    Hi,

    I have only 1 opening tag in header and 1 closing tag in footer. Things that I have tested are,

    1. My theme is consistent throughout site.
    2. Theme is consistent while viewing single job post.
    3. Theme is consistent while viewing archived job posts in list view settings.
    4. It shows problem while viewing archived job posts in grid view and I have also traced back to the missing closing div as i have replied previously.
    5. I am not overriding any template so far in my theme.

    Now coming to other themes,
    Twenty Fifteen
    1. While viewing archived posts, footer is contained in div with id content.
    2. While viewing single job post footer is outside of div with id content.
    3. Following is the result of missing div tag I reached after eliminating each pair of opening and closing div tags.

    <!-- start Jobs Listing: List View -->
        <div class="grid-view">
            
        <div class="row">
    
        </div> <!-- end Jobs Listing: List View -->

    Twenty Sixteen

    1. While viewing archived job posts, footer is contained in div with class site-inner.
    2. While viewing single job post, footer is contained in div with class site-inner as well.
    3. After eliminating you can see there is still missing closing tag,

    <!-- start Jobs Listing: List View -->
    <div class="grid-view">
    <div class="row">
    
     </div> <!-- end Jobs Listing: List View -->

    Twenty Seventeen
    1. While viewing archived job posts, footer is contained by div with id of content.
    2. While viewing archived job posts, footer is contained by div with class of site-content-contain.
    3. Again missing closing tag,

    <!-- start Jobs Listing: List View -->
        <div class="grid-view">        
        <div class="row">
    
        </div> <!-- end Jobs Listing: List View -->

    If that’s not enough, Just let me know at what part you add this div with class row so I can just edit it myself

    Thread Starter user10522three

    (@zorrohere)

    After eliminating div elements one by one I came across the issue in grid view,

       <!-- start Jobs Listing: List View -->
        <div class="grid-view">        
        <div class="row">
    
        </div> <!-- end Jobs Listing: List View -->

    You can see that one closing tag is missing, I also change view to list view and list view works fine, will be great if you tell me where I can add this missing tag to fix the issue.

    Well that’s strange behaviour but you can add following events to fix it.

    onchange="this.setCustomValidity(\'\')" oninput="this.setCustomValidity(\'\')"

    By adding both these events the message string is set to empty and it won’t show up unless field is invalid. I have tested it in Chrome, IE and Firefox so I think it should work for fine for you.

    . '<input oninvalid="this.setCustomValidity(\'Please Enter valid name\')" type="text" name="' . $name . '" class="form-control ' . $required_class . '" id="' . $id . '" ' . $is_required . ' >'

    Above is the change I have made on line 75, you need to escape quotes using backward slash.

    Take advantage of templating feature as suggested in very first response, otherwise you will lose changes on every plugin update.

Viewing 15 replies - 31 through 45 (of 50 total)