Discussion on Kids Zone - Children WordPress Theme

Discussion on Kids Zone - Children WordPress Theme

Cart 1,856 sales
Well Documented

designthemes supports this item

Supported

This author's response time can be up to 1 business day.

992 comments found.

Hi, how do I display social icons on the site? Can I manipulate their positioning? I tried the Buddha panel. Think I need to do something else too.

Hi!., You need to enable it from Buddha Panel -> General -> Sociable. You cannot manipulate the position from buddha panel. This is the shortcode [dt_social title=’We are Social’ /] we have used in the demo site. We used it in the footer widgets.

Great theme, thank you!

I just have one question, can I import the “dummy data” for the sliders so I can see how you did them on your demo site? I imported the dummy data that was included in the theme download and everything is there, except for the LayerSlider WP and Revolution slider content. I can’t seem to find any import files for those, can you please provide them?

Thanks in advance!

Hi!., It would be a custom work for us. It takes 2 -3 hours to complete. We charge $25/hour for custom works. Let us know if you are interested.

Thanks so much! – The Layer Slider import worked perfectly and helped me to see how it works.

Thanks again for the custom work as well, it was well worth it and now my gallery works exactly how I want it to!

Thank you!

Hi! Thanks for the update :-) Let us know, if you find any issues in future.. Note: If you like our theme and support, please feel free to give us your best rating (5/5 stars)!!

Is there an easy way to remove the thumbnail image in the post list?

Hi.,

If you want to remove featured image from individual post – refer https://www.dropbox.com/s/lujynhmjt17hlsg/remove-img.png (or) If you want to remove featured image for all posts , have to customize the code. So send your needs clearly

Let us know, if you find any other difficulties!

I recently downloaded your Kidszone theme and the short codes are not working. I have copied and pasted the shortcode provided in the theme into the wordpress editor and pasted it in as text and it still is not working.

Hi!., Please mail us your site credentials (WP & FTP access logins) immediately via the right bottom form located @ http://themeforest.net/user/designthemes So that, we can check and have a clear look on our end. Then we’ll help you get rid of it ASAP !!

Hello again :) I need your help one more time :P…. I want to change the size of the “clouds” (below the slideshow). How I can do that?? :)

Thank you very much :)

Hi! Go through the following instructions you get a clear view:-

(i) Those images are available icons – refer http://wedesignthemes.com/themes/kidszone/shortcodes/miscellaneous/ (Service Type I) (ii) But you can use font awesome icons – http://wedesignthemes.com/themes/kidszone/shortcodes/miscellaneous/ (Service Type II) Font awesome icons – http://fortawesome.github.io/Font-Awesome/icons/

Let us know, if you find any other difficulties!

hello again!!...i resize the images well…but now the alligment of images (clouds and service-icons) had change…how i can fix the alligment (the url of site is “http://ohbaby.viralpassion.gr/”) Thank you!

Hi! Kindly, follow the instruction will help you get a clear view.

1) Get into your theme-directory through, “wp-content/themes/kidszone/css/shortcode.css” in line-no:103 (approximately) (or) try to find class name ”.dt-services .dt-service-bg > span” and replace it with below given code:

.dt-services .dt-service-bg > span { display: inline-block; height: 100%; margin: 0px 0px 0px 0px; width: 100%;}

2) And also add this class in shortcode.css,

span.icon-track { margin-top: -12px !important;}

If you find any difficulties!! Please mail us your site credentials (WP & FTP access logins) So that, we can check and have a clear look on our end. Then we’ll help you get rid of it ASAP !!

Hi!
Is there any way to change the height’s layer slider?
Thanks!

Hi!., You can change the height of the layerslider from Dashboard -> Layerslider WP -> Specific Slider -> Slider Settings -> Slider Height. Let us know, if you find any other difficulties!

Perfect! thanks!

Hi! Thanks for the update :-) Please rate our Theme, if you’ve not done it yet! 5/5 star

Hi

Great theme !

I just got this error since yesterday on the woocommerce category widget : ” Object of class WP_Error could not be converted to string in”..kidszone/framework/register_public.php on line 67.

Here is the page : http://www.miochesetmechants.fr/enfants/?product_cat=decopatch

It was working fine until a added new categories OR changind a category name and slug.Can’t tell which action broke it .

How can I fix it ?

Hi!., Please mail us your site credentials (WP & FTP access logins) immediately via the right bottom form located @ http://themeforest.net/user/designthemes So that, we can check and have a clear look on our end. Then we’ll help you get rid of it ASAP !!

done

Hi!., We have fixed the issue. Kindly, check it out now! Let us know, if you find any other difficulties!

Hi

I am trying to turn the service icons on the home page into links to direct visitors to the different categories of products. I have tried following the directions you have put up but can’t seem to get it to work.

Here is the code that I wrote on the Theme Short Code .php page:
 #THEME SERVICE SHORTCODE...
if(!function_exists('dt_theme_service')) {

    function dt_theme_service($atts, $content = null) {
        extract(shortcode_atts(array(
            'icon' => 'icon-skillset',
            'title'    =>    '',
            'link' => '',
            'type' => ''
        ), $atts));

        $out = '';

        if($type != 'custom') $icon = 'fa '.$icon;
        $out .= '<a href="'.$link.'">';
        $out .= '<div class="dt-services">';
            $out .= '<div class="dt-service-bg">';
                $out .= '<span class="'.$icon.'" />';
            $out .= '</div>';

            if($title != NULL) $out .= '<h2>'.$title.'</h2>';

        $out .= '</div>';
        $out .='</a>.>';
        return $out;
    }
    add_shortcode('dt_theme_service', 'dt_theme_service');
}
And this is the code I have done for my shortcode.css page:
/*----*****---- << Services >> ----*****----*/
    .dt-services { width:100%; float:left; display:block; text-align:center; }
    .dt-services h2 { font-size:20px; margin-top:11px; display:inline-block; width:100%; }
    .dt-service-bg { background-position: 0 0; background-repeat: no-repeat; background-size:100% auto; display:block; float:left; text-align:center; width:100%; } 

    .dt-services .dt-service-bg > span { width:100%; height:100%; display:inline-block; }
    .dt-services .icon-skillset { background:url(../images/maths.png) center center no-repeat; link:"http://www.organisedteacher.co.nz/product-category/maths/"}
    .dt-services .icon-activity { background:url(../images/reading.png) center center no-repeat; link:"http://www.organisedteacher.co.nz/product-category/reading/"}
    .dt-services .icon-track { background:url(../images/writing.png) center center no-repeat; link:"http://www.organisedteacher.co.nz/product-category/writing/"}
    .dt-services .icon-bus { background:url(../images/enquirery.png) center center no-repeat; link:"http://www.organisedteacher.co.nz/product-category/inquiry/"}

Cheers Mead Norton

Hi!., You need to add links to the service icons in the home page? If yes, Please mail us your site credentials (WP & FTP access logins) immediately via the right bottom form located @ http://themeforest.net/user/designthemes So that, we will update it for you!.,

Hello,

The issue returned, see my previous comments. Please have a look at here, the product minymo body pink.

http://soitsme.eu/product-categorie/merken/minymo/

Thanks

Hi!., The issue has been resolved. We just updated the product and the error fixed. May be the price might not be updated. Now its updated.

Yes, I know that just updating the product solved the issue. But I want to know what’s going wrong.

The PHP code line is from WC and it gets the prize excl or incl tax. Next time I will first check what’s in the DB exactly and compare it with another product.

Hi!., Ok, please check and let us know.

Hello For some reason, only one version of the SHOP menu tab shows.

How would I get the others to show? See here : http://prntscr.com/487bth

Hi!., Kindly!., Check the attached screenshot for creating shop page with sidebars. After the page is created, you can add it to the menus from Appearance -> Menus. https://www.dropbox.com/s/7pbcu37pnvwpt0l/shop_page.png Let us know, if you find any difficulty!

I found the instructions to replace the shape-one.png with my custom image (a simple circle). It’s all set up, but it’s not showing up. Still the ‘cloud/flower’ images.

I really need help on this ASAP. We need to go live with this site soon.

Also surprised the ‘support’ tab just reroutes to ‘comments’. Not a very effective way to convey urgent requests.

Any way to expedite this?

Thanks.

toggerybob@gmail.com

Hi!., Please mail us your site credentials (WP & FTP access logins) along with an image that to be replaced for shape-one.png. immediately via the right bottom form located @ http://themeforest.net/user/designthemes So that, We will replace that for you.

Sent. Thanks.

Hi!., When we go to your site admin area, http://mrrwebdev01.org/wp-admin/ we get an error “Your access to this site has been limited”. Update the page so that we can view it.

I would like to purchase the theme. Please advise if you could provide me the documentation for a read up first. Thanks

Hi!., Because of some license issue, we have not included our theme demo images. If you need, you have to purchase those images.

Thanks for replying.

1. Please advise where those images are from so I could purchase them. 2. May I have a copy of your written documentation, besides those on youtube HD?

Hi!., Please purchase the theme and get back to us so that we will send you the purchase links of kidszone images. Also the written documentation will be sent to you along with the theme files once you purchase it.

Hi, Revolution Slider is not working. Just “blink” onto the page. I’m not sure when exactly this started happening (maybe after some Chrome update), but Caption effects are not working in Chrome. I opened my website up in Internet Explorer, Firefox and it’s working normally.

Hi!., Please mail us your site credentials (WP & FTP access logins) immediately via the right bottom form located @ http://themeforest.net/user/designthemes So that, we can check and have a clear look on our end. Then we’ll help you get rid of it ASAP !!

I´ve just found in codecanyon Discussion on Slider Revolution about this issue. “please update to version 4.5.95 since the update of Google Chrome the old version did not supported any more the other animations.” How can I get this update?

Hi!., Please mail us via the right bottom form @ http://themeforest.net/user/designthemes So that, we can send revolution slider updated version.

Hello!
I want to remove the author’s information which appears in posts pages.
Im doing it directly in the posts > “especific post” > disable author’s info. It doesn’t work.

Thanks

Hi!., The blog shown in the home page comes from the shortcode. You need to remove it from the shortcode function. We have removed it now. Kindly, check it out now! Let us know, if you find any difficulties!!

Perfect!

Hi! Thanks for the update :-)Please Rate our Theme if you have not done it yet! 5/5 star

Hi!
Below the bar which contains the logo, there’s a bar which in its left side says the title of the section where you are, and in the right side there’s route links.
1) I want to change the color and tipography of this left side title and put it in spanish.
2) I want to take out the right side which explains the route links.
Thank you!

Hi! Go through the following instruction you get a clear view.

1) You can the typography of that title from Buddha Panel -> Appearance -> Typography -> H1 Font Family, Size and Color

2) Removed the root links page from your site. Please check it now.

Let us know, if you find any difficulty!

Hi!, it stills in english:
http://mundopetit.cl/ss/2.png
Thanks!

Hi!., Go through the following instruction you get a clear view. You can change it from the file wp-content/themes/kidszone/framework/woocommerce/index.php line no: 133 Let us know, if you find any other difficulties!

Just trying to get any shape but these clouds/flowers. I thought I saw something in the doc before, but can’t find it now.

Also being redirected to ‘comments’ from the ‘support’ page. Not good…

Ideas? Thanks.

Hi!.,

This is the shortcode used for service. If you not satisfy , Explain in detail with some screenshots. So that we can clarify you.

?? Hi!.,

This is the shortcode used for service. If you not satisfy , Explain in detail with some screenshots. So that we can clarify you. ??

Hi!., Your query regarding changing the image shapes is continued in another comment of yours. Check the update in that comment.

Some questions:

I want to change the top-bar and add some items, but without changing the header.php. Why? Next update the change is gone. Is there any other way to do this?

In the top-bar, I want only the phone number aligned to the left. What extra CSS do I need?

What’s PayPal plugin do you support, recommend?

Thank you.

Already see other comments, any feedback on these questions?

Hi! Go through the following instruction you get a clear view. 1) Copy header.php file from theme-directory and paste into child theme and do custom works. This custom work will never affect while theme updates.

2) Please get back to us with your WordPress and FTP Login Credentials.We have to customize the code to achieve this

3)Our Theme doesn’t carry any payment module integration, We suggest the following plugins: http://wordpress.org/plugins/wordpress-simple-paypal-shopping-cart/ http://wordpress.org/plugins/wordpress-easy-paypal-payment-or-donation-accept-plugin/ http://wordpress.org/plugins/wp-ultra-simple-paypal-shopping-cart/ http://wordpress.org/plugins/nice-paypal-button-lite/

Let us know, if you find any difficulty!

Hi, i have problem where copy is not styled according to

tag the moment i use a column shortcode. See the contact page, i have to columns next to each other where it would like to have address and contact details not in one line, but styled as per paragraph styling. In the dashboard, the copy is not in one line, but on the live site, it is styled in one line. This only happens when i use column shortcode…

My contact page copy below:

[dt_sc_one_half first]

Our address details are as follows:

Fancy Baby Products CC P.O. Box 616 Edgemead Cape Town 7407 South Africa

/dt_sc_one_half

Telephone:

044 873 2589

Our office hours are from 8am – 12 noon Monday – Friday.

[/dt_sc_one_half]

[dt_sc_clear /]

If you have specific questions or comments for us we’d love to hear from you. Please fill in our contact form and we will get back to you as soon as possible.

[dt_sc_one_half first]

[contact-form-7 id=”9” title=”Contact form 1”]

/dt_sc_one_half

My problem is that the wording in the output you provided us is suppose to have line breaks. Presently the address details are all in one line instead of having line breaks like below:

Fancy Baby Products CC P.O. Box 616 Edgemead Cape Town 7407 South Africa

These line breaks seem to be thrown out or ignored the moment a column shortcode is used.

Sorry here is better representation:

Fancy Baby Products
CC P.O. Box 616
Edgemead
Cape Town
7407
South Africa

Hi., Thanks for your patience anyway!!

Hope that the following instruction & screenshot will help you get a clear view.

(i)Go to page content area Text tab – refer https://www.dropbox.com/s/vs67g7h5qns2wzm/text-tab.png and enter Fancy Baby Products
CC P.O. Box 616
Edgemead
Cape Town
7407
South Africa
(ii) After that change to visual tab and update page (iii) view your page

(OR) Send your wordpress and ftp login details we will create [address] shortcode to display one by one (OR) use following shortcodes A Block, East Street, London, BCA, UK/dt_address /">dt_email title=’Mail’ id=’enquiries@gmail.com’ /

Let us know, if you find any difficulties…!

Hi, i have problem where copy is not styled according to

tag the moment i use a column shortcode. See the contact page, i have to columns next to each other where it would like to have address and contact details not in one line, but styled as per paragraph styling. In the dashboard, the copy is not in one line, but on the live site, it is styled in one line. This only happens when i use column shortcode…

My contact page copy below:

[dt_sc_one_half first]

Our address details are as follows:

Fancy Baby Products CC P.O. Box 616 Edgemead Cape Town 7407 South Africa

/dt_sc_one_half

Telephone:

044 873 2589

Our office hours are from 8am – 12 noon Monday – Friday.

[/dt_sc_one_half]

[dt_sc_clear /]

If you have specific questions or comments for us we’d love to hear from you. Please fill in our contact form and we will get back to you as soon as possible.

[dt_sc_one_half first]

[contact-form-7 id=”9” title=”Contact form 1”]

/dt_sc_one_half

Hi, Does the theme options allow for style colour changes or is limited to the 3 colour schemes only? Thanks.

Hi!., From theme options you can choose only the 3 skins that are available. But you can create new skins through the files. We can tell the process of creating new skins. But you need to change the colors as per your need.

By new skins you mean custom css, yes? Thanks

Hi!., Yes, you can easy to create new skins. Your work is only going to change colors as you wish. We will guide you to achieve.

by
by
by
by
by
by

Tell us what you think!

We'd like to ask you a few questions to help improve ThemeForest.

Sure, take me to the survey