Discussion on StartNext - IT, AI, Marketing Startup & Technology Services WordPress Theme

Discussion on StartNext - IT, AI, Marketing Startup & Technology Services WordPress Theme

Cart 680 sales
Well Documented

EnvyTheme supports this item

Supported

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

234 comments found.

I followed the steps in the video.. only difference is when when i go to install demo data it gives me 2 options. Elementor demo data and bakery demo data.. tried both.. after installation website looks broken and nothing like the one i bought. :/

onixm

onixm Author Team

Good day! Please import only one from these not both to avoid conflict. Try to install it again in a fresh environment it might help you to resolve this.

If you have any other queries please submit a ticket on the EnvyTheme Support System so our support team will process your ticket.

EnvyTheme Support System: https://support.envytheme.com/

Best Regards

After the newest update the footer is messed up in the CSS check my website https://www.phpcable.com/ on PC also I checked someone’s website same thing https://scriptsbundle.com/ This is coming from widgets

onixm

onixm Author Team

Thanks! Please make sure you also, updated the toolkit plugin it might help you to resolve this.

Here is the doc link https://docs.envytheme.com/docs/startnext-theme-documentation/theme-updates/#not-displaying-new-features

If you have any other queries please submit a ticket on the EnvyTheme Support System so our support team will process your ticket.

EnvyTheme Support System: https://support.envytheme.com/

Best Regards

Hi, I purchased the theme and tried added demo content and it was successful but still shows broken…. I have raised ticket. Kindly resolve and reply. Ticket #UYMPHL46

onixm

onixm Author Team

Thanks! Replied to your ticket.

Best

Working fine now. Thanks

I want to make the site blue and green

onixm

onixm Author Team

Thanks for the message! Yes, it’s possible.

Best

Hello, I am interested in buying this. Does it support “video background” feature?

onixm

onixm Author Team

Thanks for the message! The video background option isn’t available at this moment but we will try to add this in our upcoming updates.

Regards

Hello,

I have installed the newest Startnext Theme v5.4 and then update Wordpress to v6.7.1.

However, WPBakery Page Builder is still the older v7.7.2. Is this the correct version which comes with Startnext Theme v5.4?

Yours faithfully.

after update to 4.7. Front-end editor enables option not showing in Role manager. how to fix this??

onixm

onixm Author Team

Thanks! Please make sure you also, updated the toolkit plugin it might help you to resolve this.

Here is the doc link https://docs.envytheme.com/docs/startnext-theme-documentation/theme-updates/#not-displaying-new-features

If you have any other queries please submit a ticket on the EnvyTheme Support System so our support team will process your ticket.

EnvyTheme Support System: https://support.envytheme.com/

Best Regards

I deactated and actived the theme back then am getting error of purchase code is invalid. fix this

okay its has worked again

Hello, After update theme I lost the theme options from admin panel. May you help me?

Please submit a support ticket here https://support.envytheme.com/. Thanks!

There is no option to set Category for Features. I go through theme document. check this link there is no option to set category in the screenshot given into theme documentation. and that is frustrating for me. I am not able to add new feature.

the same issue with other CPTs Services, Features, Projects

I have already summited a ticket.

I have find a solution for this.

Modified plugin startnext-toolkit (startnext-toolkit/startnext-toolkit.php)

'taxonomies'  => array( 'category' ),

added above line to category support to CPTs inside function startnext_toolkit_custom_post(); modified function code as follows .

//Custom Post function startnext_toolkit_custom_post() { // Services permalink global $startnext_opt; if( isset( $startnext_opt[‘project_permalink’] ) ): $project_permalink = $startnext_opt[‘project_permalink’]; else: $project_permalink = ‘single-project’; endif;

// Project Custom Post
register_post_type('project',
    array(
        'labels' => array(
            'name' => esc_html__('Projects', 'startnext-toolkit'),
            'singular_name' => esc_html__('Project', 'startnext-toolkit'),
        ),
        'menu_icon' => 'dashicons-images-alt',
        'supports' => array('title', 'thumbnail', 'editor', 'excerpt'),
        'taxonomies'  => array( 'category' ),
        'public' => true,
        'rewrite' => array( 'slug' => $project_permalink ),
    )
);
// Feature permalink
global $startnext_opt;
if( isset( $startnext_opt['feature_permalink'] ) ):
    $feature_permalink = $startnext_opt['feature_permalink'];
else:
    $feature_permalink = 'single-feature';
endif;
// Features Custom Post
register_post_type('feature',
    array(
        'labels' => array(
            'name' => esc_html__('Features', 'startnext-toolkit'),
            'singular_name' => esc_html__('Feature', 'startnext-toolkit'),
        ),
        'menu_icon' => 'dashicons-feedback',
        'supports' => array('title', 'editor', 'excerpt', 'thumbnail','page-attributes'),
        'taxonomies'  => array( 'category' ),
        'public' => true,
        'show_in_rest' => true,
        'has_archive' => true,
        'rewrite' => array( 'slug' => $feature_permalink),
    )
);
// Services permalink
global $startnext_opt;
if( isset( $startnext_opt['service_permalink'] ) ):
    $service_permalink = $startnext_opt['service_permalink'];
else:
    $service_permalink = 'single-service';
endif;
// Services Custom Post
register_post_type('services',
    array(
        'labels' => array(
            'name' => esc_html__('Services', 'startnext-toolkit'),
            'singular_name' => esc_html__('Service', 'startnext-toolkit'),
        ),
        'menu_icon' => 'dashicons-groups',
        'supports' => array('title', 'editor', 'excerpt', 'thumbnail','page-attributes'),
        'taxonomies'=>'services_cat',
        'public' => true,
        'show_in_rest' => true,
        'has_archive' => true,
        'rewrite' => array( 'slug' => $service_permalink ),
    )
);

}

SOLVED startnext-toolkit/startnext-toolkit.php

register_taxonomy(
       'feature_cat',
       'feature',
           array(
           'hierarchical'      => true,
           'label'             => esc_html__('Feature Category', 'startnext-toolkit' ),
           'query_var'         => true,
      'show_in_rest' => true,  // added this line
           'show_admin_column' => true,
               'rewrite'         => array(
               'slug'          => 'feature',
               'with_front'    => true
               )
           )
   );
register_taxonomy(
    'service_cat',
    'services',
        array(
        'hierarchical'      => true,
        'label'             => esc_html__('Service Category', 'startnext-toolkit' ),
        'query_var'         => true,
        'show_in_rest' => true, // added this line
        'show_admin_column' => true,
            'rewrite'         => array(
            'slug'          => 'service',
            'with_front'    => true
            )
        )
);
onixm

onixm Author Team

Thank you!

I think Features taxonomy is broken. Not able to change the category or add category to Features, Services and other CPT’s

Colleagues, after the update, feut broke, widgets are not configured, please eliminate the error: https://clip2net.com/s/4dWMsHF

onixm

onixm Author Team

Thanks! Please make sure you are using the latest version of the theme to get all things up to date.

Here is the doc link to get the update process https://docs.envytheme.com/docs/startnext-theme-documentation/theme-updates/#update-through-wordpress-admin-panel

Regards

Thanks! The problem is solved! If you load through the Wordpress, everything is good if you download via FTP/cPanel, then an error appears. Best Regards!

onixm

onixm Author Team

Great! Thank you.

Kind regards, your documentation page is without the respective files as it tells me that nothing was found. https://docs.envytheme.com/docs/startnext-v3-theme-documentation/
onixm

onixm Author Team

Thanks for the message! Please submit a ticket on the EnvyTheme Support System so our support team will process your ticket.

EnvyTheme Support System: https://support.envytheme.com/

Best Regards

Hello, when i try to install Elementor Demo i got this error “cURL error 60: SSL certificate problem: certificate has expired” i bought the theme form another account

onixm

onixm Author Team

Thanks for the message! Please submit a ticket on the EnvyTheme Support System so our support team will process your ticket.

EnvyTheme Support System: https://support.envytheme.com/

Best Regards

When will you update the theme since there are plugins out of date…

onixm

onixm Author Team

Thanks for the message! We will try to update mid of August.

Regards

September is here and theme has not been updated. Plugins need update.

onixm

onixm Author Team

Apologies! We will try to update asap.

Regards

Just made a purchase but plugins can’t install Advanced Custom Fields Pro, StartNext Toolkit and WPBakery Page Builder

onixm

onixm Author Team

Thanks for the message! Please make sure the parent theme is active when installing the plugins and importing the demo data.

Please submit a ticket on the EnvyTheme Support System if you have any other queries so our support team will process your ticket.

EnvyTheme Support System: https://support.envytheme.com/

Best Regards

Hi team I have to try to achieve for days now but felling please help https://prnt.sc/128poti

I’d like to buy this theme. my company color theme is blue, red & green. can you make AI one with these colors?

Thanks! The moving elements are images also, these are dynamic so you can change these from the dashboard by your suitable elements.

Regards

one last question. If I pay for Wordpress and after someday we want to use react/vue one, so would I get it in this price? I am assuring you that we will use any single theme. love the react one but I don’t have developer now, so want to go with Wordpress not later defiantly will switch but I will pay you Wordpress one cost. if specially consider it please.

Apologies! You need to purchase separately every items.

Regards

I want to register the StartNext theme but receiving an error – ‘Purchase Key Invalid’. Please help get this error solved.

Thanks! Please submit your ticket by visiting the https://support.EnvyTheme.com.

Regards

We have done with the ticket submission process. But still have not received a solution to error – ‘Purchase Key Invalid’.

Apologies! Please check we already replied your ticket.

Hi, I bought a theme and uploaded on my website, can anyone let me know how can i added the theme content which i can see in demo, or i have to add content by myself?

Thanks for the message! Please follow the documentation to get the demo import process https://docs.envytheme.com/docs/startnext-theme-documentation/installation/

Please submit a ticket on the EnvyTheme Support System if you have any other queries so our support team will process your ticket.

EnvyTheme Support System: https://support.envytheme.com/

Best Regards

we purchased startnext-startups theme that do not have the don’t have one-click-demo-import and How to import demo data

please release updated plugin and compatible theme files

Thanks

Thanks! We will try to release as early as possible.

Regards

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