Home Forums Space themes support forum Tabs dont work in html block

Tabs dont work in html block

Viewing 15 posts - 1 through 15 (of 15 total)
  • Author
    Posts
  • #463814

    husochhemma.se
    Participant

    Has 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.

    #464157

    Luke Nielsen
    Keymaster

    Hello,

    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

    #464192

    husochhemma.se
    Participant

    yes of course

    #464510

    Luke Nielsen
    Keymaster

    Hello,

    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

    #464729

    husochhemma.se
    Participant

    yes i give you permission to do that.

    #464782

    Luke Nielsen
    Keymaster

    Hello,

    Could you please send the FTP password as well? Because the “Pass” from the private area is not work.

    https://take.ms/JScXZ

    Kind Regards

    #465107

    husochhemma.se
    Participant

    try again, forgot to save the settings.

    #465108

    husochhemma.se
    Participant

    update settings

    #465345

    Luke Nielsen
    Keymaster

    Hello,

    On my side the FTP access is still not working, could you please check how it works on your side?

    https://take.ms/h7rit

    Kind Regards

    #465358

    husochhemma.se
    Participant

    use this insteed.
    Its the ip for server

    #465370

    Luke Nielsen
    Keymaster

    Hello,

    Shows the “Cannot connect to the server” error: https://take.ms/EVqV6y

    Maybe something is wrong with the access?

    Kind Regards

    #465373

    husochhemma.se
    Participant

    You have wrong usernamne.
    See my photo

    Attachments:
    You must be logged in to view attached files.
    #465400

    Luke Nielsen
    Keymaster

    Hello,

    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

    #465426

    husochhemma.se
    Participant

    Its working now, thanks

    #465512

    Luke Nielsen
    Keymaster

    Hello,

    Great! In case you need any additional help, I’d be more than happy to assist you.

    Wish you all the best.

    Kind Regards

Viewing 15 posts - 1 through 15 (of 15 total)

The topic ‘Tabs dont work in html block’ is closed to new replies.