Really??? That’s your answer to resolve my problem?
I installed from scratch already one time, and lost evrything i made from the beginning.
I can not do this everytime.
I don’t touch the code, because I don’t know very much, but it seems there are a class name “vc.composer” “xs” something” 100% in css plugin that broke everything. While i never touched these css there. Because i’m not a expert.
The problem come since i install the version 7, i think it come from there or the plugin, but there have a problem.
For information i have no modified or do something on the page of php, just make some css, that i removed now.
I just have update newspaper to version 7. I had install the plugin tagdiv mobile theme and activate it, but not being what I expected I deactivate it.
Hi,
I’m sorry, but since i update, everything goes wrong.
I do everything you say, i use se second choice for the columns, disable all the plugins except visual composer, clear the cache, remove all my custom css, and i’m not using CDN files.
And nothing change.
I try everything on the back office, just put block with visual composer, and try template too.
Anything are brocken. I don’t understand, I need to make this site for a client for the end of the week, last dead-line, and now i don’t know what to do.
You can see it online here.
http://www.farawaytrip.com
Please help.
Thanks in advanced
Ok, i found all the answer by updating the theme.
thanks
Yes it’s working now because i wipe my server and reinstall wordpress theme and newpaper.
but now I have another problem. before I had a visual overview of different predefined template when I created a page. Now I have just their names.
Also when I go to dial in visual product license, it says:
In order recevoir all benefits of Visual Composer you need to activate your copy of plugin. By activating Visual Composer license you will unlock premium features – Direct plugin updates and access to official support.
Activate visual dial.
How activated it?
I feel that I can change the themes by default in the console Newpaper in “Theme Panel”, but not directly on a page for a specific template.
I am able to put a specific template on my home to differentiate the inside page.
oh you can check it on farawaytrip.com
thanks
Ok 2 days to see my mistake
i did wrong between
wp_register_styles, wp_register_script, wp_enqueue_style and wp_enqueue_script
function wp_styles_reservation() {
wp_register_style('style01', get_stylesheet_directory_uri() . '/assets/css/style01.css');
wp_register_script('counter', get_stylesheet_directory_uri() . '/assets/js/counter.js');
wp_enqueue_style( 'style01' );
wp_enqueue_script( 'counter' );
}
add_action('wp_enqueue_scripts','wp_styles_reservation');
Now it works fine 🙂
ok, i see on internet that my code is not good,
Right?
Now my code is :
function wp_styles_reservation() {
wp_register_script('jslider', get_stylesheet_directory_uri() . '/assets/css/jslider.css');
wp_register_script('style01', get_stylesheet_directory_uri() . '/assets/css/style01.css');
wp_register_script('counter', get_stylesheet_directory_uri() . '/assets/js/counter.js');
wp_enqueue_style( 'jslider' );
wp_enqueue_style( 'style01' );
wp_enqueue_style( 'counter' );
}
add_action('wp_enqueue_scripts','wp_styles_reservation');
But it still doesn’t work.
My Stylesheet not apply on the css i use on the Page i create from “WordPress Page”.
Any idea?
Thanks in advance
I try this :
function wp_styles_reservation() {
wp_register_script('jslider', get_template_directory_uri() . '/assets/css/jslider.css');
wp_register_script('style01', get_template_directory_uri() . '/assets/css/style01.css');
wp_register_script('counter', get_template_directory_uri() . '/assets/js/counter.js');
wp_enqueue_style( 'jslider' );
wp_enqueue_style( 'style01' );
wp_enqueue_style( 'counter' );
}
add_action('wp_enqueue_scripts','wp_styles_reservation');
But it’s not working, i think my directory is wrong, but i don’t know how to resolve that.
Thanks in advance for your help
Thanks this help very much. Very usefull. Thanks u so much
Thank you so much
Ok, i thinks this can not resolved my problem, i’m sorry my english is not very good, i try to explain better.
I create a new page on child theme, this page will be my home page, in this one, a put header.php and footer.php with get_header(); …. it works!!
I chose a specific header on theme panel (header 1, 2 … 12) it works too!!
but it appears, there a ads on it 728×90, just under the header menu.
I know i can disabled it on the theme panel, but if i do that, it will disables but in all pages.
And i would like to remove this ad but just on the page i built, because it’s my home page, i want to keep the ads on the other pages.
I hope you understand
Thanks
Just a last question. It is possible to remove the ads 728×90, only on the News page home? But keep it on the other pages?
Thanks in advance
The problem is when i activate the child theme. And I followed your tutorial.
But it seems that the problem is resolved, I just disable the sidebar widgets, and when I have reactivated them, everything was resolved.
Thanks