Discussion on KidsWorld - Kindergarten and Child Care WordPress Theme

Discussion on KidsWorld - Kindergarten and Child Care WordPress Theme

Cart 1,018 sales
Recently Updated
Well Documented

Softwebmedia supports this item

Supported

787 comments found.

Hello, Can you tell me where to add the code for the costume advertise large widget, so that the link opens in a new page – ‘target = ”_ blank”? Thanks in advance

Hello @bizeko,

You can use “HTML Content” box with anchor code target blank to open link in new page.

Thank you.

Thank you for your reply. I don’t know how I didn’t see it, and it’s that simple.

Hi! Is there a way to remove the PAST EVENTS from displaying as a tab on the Events Page? I don’t have a need for visitors to see past events, so I have deleted them, but I can’t find an option to remove that tab so that it doesn’t go to the /events-2 slug. Here is a link to the page… Please advise. Thanks! https://dwightsummercamp.org/events/

Hello @tstubbs,

You can remove horizontal navigation on the portfolio list page to hide past events.

Your theme support license is expired. Please renew it.

Thank you.

Hello,

the current version of Kids World (2.6.8) contains a security vulnerability plugin:

WPBakery Page Builder (6.7.0 -> 6.8.0)

Will this vulnerability be closed soon?

Regards, Oliver

Hello Oliver,

We will update the theme with the latest version of the WPBakery plugin next week.

Thank you.

Hi,

I would like to know if it is possible to display a menu item only if a user is connected.

Basically, I would like to display a “Profile” menu item (with an icon, such as other menu items) but only if the user is connected.

This item would respect the colour scheme of the theme customization.

Hi @_Studio68,

This feature is only possible with custom coding.

Thank you.

Google Maps JavaScript API error: InvalidKeyMapError for some reason, seems that the google maps api key is not taken on contact page. the key as parameter is not the one I configurated in customizer. everything is up to date, cache is clear, from plugin cache and server cache. Any aditional step here ?

Hello @Alcanix,

I am very sorry for the inconvenience. It seems metabox plugin did changes in google map api settings. Please give me some time to find metabox latest version compatible google map script to fix the issue.

Thank you.

Hello @Alcanix,

We will fix this issue in the next theme update. You can quickly solve it by following steps.

1. Go to Admin > Appearance > Theme Editor

2. Select “Kids World” from the top right dropdown

3. Click on the header.php file.

4. Go to line #37, which has below code

‘type’ => ‘map’,

delete above line

5. Save changes and refresh map page.

Screenshot with steps: https://paste.pics/edit/FC2DB

Thank you.

ok perfect, issue solved thx.

Hi,

Is there a way to change the label /school-events/ in the URL so we can set another one (I’m thinking the name of one of the page would be great).

So instead of having website.com/school-events/event-1 ; we would have website.com/my-events/event-1.

Ok,

So I changed line 159 of pre-school-shortcodes/post-types/register-post-type.php with one of my page’s slug.

I went back to the permalinks menu (of the wordpress admin interface), hit the save button just to make sure that all caches linked to permalinks are flushed.

Seems to be working smoothly.

Hello @_Studio68,

You can use filters to change slug name like ‘school-event’.

Below is example code where ‘my-event’ is new slug in place of ‘school-events’.


if ( ! function_exists('custom_events_slug')) {
    function custom_events_slug() {

        $labels = 'my-event';
        return $labels;

    }
    add_filter( 'swmsc_events_slug', 'custom_events_slug' );
}

After adding this code in the child theme or parent theme function file, flush permalinks to add new slug URLs in the database.

Thank you.

thanks !

Hi,

As per requested through the comments, here’s a new support request.

I was wondering if there was a way to stay on the events page for an event detail?

I’ve got an “Events” page and a “News” page. When I click to see the detail page of an event, the URL redirects to /school-events/.... and the main menu hovers/activates the “News” page.

Is there a way, I can tell the main menu to remain on the Events menu item, and a way that the event detail appears on the Events page instead of the News page ? (Obviously, the News page has been tagged as the Blog page for Wordpress and should remain as is).

Site web : https://ecole.ludothuin.be/

Thanks,

Hello @_Studio68,

It appears this is an issue with the core WordPress code; the code that generates the menu classes adds current_page_parent to your Blog page everywhere except when viewing static page templates.

The below steps will remove the active link on the “News” link. We can’t add an active link on the event parent page because there is no link between event custom post types and the event page.

1. Go to Admin > Appearance > Theme Editor 2. Select “KidsWorld” from the top right dropdown 3. Click on the “framework” folder from the right sidebar 4. Click on the “menus.php” file 5. Go to line #119, which has the “Add Active link custom class” function code 6. Replace this function code with the below code and click on “Update File”


add_filter('nav_menu_css_class', 'kidsworld_add_active_class', 10, 4 );

function kidsworld_add_active_class($classes, $item) {

    if( !is_singular( 'post' ) AND !is_category() AND !is_tag() AND !is_date() ):
        $blog_page_id = intval( get_option( 'page_for_posts' ) );
        if( $blog_page_id != 0 AND $item->object_id == $blog_page_id )
            unset( $classes[ array_search( 'current_page_parent', $classes ) ] );
    endif;

    if( $item->menu_item_parent == 0 &&
        in_array( 'current-menu-item', $classes ) ||
        in_array( 'current-menu-ancestor', $classes ) ||
        in_array( 'current-menu-parent', $classes ) ||
        in_array( 'current_page_parent', $classes ) ||
        in_array( 'current_page_ancestor', $classes ) ) {
        $classes[] = "kidsworld_m_active";
    }

    return $classes;
}

Steps with screenshot: https://paste.pics/F8S7S

Thank you.

Thanks for this,

Is there a way to change the label /school-events/ in the URL so we can set another one (I’m thinking the name of one of the page would be great).

So instead of having website.com/school-events/event-1 ; we would have website.com/my-events/event-1.

Please don’t mix support queries, please post a new comment for a new query.

Hi,

Would it be possible to update the fontawesome version? Seems like kidsworld is not using the latest version.

Or provide a way how to do it ourself?

Thanks,

You can hire a developer or use any free plugin for this custom requirement. All standard and high-selling themes use cookies for the “likes” feature. If you want a database base “likes” feature, it requires users to log in to add likes. Generally, people don’t delete cache and add fake likes.

Hi again,

I was wondering if there was a way to stay on the events page for an event detail?

I’ve got an “Events” page and a “News” page. When I click to see the detail page of an event, the URL redirects to /school-events/.... and the main menu hovers/activates the “News” page.

Is there a way, I can tell the main menu to remain on the Events menu item, and a way that the event detail appears on the Events page instead of the News page ? (Obviously, the News page has been tagged as the Blog page for Wordpress and should remain as is).

Thanks

Hello @_Studio68,

Please post a new comment for a new query. Please add your website URL with a query so I can check events page and menu.

Thank you.

Hello, a new version 6.5.9 of Slider Revolution is available. Thank You

Hello @xsomor,

We will add the latest slider revolution version in the next theme update.

Thank you.

I was unable to install 2 plugins: Revolution Slider (the prompt said that it was not compatible) and WooCommerce.

Thanks,

Hello @Higharte,

Please share your website admin login details from our profile page form ( https://themeforest.net/user/softwebmedia ) to check and fix woocommerce and slider revolution installation issues.

Thank you.

how do I exclude the catergory and any suggestion to speed the website loading page, optimising the seo? Thanks.

Hello @emagicalmoment,

Please give more details, for example, where you want to exclude category / post/page name, etc.

You can refer to online tutorials for website optimization e.g., https://bizixdocs.premiumthemes.in/category/speed-up-your-website/

Thank you.

Hello,

Using Woocommerce, is it possible to add average rate stars for each product on the shop page ?

Thank you

Hello @pierregofu,

This custom requirement requires custom coding with the basic skill of PHP, WordPress, HTML, and CSS. You can hire a developer for this requirement or refer to online tutorials.

Thank you.

Hello! Is there i could change the way the classes page shows the preview for each class? Instead of number of participants for example, i would like to show location. And how can i translate the boxes at the bottom, the ones that are now age and size class? I have managed to translate inside the actual classes but not in the preview shown on the classes page. Thank you!

Thank you! I tried to find the info to change in functions but couldn’t locate where the classes main are located and the boxes i want to change. If there is any extra info you can provide, it would be much appreciated. Thanks again!

Please hire a developer for this custom work because we don’t provide customization services with the theme.

ok. Thank you!

Hello there! This is my purchase code6bc892a1-16fc-4a6d-bfbe-098e3d65f568 – 18 Jun 2021 and these are my questions: 1. In my photo gallery page what can i do to not show the categories on my page? Also, should they take me to the photos in that category if i press them? Cause they don’t and i don’t see the point of them there.

2. I would like to add more page buttons in the main top menu but if i add too many it distorts everything up there. (name too small, icons too large, logo in a different position etc) Is there i way i can make the icons smaller along with the names of the pages?

3. For the events and classes: - how can i change the permalink when i access an events or class it is the name of my site then school-events or school-class and then the class or event. what to change of get rid of that school-events and school-class. - i would like to add more buttons to events like price (like the one ins the classes) but the custom fields don’t seem to do anything when i add something there.

Thank you! Lavinia

Thank you! Solved it! Is there any way i can add a price button for events if i copy the code in the classes pages? would it work? I want the same price button from classes to my events. <?php if ( $kidsworld_class_price != ’’ ) { ?> <?php echo $kidsworld_class_price; ?> <?php echo $kidsworld_class_price_subtext; ?>

This code will not work, you have to also add variable value before calling variable. It is very complex to explain this custom work. Please post new comment for new query.

ok, thank you!

how to customize every page , which plugin is used for customization , not able to update anyhing in website

Hello @skd123,

Pre School Shortcodes, WPBakery, and Metabox plugins are required to customize every page content area and sub-header section.

Thank you.

thank you for the great theme, I have tried so many themes, and yours is the easiest and most versatile of all. one problem I encountered, when I am in the text editing mode under any elements. when I want to insert shortcode, for ex, button, it will not disappear, button option box will turn white. is this a known bug? (I have disabled Gutenberg, and using classical editor only)

Hello @bcoolin,

Please update theme and pre school shortcodes plugin with latest version. If this update doesn’t help to fix the issue, please send your website admin login details from our profile page form ( https://themeforest.net/user/softwebmedia ) so I can check and fix the issue.

Thank you.

Hi. I have problems with my testimonial section. I have created the testimonial posts. however it doesn’t show up. do you know what might be the problem? I can give you my login if needed.

Hello @bcoolin,

Please send your website admin login details from our profile page form ( https://themeforest.net/user/softwebmedia ) so I can check testimonials issue and fix it.

Thank you.

Hi,

Please update WPBakery Page Builder plugin with latest version.

Thank you very much

Best Regards Milan Somora

Hello Milan ,

We will update the theme with the latest versions of bundle plugins within a week.

Thank you.

I have received an email that the theme has an update and should check my profile here in themeforest. How can i install the update? I only see the files i had initially to download. Thanks!

Hello @munteanulavinia,

Please refer to this tutorial to update themeforest themes and bundle plugins: https://bizixdocs.premiumthemes.in/category/updating-the-theme/

Thank you.

Thank you very much!

Hello, I have the latest version 2.6.5 installed on my sites but there seems to be some jQuery errors which is causing Revolution Slider to stop working on the back end, is this something you are going to fix? Please see error log below. 2021-06-09 16:36:17 jQuery.fn.live() is deprecated Plugin: Pre School Shortcodes http://www.mysite.sch.uk/wp-content/plugins/pre-school-shortcodes/shortcodes/tinymce/js/popup.js http://www.mysite.sch.uk/wp-admin/admin.php?page=revslider 2021-06-09 16:36:17 jQuery.fn.live() is deprecated Plugin: Pre School Shortcodes http://www.mysite.sch.uk/wp-content/plugins/pre-school-shortcodes/shortcodes/tinymce/js/popup.js http://www.mysite.sch.uk/wp-admin/admin.php?page=revslider 2021-06-09 16:36:17 jQuery.fn.live() is deprecated Plugin: Pre School Shortcodes

Thank you for the reply, I have Pre School version 2.32 plugin enabled and have revolution slider version 6.5.4 installed but I just get a blank screen when trying to make changes to revolution slider, jQuery Migrate plugin is suggesting the issues I mentioned in my previous message. Please see screen recording below. Thanks https://share.getcloudapp.com/yAurB4QL

Hello @BoltonSICT,

We fixed this issue and uploaded the latest version KidsWorld 2.6.6 and Pre School Shortcodes 2.33. Please update the theme and plugin to fix slider revolution issues.

Thank you.

Hello, Thank you very much for the supper fast update! This has now resolved the issue with Revolution Slider! :-)

Hello,

I update the theme Kidsworld and all my plugins for my website www.educa-langues-enfants.com. And I have still different problems :

1/ problems with woocommerce :

A/Message error log : add_to_cart_fragments is deprecated since version 3.0.0! Use woocommerce_add_to_cart_fragments instead. How can I fix this on the theme ?

B/ when my customer just can click one time on the product on the general page products and if he came back the click on cart or image product do do work anymore

2/ after the update seems work well for the icons stars on my review, but suddently seems a problem font, seems a font is not here anymore on the theme. Coud you please telling me how to fix the problem font. Which is the font needing for the star review. As Cusrev review telling me it is from the theme this problem, we make the test to desactivate all other plugins.

Thank you very much for your help. Best regards Laurence

Hello Laurence,

I replied to your email, please check.

Thank you.

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