Home User profile
tagDiv Member
This user did not write anything. So we are just showing here some random text to make the profile page look nice :)
Atelier Helsinki
tagDiv Member

Hi,

I was actually referring to your own admin panel

http://www.screencast.com/t/XYJT2Z3fLHx8

Shouldn’t that be labeled with my child theme name?

Atelier Helsinki
tagDiv Member

Hi,

We have created the child theme as per your instructions including the functions file which we just copied over from the download folder.

Things seem to be working fine but the backend admin panel is still displaying Newspaper 7.8.1 even though the child theme is selected.

Is this normal?

Atelier Helsinki
tagDiv Member

Hi Simion,

We’ve checked that and folder and stylesheet have same names. So i can’t be that.

The url is here

Atelier Helsinki
tagDiv Member

Hi folks

We had the same issue and we didn’t change anything in the CSS or hack the settings.

Just don’t forget to update your child theme with the new functions code

add_action( 'wp_enqueue_scripts', 'theme_enqueue_styles', 1001);
function theme_enqueue_styles() {
wp_enqueue_style('td-theme', get_template_directory_uri() . '/style.css', '', TD_THEME_VERSION, 'all' );
wp_enqueue_style('td-theme-child', get_stylesheet_directory_uri() . '/style.css', array('td-theme'), TD_THEME_VERSION . 'c', 'all' );

}

We were scratching our heads for ages until we noticed they were different from our original child theme setup.

Hope that helps people,
Hash

Atelier Helsinki
tagDiv Member

Ok so the best way is to use the new Mobile Editor and add the iframe through the text editor.

that seems to have worked for now. I like the new Mobile Theme so wanted to make sure a little hack could still work.

thanks
Hash

Atelier Helsinki
tagDiv Member

Hi Catalin,

Thanks for the reply. I did exactly what you said and then switched on my original plugins one by one. It seems to be that there was a conflict but it’s been rectified by using this method of reactivating one by one.

I do have the mobile theme switched on now and the only problem now, is that an iframe I have on one of the pages does not load. Loads fine on ipad, but on any mobile phone it simply fails to display. The link is here. Can you tell me why phones have an issue with iframes and tablets don’t?

Atelier Helsinki
tagDiv Member

Hi Alin,

Any update?

Cheers

Atelier Helsinki
tagDiv Member

Hi Alin,

Just sent an email with everything you need.

Thanks

Atelier Helsinki
tagDiv Member

Hi,

Any news on this one? I need to get the site up in a state that it was originally. The new templates don’t help and VC doesn’t seem to work when on default settings.

Thanks

Atelier Helsinki
tagDiv Member

Hi Bogdan,

Ok now I have done a fresh install. New plugins and made all my edits to the theme settings. The CSS is loading properly but VC is still having issues.

I have default template set for home and just added new blocks to the page setup. The problem is that the blocks in rows are displating properly. None of the columns are redering properly and just spreads content across full width of row.

Have tried multiple combinations using different template selections but the rows still stretch content. Can’t figure this out. Prior to this I jsut created my page through homepage blank and everything just worked.

Maybe I’m just not understanding the new templates…can you shed any light?

Thanks

Atelier Helsinki
tagDiv Member

Ok…I’ve done exactly the process I’m supposed to from 4.x to 6.0…and have also auto updated the site now to 6.6.

But the site is still having serious issues. The css is not loading properly I think and the Visual Composer doesn’t load any of your templates.

I really need this fixed up so I can present to the client soon.

Let me know what you need and can supply access to the site so you can see what I mean.

Just to add…this is now a clean install and was prepared to rebuild the site using any new updates the import script had carried out. So can’t understand why it won’t even display your demo content properly.

Thanks and look forward to a resolve within the next couple of days.

Thanks

Atelier Helsinki
tagDiv Member

have had to install my backup of the site as the update wasn’t working.

The backup contains v4.6.3 – This is now working fine but would like to upgrade to latest version 6 and then update WP.

Thanks and look forwward to a resolve soon.
Hash

Atelier Helsinki
tagDiv Member

Hi Lucian,

Thanks for your help.

Details sent.

Cheers
Hash

Atelier Helsinki
tagDiv Member

I actually have a copy of the visual composer for myself for other projects. Can I use my updated copy or will that knock out your customisations?

Just trying to think how we can resolve this quickly as she can’t update or add posts right now using VC

Thanks

Atelier Helsinki
tagDiv Member

Hi

Same result with all plugins off and refresh of cache.

Thanks

Atelier Helsinki
tagDiv Member

Atelier Helsinki
tagDiv Member

Hi Alin

This is what she see’s when trying to add text in the text block editor, in the backend editor. Not sure if she has issues with Classic Mode but will check.

Thanks

Atelier Helsinki
tagDiv Member

Here’s a link to what she see’s. The whole text block editor is blank.

View post on imgur.com

Atelier Helsinki
tagDiv Member

Yes well that’s exactly what I did…exported theme settings, upgraded theme, updated the VC plugin and imported theme settings back in…all VC templates are gone.

Is there something I’m missing? It’s irritating that all this work has to be done again for each page, each and every time VC plugin is updated.

Cheers

Atelier Helsinki
tagDiv Member

Hi Marius,

I thought I had to add something to the module template like I did for td_module_blog for style one but if it’s just CSS…that’s fine. All solved thanks.

Cheers
Hash

Atelier Helsinki
tagDiv Member

Hi Marius,
the link is below.
Demo site

Thanks

Atelier Helsinki
tagDiv Member

That means all the templates I have created need to be recreated right? Would be a pain to have to do that each time this theme got updates…

Atelier Helsinki
tagDiv Member

Hi Marius,

I’m using WPML as my multilingual plugin of choice. Be great to find a solution using this as it’s better supported.

Look forward to hearing back,
Thanks

Atelier Helsinki
tagDiv Member

Hi Marius,

Yeh I tried that but that’s global across all languages. I want it to stay as ‘Continue’ for English but change it to Finnish if the user selects Finnish.

Sorry I should’ve been more clear…it’s a multilingual site so I can’t make global changes.

Any other options?

Atelier Helsinki
tagDiv Member

Hi,

That’s exactly what I tried first…I now have:

function header_image_switcher() {
 
switch(ICL_LANGUAGE_CODE){
 
	case 'en':
	$link_to_image = 'http://demo.demofinland.org/images/top-header-en.png';
	break;
	 
	case 'fi':
	$link_to_image = 'http://demo.demofinland.org/images/top-header-fi.png';
	break;
	 
	case 'sv':
	$link_to_image = 'http://demo.demofinland.org/images/top-header-sv.png';
	break;
	 
	return $link_to_image;
	}
}

The Header style 1 template has:

<div class="span8 td-header-style-1">
                <?php
                // show the header ad spot
                /* echo td_global_blocks::get_instance('td_ad_box')->render(array('spot_id' => 'header')); */
                echo "<img src=" . header_image_switcher() . " />";
                ?>
            </div>
        </div>

And all I get in the inspector is:

<div class="span8 td-header-style-1">

    <img src="/"></img>

</div>

I know the code is fine and the language plugin is working great…could it be something else?

Cheers

Viewing 25 posts - 1 through 25 (of 38 total)