43 comments found.
I love the template, for the HTML version will I need any additional software to allow there to be a user datebase for the profile and such?
Hi horsechelle,
You’re asking about CMS functionality for HTML template. To get HTML work as a CMS you need to have some skills in development. Another option is to use WordPress theme https://themeforest.net/item/petsitter-job-board-responsive-wordpress-theme/9206865
Best Regards!
Dan
Hi, great job! You have same template for wordpress which is more better than this one. Unfortunately i need pure html only, do you plan update it?
Hi hipik,
Thanks for your interest!
Unfortunately, we don’t have such plans.
Best Regards!
Dan
Hi Dan, I was surfing the Live Demo but I didn’t see if there’s a way to charge some fee, or cost to see the details of the sitter. So for example, Person A that has a dog and want to work with Siiter B, how the things are in the live demo, the could see each other. So there’s a way to avoid person A to see siiter B unless he pays a membership that unlock the information?
Thanks,
Hi redlineco,
Thanks for reaching out!
It can be achieved with third-party plugins only.
Please note that you’re on HTML version and WP version is here.
Best Regards!
Dan
Have Any fully Layered PSD files included?
Hi iwant0557,
Yes, PSD files are included. You can check them here https://themeforest.net/item/petsitter-responsive-html5css3-template/screenshots/7424737
Best Regards!
Dan
Hello, my questions are:
1) What kind of frameworks does the theme use? bootstrap, jquery, etc. 2) After buying the theme, can I modify whatever I want from the code (I know I can but I mean related to licensing)? header, footer, layout in general, because I’d like it to be adapted to my current site (a forum will be a new section of my site).
Thank you
Hi bergarza,
1) Yes, Bootstrap 3 and jQuery were used. Also please check Source and Credits section.
2) Yes, sure, you can modify the code.
Please keep in mind that this is HTML version. If you need WordPress please check it here https://themeforest.net/item/petsitter-job-board-responsive-wordpress-theme/9206865
Best Regards!
Dan
Hello i have a online booking site for pet groomers and pet sitters. I am using opencart. Can this theme be used with opencart? I love this theme and it is actually what I am looking for. I would be willing to pay a customization fee if it is possible to be used on opencart. thx
Or if it is not possible to work with opencart is it possible to add online booking capabilities to this theme? thx
Hi yavenay,
Unfortunately, PetSitter is only available as a WordPress theme https://themeforest.net/item/petsitter-job-board-responsive-wordpress-theme/9206865
Also there is no Booking capabilities available with the current theme version.
Best Regards!
Dan
Hi, is it possible that the responsive submenu in the dropdown menu are automatically opened?
Hi sean83,
I’m not sure I got your question correctly. Do you mean it should be expanded on mobile devices?
Also if you have any questions please create a new ticket on our support site http://danfisher.ticksy.com
Best Regards!
Dan
Hi Dan, love this template but the magnific popup won’t work for me in Safari on iOS for the portfolio. Any suggestions?
Hi janessaallen,
Just checked on iPhone in Safari and I didn’t notice any issue.
Please check live demo http://petsitter.dan-fisher.com/portfolio-3cols.html and original files.
If you need more help please create a new ticket on our support site http://danfisher.ticksy.com
Thanks!
Dan
Hello I am very much interest in this theme. However does your theme work with Joomla 3x?
Hi zbrandia,
This is an HTML template, not a Joomla theme. If you interested in CMS theme take a look at WordPress theme http://themeforest.net/item/petsitter-job-board-responsive-wordpress-theme/9206865
Thanks!
This template is made with love ! I have been looking for a job board template, all those I found are Zero quality, useless for a professional site . Even if this template is specialized for pet sitting but i will modify it to be used in a regular job board. Is the branding (colors) modifiable ?
Hi sherdev,
Thanks for your kind words!
You’re right, it can b easily used for any kind of job board sites. And yes, you can easily change the branding color. Just follow instructions that you can find in Documentation > ‘How to create your own color skin’ chapter.
If you have any questions please feel free to create a new ticket on our support site http://danfisher.ticksy.com
Thanks!
Hi Dan
I am currently version 1.3.1 – July 16, 2015
With the new update (Version 1.4.0) is it possible to update the changed files only so as not to affect the site, if so can you confirm the exact files I need to swap out and folders they are in.
Thanks Whappy
Hi whappy,
In Documentation/history.txt file you can the list of all changed/edited/removed files. Regarding HTML files just check Isotope Javascript includes at the bottom of the page.
If you have any questions please open a new ticket on our support site http://danfisher.ticksy.com
Thanks!
Hi Dan I have downloaded Version 1.4.0 and have noticed the Owl Carousel isn’t working its not showing any pictures at all ( e.g on the downloaded template page portfolio-single-halfwidth.html) Thanks Whappy
Hi whappy,
Thanks for letting me know. Just fixed. Update will be available in a few hours.
Thanks!
Hi – when I test the newsletter sign-up, the email that is generated does not include the email address entered. I receive the email but that field is blank. It seems maybe something may need to be changed in the PHP file but I assumed that part would automatically work.
Hi acomtois,
Please open php/newsletter-form.php and on line 15 and 20 change this
$_POST['subscribe-email']
to this
$_POST['email']
If you have further questions please create a new ticket on our support site http://danfisher.ticksy.com
Thanks!
Hi Dan – I created an account on your ticket system and attempted to submit a ticket. I have my purchase code from my download and when I attempt to submit the ticket, it tells me my code is not valid. I copied this right from my downloads page. Anyway, these lines of codes are not in my PHP file so I will show you here what I have (sorry to put it here):
<?php
session_cache_limiter('nocache');
header('Expires: ' . gmdate('r', 0));
header('Content-type: application/json');
// Enter your email address
$to = 'angela@smartnetnh.com';
$subject = 'Detector Dog NE Newsletter Subscriber';
if($to) {
$name = 'New Subscriber';
$email = $_POST['email'];
$fields = array(
0 => array(
'text' => 'Email',
'val' => $_POST['email']
)
);
$message = "";
$message .= "Congratulation!<br />\n";
$message .= "You've got a new subscriber.<br />\n";
foreach($fields as $field) {
$message .= $field['text'].": " . htmlspecialchars($field['val'], ENT_QUOTES) . "<br />\n";
}
$headers = '';
$headers .= 'From: ' . $name . ' <' . $email . '>' . "\r\n";
$headers .= "Reply-To: " . $email . "\r\n";
$headers .= "MIME-Version: 1.0\r\n";
$headers .= "Content-Type: text/html; charset=UTF-8\r\n";
if (mail($to, $subject, $message, $headers)){
$arrResult = array ('response'=>'success');
} else{
$arrResult = array ('response'=>'error');
}
echo json_encode($arrResult);
} else {
$arrResult = array ('response'=>'error');
echo json_encode($arrResult);
}
?>
It’s strange that you can’t create a ticket.
Anyway to fix your issue open js/newsletter.js file and on line 50 change this
"email": $("#newsletter-form #email").val()
to this
"email": $("#newsletter-form #subscribe-email").val()
Thanks!
That did the trick! Thanks so much and thanks for such speedy replies!
Hi great template thank you
A little help if you can with creating an internal link from say homepage picture to a set part of the gallery e.g so gallery loads on Cats rather than all ?
e.g href=”portfolio-4cols.html#cats if you know what i mean
Thanks Whappy
Hi Whappy,
I guess you mean something like this http://isotope.metafizzy.co/filtering.html#url-hash
Thanks!
Hi Dan, In the “Portfolio Full Width” page is there a way to put a horizontal and vertical gap between each of the images?
Hi bluemonsteronline,
Yes, it can be done with custom CSS.
Thanks!
Dan, Many thanks for your quick response especially as it’s a Saturday.
Visibility for Jobs :: Is a option for Job-Visibility available? Only a list of jobs to be visible for all. Only Resumes should see all the data (Contact, ...) Thanks
Hi FraLa,
As I understand it’s WordPress theme related question. Anyway, there is no visibility option for Jobs without customization or third-party add-on.
Thanks!
Hey, Really Nice template, where can I check the people who subscribed using the subscription form?
Hi uG0neMad,
To get support please created a new ticket on our support site http://danfisher.ticksy.com
Thanks!
HI,
What is the best version? This HTML5/CSS3 or WordPress version?
All version I Can use English and Portuguese? All version i canuse Paypal?
Thanks
Hi andmor,
There is no ‘best’ or ‘worst’ version. Please read this explanation http://themeforest.net/forums/thread/difference-between-a-theme-and-a-template/66047 Depends on what you need choose your version.
As I understand you need WordPress version but it’s up to you.
Thanks!
HI Dan i purchased this template, it is awesome. i want to translate it to spanish, i edited the petsitter.pot file with poedit, save it as petsitter-es.mo and uploaded the file in this folder /public_html/resuelvefacil.com/wp-content/themes/petsitter/languages
did i miss something?
Answered on ticket.
Hi,
How do I run the Newsletter form?
Hi crush009,
Newsletter form isn’t working in current version. But it will be added in version 1.3.0
Thanks!
Ok when the version 1. 3. will be available ?
Hope to release it next week.
Thanks!
Hi crush009,
PetSitter 1.3.0 with working newsletter form is already here.
You’re welcome to buy 
Thanks!
I tried to open using Dreamweaver the page is always loading and hang, how to solve this problem.
Hi SherlynChen,
Sorry, but I didn’t test it in Dreamweaver. Some years ago I used Dreamweaver for sites creation and in a my opinion it’s a far away to be the best tool for site editing/creating.
I’m working in SublimeText2 editor and recommend you to use something similar.
Thanks!