Barboocha
Forum Replies Created
Viewing 2 replies - 1 through 2 (of 2 total)
-
Forum: Plugins
In reply to: [Collapse-O-Matic] Not able to get plugin workSooo! I finally find out, where the problem was. I didn’t have these footer and header tags in my code. That’s why plugin can not put there its javascript. 🙂
<?php wp_head(); ?> <?php wp_footer(); ?>Thank you for your help.
Forum: Plugins
In reply to: [Collapse-O-Matic] Not able to get plugin workThank you for your reply.
The plugin is active in my wordpress administration. But yes, I looks like shortcode is not recognizing it. This is default code of my page. Other things are generated by wp.
<?php /* * Template Name: Nabídka */ ?> <!DOCTYPE html> <html> <head> <title>Řekni si web!</title> <meta charset="UTF-8"> <meta name="viewport" content="width=device-width, initial-scale=1.0"> <link rel="stylesheet" type="text/css" href="<?php echo get_template_directory_uri(); ?>/css/style.css"/> <link rel="icon" type="image/gif" href="<?php echo get_template_directory_uri(); ?>/favicon.ico" /> </head> <body id="active"> <div id="wrapper"> <nav> <div id="menu"> <?php wp_nav_menu( array( 'container' => '', 'items_wrap' => '%3$s' ) ); ?> </div> </nav> <div id="nabidka_header"></div> <div> <div id="nabidka_content"> <?php while ( have_posts() ) : the_post(); ?> <?php the_content(); ?> <?php endwhile; // end of the loop. ?> </div> <div id="odkazy_subpage_nabidka"> <table> <tr> <td id="minutky_odkaz"><a href="http://www.reknisiweb.cz/minutky"></a></td> <td id="objednat_odkaz"><a href="http://www.reknisiweb.cz/objednat"></a></td> </tr> </table> </div> </div> <div id="footer_nabidka"> <div>Copyright © 2014 Reknisiweb.cz </div> </div> </div> </body> </html>It is not necessary to post cascade too, u can display my cascade stylesheet straight on my page. 🙂
Thank you 🙂
Viewing 2 replies - 1 through 2 (of 2 total)