user10522three
Forum Replies Created
-
Forum: Fixing WordPress
In reply to: Logo png not visibleI 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.
Forum: Fixing WordPress
In reply to: Logo png not visibleStill 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.
Forum: Fixing WordPress
In reply to: Logo png not visibleNo, logo size shouldn’t make it inaccessible.
Forum: Fixing WordPress
In reply to: Logo png not visiblepublic_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.Forum: Fixing WordPress
In reply to: Logo png not visibleNot 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.
Forum: Fixing WordPress
In reply to: Logo png not visibleCan you copy and paste file location from CPanel?
Forum: Developing with WordPress
In reply to: Setting $stripteaser to true strips formatting as wellI 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.
Forum: Plugins
In reply to: [Simple Job Board] Setting date limitHi 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", });
Forum: Plugins
In reply to: [Simple Job Board] Setting date limitEDIT: duplicate post.
- This reply was modified 7 years, 4 months ago by user10522three.
Forum: Plugins
In reply to: [Simple Job Board] Setting date limitThanks alot
Forum: Plugins
In reply to: [Simple Job Board] Missing closing div tag in archive-jobpost.phpI will see what suits me best and will contact you if required. Thanks a lot.
Forum: Plugins
In reply to: [Simple Job Board] Missing closing div tag in archive-jobpost.phpHi,
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 idcontent
.
2. While viewing single job post footer is outside of div with idcontent
.
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 classsite-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 ofcontent
.
2. While viewing archived job posts, footer is contained by div with class ofsite-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 myselfForum: Plugins
In reply to: [Simple Job Board] Missing closing div tag in archive-jobpost.phpAfter 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.
Forum: Plugins
In reply to: [Simple Job Board] How to change required filed text in application form?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.
- This reply was modified 7 years, 5 months ago by user10522three.
Forum: Plugins
In reply to: [Simple Job Board] How to change required filed text in application form?. '<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.