mktunicus
Forum Replies Created
-
Forum: Plugins
In reply to: [Contact Form 7] Emails are not getting to admin and candidateHi,
So you got any solution for itForum: Plugins
In reply to: [Page scroll to id] Scroll issue on my pageHi,
I did the 1 step, I added the class ps2id. The first time it refreshes and later it scrolls properly.
https://www.unicusinteractive.com/ai-augzoom
Same way on the above page on “Get Started” button it is shown an issue.
Hi,
Thank you so much Prathamesh.Forum: Plugins
In reply to: [Page scroll to id] Mousewheel scroll effect only to first two sectionHi,
For mousewheel functionality i added below code on my footer.php
<script>
(function($){
$(window).load(function(){
/* mousewheel/keyboard section scrolling */
$(document)
//custom event
.on(“scrollSection”,function(e,dlt){
//sel variable is elements selector
//change to a more specific selector if needed (e.g. “.menu-item ._mPS2id-h”)
var sel=$(“._mPS2id-h”);
if(!$(“html,body”).is(“:animated”)){ //scroll one section at a time
//set current element index (change to a more specific selector if needed)
var i=sel.index($(“.mPS2id-highlight-first”));
//check first and last elements to prevent scrolling and scroll to next/previous sections
if(!(i===0 && dlt>0) && !(i===sel.length-1 && dlt<0)) sel.eq(i-dlt).trigger(“click”);
}
})
//mousewheel event
.on(“mousewheel DOMMouseScroll”,function(e){
e.preventDefault();
//send normalized mousewheel delta (-1/1) to scrollSection
$(this).trigger(“scrollSection”,((e.originalEvent.detail<0 || e.originalEvent.wheelDelta>0) ? 1 : -1));
})
//keyboard arrows event
.on(“keydown”,function(e){
var code=e.keyCode ? e.keyCode : e.which;
if(code===38 || code===40){ //up, down
e.preventDefault();
$(this).trigger(“scrollSection”,(code===38 ? 1 : -1));
}
});
});
})(jQuery);
</script>But mousewheel scroll effect not came. Below is the url:
http://demo.nyc-it.com/testingForum: Plugins
In reply to: [Simple Job Board] Job page modificationHi,
ok i got it. On joblist how to rename the job-title name?
Forum: Plugins
In reply to: [Simple Job Board] Job page modificationHi,
I created a page for job listing as “http://yoursite-url.com/careers” then I want my job detail url should be “http://yoursite-url.com/careers/human-resources” but the url comes in “http://yoursite-url.com/jobs/human-resources” this manner due to archive. So for that i have to go to Job Board> Settings> General> Jobpost Custom Post Type Slug as careers.
Forum: Plugins
In reply to: [Simple Job Board] Job page modificationHi,
That i know [jobpost] this will create a listing on a page. But automatically a job page is created for i that what should i doForum: Plugins
In reply to: [WP Google Search] Can i get php codeHi,
Thank you so much I added the php code on header and it worked fine. It is showing me no result means my website is not indexed so right. On more thing if you review this website
http://vertebrand.com/ on its google search you can see web and image tab. Will it be possible to implement same tab on your plugin.Forum: Plugins
In reply to: [WP Blog and Widgets] How to highlight tag on BlogHi,
We buy your pro version.
So now can you tell us how to customise the cssForum: Plugins
In reply to: [Simple Job Board] First time my form doesn’t get submitHi,
ok, One more thing for email content modification for that i have to go to class-simple-job-board-notifications.php right. Do we have any other simple method eg. any add-ons available for email template
Forum: Plugins
In reply to: [Simple Job Board] First time my form doesn’t get submitHi,
After doing so many testing finally my form gets submitted on the first time, but I can’t see any loader. I want loader after submitting the form so can you please guide me how to add loader.Forum: Plugins
In reply to: [Simple Job Board] How to add Job feature elements on Job listing pageHi,
Yes on admin page i.e on backend I know this feature is there but on front end of Job listing page there I want to replace Posted day with an element of Job feature.
Forum: Plugins
In reply to: [Simple Job Board] Applicant mail yet not receivedHi,
Job Board Settings > Enable the Applicant Email Notification this section is on
Forum: Plugins
In reply to: [Simple Job Board] Is their any facility to reorder the Job Postingok, thank you
Forum: Plugins
In reply to: [Simple Job Board] change wording of applicant messageHi,
So if we have to do changes on the email content then we have to edit this file?
Also is there any other simple option apart from editing this class-simple-job-board-notifications.php file?