236 comments found.
I want change font title in the Turkish version I have three language in my website
Apologies, the language-based font family option is not available, We will try to cover this in our upcoming updates.
Thanks
HI, Is there any way I can get the latest version of Advanced Custom Fields PRO Thanks,
We will release a new update of StartNext within few days and ACF Pro latest version will be included with the theme bundle.
Regards
Hi,
Is there any way we get it before? I mean only the plugin.
Thanks,
It will be available with the theme update only!
Regards
Any Update Please!
Any Update Please!
Thanks! We will try to update you as early as possible and expecting 3rd or 4th week of January.
Regards
I am waiting for it.
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. :/
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
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
Thanks! Replied to your ticket.
Best
Working fine now. Thanks
I want to make the site blue and green
Thanks for the message! Yes, it’s possible.
Best
Hello, I am interested in buying this. Does it support “video background” feature?
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??
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
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
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
)
)
);
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
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
We have found an error in your update, you can simply correct the error and update the theme. You send me to technical support, where I have to pay for it: $37.63 We assume that you must thank us for testing the update of the site theme ..))
Thanks! Please make sure your active theme & toolkit plugin version is the same it might help you to resolve this.
Regards
Plugins are now installed: 1.One Click Demo Import-3.0.2 2.StartNext Toolkit-3.0.0 3.WPBakery Page Builder-6.7.0 4.Advanced Custom Fields: Font Awesome-3.1.2 5.Advanced Custom Fields PRO-5.8.7 (Update is required to version 5.10.2, but this requires payment – $49)
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!
Great! Thank you.
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
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…
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.
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
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 for the message! The colours are dynamic so you can change it from the dashboard.
Regards
Thanks for the message! The color can be managed from the Theme Options->Styling Options from the dashboard. Please check the link doc link below-
https://docs.envytheme.com/docs/startnext-theme-documentation/theme-options/Regards
Thanks for reply but how could I change the color of moving elements, like triangles, balls, buttons etc. could you do it behalf of us please. you guys are expert. if you say yet then we will buy it.
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