Home › Forums › Space themes support forum › Tabs dont work in html block
Tabs dont work in html block
- This topic has 14 replies, 2 voices, and was last updated 1 year, 6 months ago by Luke Nielsen.
-
AuthorPosts
-
May 2, 2023 at 3:54 pm #463814
husochhemma.seParticipantHas created a html block for category and added tabs for questions answers, but it does not want to click the answers up in tabs.
It works inside the html block, but not on the category page.
Have inserted the links so you can check.May 3, 2023 at 3:41 pm #464157
Luke NielsenKeymasterHello,
In this case, is there any chance that you could give me access to the dashboard area so I can have a look at the settings on your website, please?
Kind Regards
May 3, 2023 at 5:26 pm #464192
husochhemma.seParticipantyes of course
May 4, 2023 at 5:05 pm #464510
Luke NielsenKeymasterHello,
I would like to request temporary FTP access to the live site to take a better look at the issue there. Also, please confirm the permission for plugins deactivation. As soon as we complete the testing we will enable all back.
I await your response.
Kind Regards
May 5, 2023 at 12:25 pm #464729
husochhemma.seParticipantyes i give you permission to do that.
May 5, 2023 at 3:46 pm #464782
Luke NielsenKeymasterHello,
Could you please send the FTP password as well? Because the “Pass” from the private area is not work.
Kind Regards
May 7, 2023 at 2:49 pm #465107
husochhemma.seParticipanttry again, forgot to save the settings.
May 7, 2023 at 2:49 pm #465108
husochhemma.seParticipantupdate settings
May 8, 2023 at 4:24 pm #465345
Luke NielsenKeymasterHello,
On my side the FTP access is still not working, could you please check how it works on your side?
Kind Regards
May 8, 2023 at 4:44 pm #465358
husochhemma.seParticipantuse this insteed.
Its the ip for serverMay 8, 2023 at 4:52 pm #465370
Luke NielsenKeymasterHello,
Shows the “Cannot connect to the server” error: https://take.ms/EVqV6y
Maybe something is wrong with the access?
Kind Regards
May 8, 2023 at 4:57 pm #465373
husochhemma.seParticipantYou have wrong usernamne.
See my photoAttachments:
You must be logged in to view attached files.May 8, 2023 at 5:58 pm #465400
Luke NielsenKeymasterHello,
Please add the below code to the functions.php file in your child theme.
if ( ! function_exists( 'xts_register_scripts' ) ) { /** * Register scripts. * * @since 1.0.0 */ function xts_register_scripts() { $config = xts_get_js_scripts(); $minified = xts_get_opt( 'minified_js' ) ? '.min' : ''; if ( xts_is_combined_needed( 'scripts_combined_js' ) ) { return; } foreach ( $config as $key => $scripts ) { foreach ( $scripts as $script ) { $src = XTS_THEME_URL . $script['file'] . $minified . '.js'; if ( 'scripts' !== $script['name'] ) { wp_register_script( 'xts-' . $script['name'], $src, array( 'xts-scripts' ), XTS_VERSION, $script['in_footer'] ); } else { wp_register_script( 'xts-' . $script['name'], $src, array(), XTS_VERSION, $script['in_footer'] ); } } } } add_action( 'wp_enqueue_scripts', 'xts_register_scripts', 20 ); }
Then clear the cache and check the issue again.
Kind Regards
May 8, 2023 at 9:48 pm #465426
husochhemma.seParticipantIts working now, thanks
May 9, 2023 at 10:02 am #465512
Luke NielsenKeymasterHello,
Great! In case you need any additional help, I’d be more than happy to assist you.
Wish you all the best.
Kind Regards
-
AuthorPosts
The topic ‘Tabs dont work in html block’ is closed to new replies.
- You must be logged in to create new topics. Login / Register